@metamask/eth-hd-keyring 7.0.3 → 7.0.4
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 +9 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [7.0.4]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `sinon` and `@types/sinon` to latest versions ([#51](https://github.com/MetaMask/accounts/pull/51))
|
|
15
|
+
- Add `syncpack` and sync dependencies ([#53](https://github.com/metamask/accounts/pull/53))
|
|
16
|
+
|
|
10
17
|
## [7.0.3]
|
|
11
18
|
|
|
12
19
|
### Changed
|
|
@@ -123,7 +130,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
123
130
|
- 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`.
|
|
124
131
|
- Package name changed from `eth-hd-keyring` to `@metamask/eth-hd-keyring`.
|
|
125
132
|
|
|
126
|
-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@7.0.
|
|
133
|
+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@7.0.4...HEAD
|
|
134
|
+
[7.0.4]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@7.0.3...@metamask/eth-hd-keyring@7.0.4
|
|
127
135
|
[7.0.3]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@7.0.2...@metamask/eth-hd-keyring@7.0.3
|
|
128
136
|
[7.0.2]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@7.0.1...@metamask/eth-hd-keyring@7.0.2
|
|
129
137
|
[7.0.1]: https://github.com/MetaMask/accounts/compare/@metamask/eth-hd-keyring@7.0.0...@metamask/eth-hd-keyring@7.0.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/eth-hd-keyring",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.4",
|
|
4
4
|
"description": "A simple standard interface for a seed phrase generated set of Ethereum accounts.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ethereum",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"ethereum-cryptography": "^2.1.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@ethereumjs/tx": "^4.0
|
|
39
|
+
"@ethereumjs/tx": "^4.2.0",
|
|
40
40
|
"@lavamoat/allow-scripts": "^3.2.1",
|
|
41
41
|
"@lavamoat/preinstall-always-fail": "^2.1.0",
|
|
42
42
|
"@metamask/auto-changelog": "^3.4.4",
|
|
43
43
|
"@metamask/bip39": "^4.0.0",
|
|
44
44
|
"@metamask/eth-hd-keyring": "4.0.1",
|
|
45
|
-
"@types/jest": "^29.
|
|
45
|
+
"@types/jest": "^29.5.12",
|
|
46
46
|
"deepmerge": "^4.2.2",
|
|
47
|
-
"jest": "^29.
|
|
47
|
+
"jest": "^29.5.0"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": "^18.18 || >=20"
|