Skip to content

Commit

Permalink
Version 0.8.3: added bsty coin
Browse files Browse the repository at this point in the history
  • Loading branch information
MrNaif2018 committed Nov 9, 2019
1 parent c22e9ec commit f32acdc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bitcart/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .coins import BTC, LTC, GZRO
from .coins import BTC, LTC, GZRO, BSTY

__all__ = ["BTC", "LTC", "GZRO"]
__all__ = ["BTC", "LTC", "GZRO", "BSTY"]
3 changes: 2 additions & 1 deletion bitcart/coins/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from .btc import BTC
from .ltc import LTC
from .gzro import GZRO
from .bsty import BSTY

__all__ = ["BTC", "LTC", "GZRO"]
__all__ = ["BTC", "LTC", "GZRO", "BSTY"]
7 changes: 7 additions & 0 deletions bitcart/coins/bsty.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from .btc import BTC


class BSTY(BTC):
coin_name = "BSTY"
friendly_name = "GlobalBoost"
RPC_URL = "http://localhost:5003"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def main() -> None:
setup(
name="bitcart" if not ASYNC else "bitcart-async",
packages=find_packages(),
version="0.8.2",
version="0.8.3",
license="MIT",
description="Bitcart coins support library",
long_description=open("README.md").read(),
Expand Down

0 comments on commit f32acdc

Please sign in to comment.