Releases: talonlab/python-hdwallet
Releases · talonlab/python-hdwallet
hdwallet v2.1.0
New Cryptocurrencies
- Add Tron Mainnet - (TRX) cryptocurrency,
Fix Bugs
- Fix derivation path class value of hardened
'
key removed from default path when initializingBIP32HDWallet
,BIP44HDWallet
,BIP49HDWallet
,BIP84HDWallet
andBIP141HDWallet
offrom_xpublic_key
function.
hdwallet v2.0.1
Improvements
- Add auto semantic selection for
from_xprivate_key
andfrom_xpublic_key
functions. BTC
symbol is now the default values for bothgenerate
andaddresses
commands on CLI.
hdwallet v2.0.0
New
-
Now, you can generate a Hierarchical Deterministic wallet from the Command Line Interface CLI (On the terminal).
$ hdwallet
Usage: hdwallet [OPTIONS] COMMAND [ARGS]...Options:
-v, --version Show HDWallet version and exit.
-h, --help Show this message and exit.Commands:
generate (g) Select Generate for HDWallet.
list (l) Select List for HDWallet information.
Improvements
- Both
from_root_xprivate_key
andfrom_root_xpublic_key
functions are now merged intofrom_xprivate_key
andfrom_xpublic_key
functions. - Now, you can drive both
from_xprivate_key
andfrom_xpublic_key
functions. - Drop both
from_root_xprivate_key
andfrom_root_xpublic_key
functions.
Fix Bugs
- Fix derivation path value of
Derivation
class offrom_index
function set toNone
value.
Dependencies
- Add
Click
v8.0.3 andClick-Aliases
v1.0.1 packages tools for CLI. - Add
Tabulate
v0.8.9 package for Table list.
hdwallet v1.3.2
New Cryptocurrencies
- Zcash
ZECTEST
test network cryptocurrency.
Fix Bugs
- Fix Litecoin mainnet values.
- Fix some documentation errors.
hdwallet v1.3.1
Fix Bugs
- Fix derivation cleaner and added root xpublic key derivation path/indexes cleaner.
hdwallet v1.3.0
New
- Now, You can generate multiple addresses from master xpublic key but it's not working for the hardened derivation index.
- Added
strict
boolean parameter onfrom_root_xprivate_key
andfrom_root_xpublic_key
functions. Default value set toTrue
. - Added master
from_root_xpublic_key
function.
hdwallet v1.2.0
New
- Now, You can generate address from master xpublic and public keys
- Added both
from_xpublic_key
andfrom_public_key
functions.
Improvements
- Added new public key decompressor script.
- Added
compressed
boolean parameter on gettingpublic_key
function, default to True. - Added
compressed
string parameter on gettinguncompressed
function, default to None. - Added
uncompressed
string parameter on gettingcompressed
function, default to None.
hdwallet v1.1.1
Fix Bugs
- Fix default derivation path of
from_root_xprivate_key
function.
hdwallet v1.1.0
New
- Added more than 140+ multiple cryptocurrencies.
- Added Segwit address implementations
- Pay To Public Key Hash (P2PKH)
- Pay To Script Hash (P2SH)
- Pay To Witness Public Key Hash (P2WPKH)
- Pay To Witness Public Key Hash nested in Pay To Script Hash (P2WPKH_In_P2SH)
- Pay To Witness Script Hash (P2WSH)
- Pay To Witness Script Hash nested in Pay To Script Hash (P2WSH_In_P2SH)
- Added new HDWallet classes for BIP's
- BIP32HDWallet
- BIP44HDWallet
- BIP49HDWallet
- BIP84HDWallet
- BIP141HDWallet
- Added derivations python package classes.
- Derivation
- BIP32Derivation
- BIP44Derivation
- BIP49Derivation
- BIP84Derivation
- BIP141Derivation
hdwallet v0.2.0
New Cryptocurrencies
- Added Bitcoin Cash - (BCH) cryptocurrency
- Added Bitcoin Gold - (BTG) cryptocurrency
Improvements
- Mnemonic Unicode data normalizer changed from
NFKC
toNFKD
type.