Skip to content

Commit

Permalink
Bump: Python-HDWallet from v2.1.0 to v2.1.1 package.
Browse files Browse the repository at this point in the history
  • Loading branch information
meherett committed Feb 19, 2022
1 parent 206aba9 commit 2a0f710
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/from_xprivate_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

if STRICT:
# Check root xprivate key
assert is_root_xprivate_key(xprivate_key=XPRIVATE_KEY, symbol=BTC), "Invalid Root XPrivate Key."
assert is_root_xprivate_key(xprivate_key=XPRIVATE_KEY, symbol=SYMBOL), "Invalid Root XPrivate Key."

# Initialize Bitcoin mainnet HDWallet
hdwallet: HDWallet = HDWallet(symbol=SYMBOL)
Expand Down
22 changes: 18 additions & 4 deletions hdwallet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,32 @@
#!/usr/bin/env python3

from .hdwallet import (
HDWallet, BIP32HDWallet, BIP44HDWallet, BIP49HDWallet, BIP84HDWallet, BIP141HDWallet
HDWallet,
BIP32HDWallet,
BIP44HDWallet,
BIP49HDWallet,
BIP84HDWallet,
BIP141HDWallet
)

# HDWallet Information's
__version__: str = "v2.1.0"
__version__: str = "v2.1.1"
__license__: str = "ISCL"
__author__: str = "Meheret Tesfaye Batu"
__email__: str = "[email protected]"
__description__: str = "Python-based library for the implementation of a hierarchical deterministic wallet " \
"generator for more than 140+ multiple cryptocurrencies."

__all__: list = [
"__version__", "__license__", "__author__", "__email__", "__description__",
"HDWallet", "BIP32HDWallet", "BIP44HDWallet", "BIP49HDWallet", "BIP84HDWallet", "BIP141HDWallet"
"__version__",
"__license__",
"__author__",
"__email__",
"__description__",
"HDWallet",
"BIP32HDWallet",
"BIP44HDWallet",
"BIP49HDWallet",
"BIP84HDWallet",
"BIP141HDWallet"
]

0 comments on commit 2a0f710

Please sign in to comment.