Releases: hdwallet-io/python-hdwallet
Releases · hdwallet-io/python-hdwallet
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
strictboolean parameter onfrom_root_xprivate_keyandfrom_root_xpublic_keyfunctions. Default value set toTrue. - Added master
from_root_xpublic_keyfunction.
hdwallet v1.2.0
New
- Now, You can generate address from master xpublic and public keys
- Added both
from_xpublic_keyandfrom_public_keyfunctions.
Improvements
- Added new public key decompressor script.
- Added
compressedboolean parameter on gettingpublic_keyfunction, default to True. - Added
compressedstring parameter on gettinguncompressedfunction, default to None. - Added
uncompressedstring parameter on gettingcompressedfunction, default to None.
hdwallet v1.1.1
Fix Bugs
- Fix default derivation path of
from_root_xprivate_keyfunction.
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
NFKCtoNFKDtype.
hdwallet v0.1.1
Improvements
- Downgrading the version of the ECDSA package from v0.16.1 to v0.13.0 for compatibility.
- Removed
PointJacobiand it's replaced byAnytype.
hdwallet v0.1.0
Improvement
- The previous package name is now renamed from
python_hdwallettohdwallet.
New
- Now, You can get entropy hex string and strength from mnemonic words.
- Added passphrase generator on
hdwallet.utils.generate_passphrasefunction.