@metamask/multichain-transactions-controller 3.0.0 → 4.0.1
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 +24 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [4.0.1]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `@metamask/keyring-api` from `^19.0.0` to `^20.0.0` ([#6248](https://github.com/MetaMask/core/pull/6248))
|
|
15
|
+
- Bump `@metamask/keyring-internal-api` from `^7.0.0` to `^8.0.0` ([#6248](https://github.com/MetaMask/core/pull/6248))
|
|
16
|
+
- Bump `@metamask/keyring-snap-client` from `^6.0.0` to `^7.0.0` ([#6248](https://github.com/MetaMask/core/pull/6248))
|
|
17
|
+
|
|
18
|
+
## [4.0.0]
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- **BREAKING:** Bump peer dependency `@metamask/accounts-controller` from `^31.0.0` to `^32.0.0` ([#6171](https://github.com/MetaMask/core/pull/6171))
|
|
23
|
+
- **BREAKING:** Bump peer dependency `@metamask/snaps-controllers` from `^12.0.0` to `^14.0.0` ([#6035](https://github.com/MetaMask/core/pull/6035))
|
|
24
|
+
- Bump `@metamask/snaps-sdk` from `^7.1.0` to `^9.0.0` ([#6035](https://github.com/MetaMask/core/pull/6035))
|
|
25
|
+
- Bump `@metamask/snaps-utils` from `^9.4.0` to `^11.0.0` ([#6035](https://github.com/MetaMask/core/pull/6035))
|
|
26
|
+
- Bump `@metamask/keyring-api` from `^18.0.0` to `^19.0.0` ([#6146](https://github.com/MetaMask/core/pull/6146))
|
|
27
|
+
- Bump `@metamask/keyring-internal-api` from `^6.2.0` to `^7.0.0` ([#6146](https://github.com/MetaMask/core/pull/6146))
|
|
28
|
+
- Bump `@metamask/keyring-snap-client` from `^5.0.0` to `^6.0.0` ([#6146](https://github.com/MetaMask/core/pull/6146))
|
|
29
|
+
- Bump `@metamask/utils` from `^11.2.0` to `^11.4.2` ([#6054](https://github.com/MetaMask/core/pull/6054))
|
|
30
|
+
|
|
10
31
|
## [3.0.0]
|
|
11
32
|
|
|
12
33
|
### Changed
|
|
@@ -150,7 +171,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
150
171
|
|
|
151
172
|
- Initial release ([#5133](https://github.com/MetaMask/core/pull/5133)), ([#5177](https://github.com/MetaMask/core/pull/5177))
|
|
152
173
|
|
|
153
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@
|
|
174
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@4.0.1...HEAD
|
|
175
|
+
[4.0.1]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@4.0.0...@metamask/multichain-transactions-controller@4.0.1
|
|
176
|
+
[4.0.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@3.0.0...@metamask/multichain-transactions-controller@4.0.0
|
|
154
177
|
[3.0.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@2.0.0...@metamask/multichain-transactions-controller@3.0.0
|
|
155
178
|
[2.0.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@1.0.0...@metamask/multichain-transactions-controller@2.0.0
|
|
156
179
|
[1.0.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.11.0...@metamask/multichain-transactions-controller@1.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/multichain-transactions-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "This package is responsible for getting transactions from our Bitcoin and Solana snaps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -48,22 +48,22 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@metamask/base-controller": "^8.0.1",
|
|
51
|
-
"@metamask/keyring-api": "^
|
|
52
|
-
"@metamask/keyring-internal-api": "^
|
|
53
|
-
"@metamask/keyring-snap-client": "^
|
|
51
|
+
"@metamask/keyring-api": "^20.0.0",
|
|
52
|
+
"@metamask/keyring-internal-api": "^8.0.0",
|
|
53
|
+
"@metamask/keyring-snap-client": "^7.0.0",
|
|
54
54
|
"@metamask/polling-controller": "^14.0.0",
|
|
55
|
-
"@metamask/snaps-sdk": "^
|
|
56
|
-
"@metamask/snaps-utils": "^
|
|
57
|
-
"@metamask/utils": "^11.2
|
|
55
|
+
"@metamask/snaps-sdk": "^9.0.0",
|
|
56
|
+
"@metamask/snaps-utils": "^11.0.0",
|
|
57
|
+
"@metamask/utils": "^11.4.2",
|
|
58
58
|
"@types/uuid": "^8.3.0",
|
|
59
59
|
"immer": "^9.0.6",
|
|
60
60
|
"uuid": "^8.3.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@metamask/accounts-controller": "^
|
|
63
|
+
"@metamask/accounts-controller": "^32.0.2",
|
|
64
64
|
"@metamask/auto-changelog": "^3.4.4",
|
|
65
|
-
"@metamask/keyring-controller": "^22.
|
|
66
|
-
"@metamask/snaps-controllers": "^
|
|
65
|
+
"@metamask/keyring-controller": "^22.1.1",
|
|
66
|
+
"@metamask/snaps-controllers": "^14.0.1",
|
|
67
67
|
"@types/jest": "^27.4.1",
|
|
68
68
|
"deepmerge": "^4.2.2",
|
|
69
69
|
"jest": "^27.5.1",
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
"typescript": "~5.2.2"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
|
-
"@metamask/accounts-controller": "^
|
|
77
|
-
"@metamask/snaps-controllers": "^
|
|
76
|
+
"@metamask/accounts-controller": "^32.0.0",
|
|
77
|
+
"@metamask/snaps-controllers": "^14.0.0"
|
|
78
78
|
},
|
|
79
79
|
"engines": {
|
|
80
80
|
"node": "^18.18 || >=20"
|