@metamask-previews/eth-hd-keyring 14.1.2-58658de → 15.0.0-914f87e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -2
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -7,9 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [15.0.0]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Add `HdKeyring.toEntropySourceId` (v2) ([#603](https://github.com/MetaMask/accounts/pull/603))
|
|
15
|
+
- This can be used to compute a stable/deterministic ID for the keyring's seed.
|
|
16
|
+
|
|
10
17
|
### Changed
|
|
11
18
|
|
|
12
|
-
-
|
|
19
|
+
- **BREAKING:** Drop support for Node.js v18 and v20; minimum version is now v22 ([#593](https://github.com/MetaMask/accounts/pull/593))
|
|
20
|
+
- Bump `@metamask/keyring-api` from `^23.6.0` to `^24.0.0` ([#604](https://github.com/MetaMask/accounts/pull/604), [#611](https://github.com/MetaMask/accounts/pull/611))
|
|
21
|
+
- Bump `@metamask/keyring-sdk` from `^2.3.0` to `^3.0.0` ([#611](https://github.com/MetaMask/accounts/pull/611))
|
|
22
|
+
- Bump `@metamask/keyring-utils` from `^4.0.0` to `^5.0.0` ([#611](https://github.com/MetaMask/accounts/pull/611))
|
|
13
23
|
|
|
14
24
|
## [14.1.2]
|
|
15
25
|
|
|
@@ -302,7 +312,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
302
312
|
- Deserialize method (and `HdKeyring` constructor by extension) can no longer be passed an options object containing a value for `numberOfAccounts` if it is not also containing a value for `mnemonic`.
|
|
303
313
|
- Package name changed from `eth-hd-keyring` to `@metamask/eth-hd-keyring`.
|
|
304
314
|
|
|
305
|
-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@
|
|
315
|
+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@15.0.0...HEAD
|
|
316
|
+
[15.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@14.1.2...@metamask/eth-hd-keyring@15.0.0
|
|
306
317
|
[14.1.2]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@14.1.1...@metamask/eth-hd-keyring@14.1.2
|
|
307
318
|
[14.1.1]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@14.1.0...@metamask/eth-hd-keyring@14.1.1
|
|
308
319
|
[14.1.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@14.0.1...@metamask/eth-hd-keyring@14.1.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/eth-hd-keyring",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "15.0.0-914f87e",
|
|
4
4
|
"description": "A simple standard interface for a seed phrase generated set of Ethereum accounts",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ethereum",
|
|
@@ -70,9 +70,9 @@
|
|
|
70
70
|
"@ethereumjs/util": "^9.1.0",
|
|
71
71
|
"@metamask/eth-sig-util": "^8.2.0",
|
|
72
72
|
"@metamask/key-tree": "^10.0.2",
|
|
73
|
-
"@metamask/keyring-api": "
|
|
74
|
-
"@metamask/keyring-sdk": "
|
|
75
|
-
"@metamask/keyring-utils": "
|
|
73
|
+
"@metamask/keyring-api": "24.0.0",
|
|
74
|
+
"@metamask/keyring-sdk": "3.0.0",
|
|
75
|
+
"@metamask/keyring-utils": "5.0.0",
|
|
76
76
|
"@metamask/scure-bip39": "^2.1.1",
|
|
77
77
|
"@metamask/superstruct": "^3.4.1",
|
|
78
78
|
"@metamask/utils": "^11.11.0",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"devDependencies": {
|
|
82
82
|
"@lavamoat/allow-scripts": "^3.2.1",
|
|
83
83
|
"@lavamoat/preinstall-always-fail": "^2.1.0",
|
|
84
|
-
"@metamask/account-api": "
|
|
84
|
+
"@metamask/account-api": "2.0.0",
|
|
85
85
|
"@metamask/auto-changelog": "^6.1.0",
|
|
86
86
|
"@metamask/bip39": "^4.0.0",
|
|
87
87
|
"@metamask/old-hd-keyring": "npm:@metamask/eth-hd-keyring@^4.0.1",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"typescript": "~5.3.3"
|
|
93
93
|
},
|
|
94
94
|
"engines": {
|
|
95
|
-
"node": "
|
|
95
|
+
"node": ">=22"
|
|
96
96
|
},
|
|
97
97
|
"lavamoat": {
|
|
98
98
|
"allowScripts": {
|