Releases: ebellocchia/py_crypto_hd_wallet
Releases · ebellocchia/py_crypto_hd_wallet
Version 0.11.0
- Add Avalanche support (
HdWalletCoins.AVAX_C_CHAIN
,HdWalletCoins.AVAX_X_CHAIN
,HdWalletCoins.AVAX_P_CHAIN
)
Version 0.10.0
- Add python typing to all classes
- Make code PEP8 compliant
- Fix documentation
Version 0.9.0
- Add support for Binance Smart Chain (
HdWalletCoins.BINANCE_SMART_CHAIN
) - Rename
HdWalletCoins.BINANCE_COIN
toHdWalletCoins.BINANCE_CHAIN
Version 0.8.0
- Add support for Ethereum Classic and VeChain
Version 0.7.0
- Add support for Kava, IRIS Network and Binance Coin
Version 0.6.0
- Add support for Zcash, Cosmos and Band Protocol
Version 0.5.0
- Add support for Tron
Version 0.4.0
- Add support for Bitcoin Cash and BitcoinSV
- Update dependency to bip_utils 1.1.0
Version 0.3.1
- Update code to support bip_utils library version 1.0.0
Version 0.3.0
-
Add
HdWalletKeys
andHdWalletAddresses
classes for allowing an easier and better management of keys and addressesHdWalletKeys
is in charge of generating and storing keys, allowing to get them both as dictionary or string in JSON formatHdWalletAddresses
is in charge of generating and storing addresses, allowing to get them both as dictionary or string in JSON format
This allows a more "natural" use of keys and addresses, e.g.:
- Keys can be got individually by specifiying the key type
- It's possible to iterate over the addresses like an array and get and individual address by its index. Each address is a
HdWalletKeys
object, so it can be used as any other key.