Skip to content

Commit 6ecc3d3

Browse files
committed
Bump: Python-HDWallet into v3.5.0 package
1 parent 795b32a commit 6ecc3d3

File tree

2 files changed

+23
-10
lines changed

2 files changed

+23
-10
lines changed

CHANGELOG.md

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [v3.5.0](https://github.com/hdwallet-io/python-hdwallet/tree/v3.5.0) (2025-07-17)
4+
5+
[Full Changelog](https://github.com/hdwallet-io/python-hdwallet/compare/v3.4.0...v3.5.0)
6+
7+
**New Additions:**
8+
9+
- Add: `SEMANTICS`, `DEFAULT_SEMANTIC`, `DEFAUT_PATH` & `SUPPORT_BIP38` values in all cryptocurrencies.
10+
- Add: `NAME` value in all networks.
11+
12+
**Enhancements:**
13+
14+
- Refactor: renamed `const` to `consts`
15+
316
## [v3.4.0](https://github.com/hdwallet-io/python-hdwallet/tree/v3.4.0) (2025-03-15)
417

518
[Full Changelog](https://github.com/hdwallet-io/python-hdwallet/compare/v3.3.0...v3.4.0)
@@ -12,8 +25,8 @@
1225

1326
**New Additions:**
1427

15-
- Add: ``is_valid`` function for validating entropies & seeds hex string
16-
- Add: ``is_valid_key`` function for validating extended(x)-keys string
28+
- Add: `is_valid` function for validating entropies & seeds hex string
29+
- Add: `is_valid_key` function for validating extended(x)-keys string
1730

1831
**Fix Bugs:**
1932

@@ -124,12 +137,12 @@ We are pleased to announce the release of **python-hdwallet v3.0.0**, a comprehe
124137

125138
**New Features:**
126139

127-
- Full support for entropy generation and mnemonic phrase creation for: ``Algorand``, ``Electrum-V1``, ``Electrum-V2``, ``Monero``
128-
- Add new Elliptic Curve Cryptography's (ECCs): ``Kholaw-Ed25519``, ``SLIP10-Ed25519``, ``SLIP10-Ed25519-Blake2b``, ``SLIP10-Ed25519-Monero``, ``SLIP10-Nist256p1`` algorithms.
129-
- Add support for seed generation specific to: ``Algorand``, ``Cardano``, ``Electrum-V1``, ``Electrum-V2``, ``Monero``
130-
- Extended support for Hierarchical Deterministic structures, including: ``BIP86``, ``Cardano``, ``Electrum-V1``, ``Electrum-V2``, ``Monero``
131-
- Support for advanced derivations: ``BIP86``, ``CIP1852``, ``Electrum``, ``Monero``, ``HDW (Our own derivation method)``
132-
- Comprehensive support for generating addresses across a wide range of protocols and formats: ``Algorand``, ``Aptos``, ``Avalanche``, ``Cardano``, ``Cosmos``, ``EOS``, ``Ergo``, ``Ethereum``, ``Filecoin``, ``Harmony``, ``Icon``, ``Injective``, ``Monero``, ``MultiversX``, ``Nano``, ``Near``, ``Neo``, ``OKT-Chain``, ``P2TR``, ``Ripple``, ``Solana``, ``Stellar``, ``Sui``, ``Tezos``, ``Tron``, ``XinFin``, ``Zilliqa``
140+
- Full support for entropy generation and mnemonic phrase creation for: `Algorand`, `Electrum-V1`, `Electrum-V2`, `Monero`
141+
- Add new Elliptic Curve Cryptography's (ECCs): `Kholaw-Ed25519`, `SLIP10-Ed25519`, `SLIP10-Ed25519-Blake2b`, `SLIP10-Ed25519-Monero`, `SLIP10-Nist256p1` algorithms.
142+
- Add support for seed generation specific to: `Algorand`, `Cardano`, `Electrum-V1`, `Electrum-V2`, `Monero`
143+
- Extended support for Hierarchical Deterministic structures, including: `BIP86`, `Cardano`, `Electrum-V1`, `Electrum-V2`, `Monero`
144+
- Support for advanced derivations: `BIP86`, `CIP1852`, `Electrum`, `Monero`, `HDW (Our own derivation method)`
145+
- Comprehensive support for generating addresses across a wide range of protocols and formats: `Algorand`, `Aptos`, `Avalanche`, `Cardano`, `Cosmos`, `EOS`, `Ergo`, `Ethereum`, `Filecoin`, `Harmony`, `Icon`, `Injective`, `Monero`, `MultiversX`, `Nano`, `Near`, `Neo`, `OKT-Chain`, `P2TR`, `Ripple`, `Solana`, `Stellar`, `Sui`, `Tezos`, `Tron`, `XinFin`, `Zilliqa`
133146
- BIP38: Secure, password-protected private key handling
134147

135148
**New Cryptocurrencies:**

hdwallet/info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
from typing import List
88

99
__name__: str = "hdwallet"
10-
__version__: str = "v3.5.0b1"
10+
__version__: str = "v3.5.0"
1111
__license__: str = "MIT"
1212
__author__: str = "Meheret Tesfaye Batu"
1313
__email__: str = "meherett.batu@gmail.com"
1414
__documentation__: str = "https://hdwallet.readthedocs.com"
15-
__description__: str = "Python-based library for the implementation of a Hierarchical Deterministic (HD) Wallet generator supporting more than 200 cryptocurrencies."
15+
__description__: str = "Python-based library implementing a Hierarchical Deterministic (HD) Wallet generator for 200+ cryptocurrencies."
1616
__url__: str = "https://hdwallet.io"
1717
__source__: str = "https://github.com/hdwallet-io/python-hdwallet"
1818
__changelog__: str = f"{__source__}/blob/master/CHANGELOG.md"

0 commit comments

Comments
 (0)