Skip to content

Releases: ebellocchia/py_crypto_hd_wallet

Version 0.11.0

26 Apr 20:31
Compare
Choose a tag to compare
  • Add Avalanche support (HdWalletCoins.AVAX_C_CHAIN, HdWalletCoins.AVAX_X_CHAIN, HdWalletCoins.AVAX_P_CHAIN)

Version 0.10.0

25 Apr 19:25
Compare
Choose a tag to compare
  • Add python typing to all classes
  • Make code PEP8 compliant
  • Fix documentation

Version 0.9.0

10 Mar 18:57
Compare
Choose a tag to compare
  • Add support for Binance Smart Chain (HdWalletCoins.BINANCE_SMART_CHAIN)
  • Rename HdWalletCoins.BINANCE_COIN to HdWalletCoins.BINANCE_CHAIN

Version 0.8.0

07 Oct 17:36
Compare
Choose a tag to compare
  • Add support for Ethereum Classic and VeChain

Version 0.7.0

09 Aug 11:03
Compare
Choose a tag to compare
  • Add support for Kava, IRIS Network and Binance Coin

Version 0.6.0

07 Aug 14:04
Compare
Choose a tag to compare
  • Add support for Zcash, Cosmos and Band Protocol

Version 0.5.0

06 Aug 13:47
aaaa274
Compare
Choose a tag to compare
  • Add support for Tron

Version 0.4.0

26 Jul 16:18
aaaa274
Compare
Choose a tag to compare
  • Add support for Bitcoin Cash and BitcoinSV
  • Update dependency to bip_utils 1.1.0

Version 0.3.1

17 Apr 13:12
Compare
Choose a tag to compare
  • Update code to support bip_utils library version 1.0.0

Version 0.3.0

11 Apr 19:20
Compare
Choose a tag to compare
  • Add HdWalletKeys and HdWalletAddresses classes for allowing an easier and better management of keys and addresses

    • HdWalletKeys is in charge of generating and storing keys, allowing to get them both as dictionary or string in JSON format
    • HdWalletAddresses 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.