Skip to content

Releases: hdwallet-io/python-hdwallet

hdwallet v1.3.0

11 Jun 20:07

Choose a tag to compare

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 on from_root_xprivate_key and from_root_xpublic_key functions. Default value set to True.
  • Added master from_root_xpublic_key function.

hdwallet v1.2.0

22 May 19:55

Choose a tag to compare

New

  • Now, You can generate address from master xpublic and public keys
  • Added both from_xpublic_key and from_public_key functions.

Improvements

  • Added new public key decompressor script.
  • Added compressed boolean parameter on getting public_key function, default to True.
  • Added compressed string parameter on getting uncompressed function, default to None.
  • Added uncompressed string parameter on getting compressed function, default to None.

hdwallet v1.1.1

03 Apr 04:33

Choose a tag to compare

Fix Bugs

  • Fix default derivation path of from_root_xprivate_key function.

hdwallet v1.1.0

15 Mar 16:11

Choose a tag to compare

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

09 Dec 18:55

Choose a tag to compare

New Cryptocurrencies

  • Added Bitcoin Cash - (BCH) cryptocurrency
  • Added Bitcoin Gold - (BTG) cryptocurrency

Improvements

  • Mnemonic Unicode data normalizer changed from NFKC to NFKD type.

hdwallet v0.1.1

08 Dec 19:41

Choose a tag to compare

Improvements

  • Downgrading the version of the ECDSA package from v0.16.1 to v0.13.0 for compatibility.
  • Removed PointJacobi and it's replaced by Any type.

hdwallet v0.1.0

08 Dec 11:59

Choose a tag to compare

Improvement

  • The previous package name is now renamed from python_hdwallet to hdwallet.

New

  • Now, You can get entropy hex string and strength from mnemonic words.
  • Added passphrase generator on hdwallet.utils.generate_passphrase function.