Skip to content

Commit eaee1f1

Browse files
committed
Bump: Python-HDWallet into v3.2.3 package
1 parent 78abe47 commit eaee1f1

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Changelog
22

3-
## [v3.2.2](https://github.com/talonlab/python-hdwallet/tree/v3.2.2) (2025-01-14)
3+
## [v3.2.3](https://github.com/talonlab/python-hdwallet/tree/v3.2.3) (2025-01-14)
44

5-
[Full Changelog](https://github.com/talonlab/python-hdwallet/compare/v3.2.1...v3.2.2)
5+
[Full Changelog](https://github.com/talonlab/python-hdwallet/compare/v3.2.1...v3.2.3)
66

77
**Improvements:**
88

@@ -12,6 +12,7 @@
1212
**Fix Bugs:**
1313

1414
- Fix: HDWDerivation `ecc` constant value on clean
15+
- Fix: ECC parameter instant checker on HDWDerivation
1516

1617
## [v3.2.1](https://github.com/talonlab/python-hdwallet/tree/v3.2.1) (2025-01-08)
1718

README.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,10 @@ print(json.dumps(hdwallet.dump(exclude={"indexes"}), indent=4, ensure_ascii=Fals
101101
# print(json.dumps(hdwallet.dumps(exclude={"indexes"}), indent=4, ensure_ascii=False)) # dumps
102102
```
103103

104-
<details open>
105-
<summary>Output</summary><br/>
104+
<br/>
105+
106+
<details>
107+
<summary>Output</summary>
106108

107109
```json
108110
{
@@ -217,8 +219,10 @@ for derivation in hdwallet.dumps(exclude={"root", "indexes"}):
217219
print(f"{derivation['at']['path']} {derivation['address']} 0x{derivation['private_key']}")
218220
```
219221

220-
<details open>
221-
<summary>Output</summary><br/>
222+
<br/>
223+
224+
<details>
225+
<summary>Output</summary>
222226

223227
```shell script
224228
Mnemonic: abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about
@@ -507,7 +511,7 @@ We accept a wide range of cryptocurrencies! If you'd like to donate using anothe
507511
| SLIP10-Ed25519-Blake2b | `0051e8b29f7d0214dc96843cdbdcc071dc65397016ea6f7381f81bf42d76c7357c` | [generate](https://hdwallet.online/dumps/slip10-ed25519-blake2b/XNO?network=mainnet&hd=BIP32&from=public-key&public-key=0051e8b29f7d0214dc96843cdbdcc071dc65397016ea6f7381f81bf42d76c7357c&format=JSON&exclude=root&generate=true) |
508512
| SLIP10-Nist256p1 | `039ee4e2aadd6f4e7938d164b646c4b424114b8dd57252287151398ba0baf25780` | [generate](https://hdwallet.online/dumps/slip10-nist256p1/NEO?network=mainnet&hd=BIP32&from=public-key&public-key=039ee4e2aadd6f4e7938d164b646c4b424114b8dd57252287151398ba0baf25780&format=JSON&exclude=root&generate=true) |
509513

510-
Thank you very much for your support!
514+
Thank you very much for your support :)
511515

512516
## License
513517

hdwallet/info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from typing import List
88

99
__name__: str = "hdwallet"
10-
__version__: str = "v3.2.2"
10+
__version__: str = "v3.2.3"
1111
__license__: str = "MIT"
1212
__author__: str = "Meheret Tesfaye Batu"
1313
__email__: str = "meherett.batu@gmail.com"

0 commit comments

Comments
 (0)