@metamask-previews/multichain-transactions-controller 0.8.0-preview-714dae1 → 0.9.0-preview-c7dcfd5a

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -1
  2. package/package.json +10 -6
package/CHANGELOG.md CHANGED
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ### Changed
11
+
12
+ - **BREAKING:** Bump `@metamask/snaps-controllers` peer dependency from `^9.19.0` to `^11.10.0` ([#5611](https://github.com/MetaMask/core/pull/5611))
13
+ - **BREAKING:** Add `@metamask/providers` peer dependency `^21.0.0` ([#5611](https://github.com/MetaMask/core/pull/5611))
14
+ - Required peer dependency of `@metamask/snaps-controllers`.
15
+ - **BREAKING:** Add `webextension-polyfill` peer dependency ([#5611](https://github.com/MetaMask/core/pull/5611))
16
+ - Required peer dependency of `@metamask/providers`.
17
+ - Bump `@metamask/snaps-utils` dependency from `^8.10.0` to `^9.2.0` ([#5611](https://github.com/MetaMask/core/pull/5611))
18
+ - Bump `@metamask/snaps-sdk` dependency from `^6.17.1` to `^6.22.0` ([#5611](https://github.com/MetaMask/core/pull/5611))
19
+
20
+ ## [0.9.0]
21
+
22
+ ### Added
23
+
24
+ - Send new `MultichainTransactionsController:transaction{Confirmed,Submitted}` events during transaction updates ([#5587](https://github.com/MetaMask/core/pull/5587))
25
+
10
26
  ## [0.8.0]
11
27
 
12
28
  ### Changed
@@ -102,7 +118,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
102
118
 
103
119
  - Initial release ([#5133](https://github.com/MetaMask/core/pull/5133)), ([#5177](https://github.com/MetaMask/core/pull/5177))
104
120
 
105
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.8.0...HEAD
121
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.9.0...HEAD
122
+ [0.9.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.8.0...@metamask/multichain-transactions-controller@0.9.0
106
123
  [0.8.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.7.2...@metamask/multichain-transactions-controller@0.8.0
107
124
  [0.7.2]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.7.1...@metamask/multichain-transactions-controller@0.7.2
108
125
  [0.7.1]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.7.0...@metamask/multichain-transactions-controller@0.7.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/multichain-transactions-controller",
3
- "version": "0.8.0-preview-714dae1",
3
+ "version": "0.9.0-preview-c7dcfd5a",
4
4
  "description": "This package is responsible for getting transactions from our Bitcoin and Solana snaps",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -52,8 +52,8 @@
52
52
  "@metamask/keyring-internal-api": "^6.0.1",
53
53
  "@metamask/keyring-snap-client": "^4.1.0",
54
54
  "@metamask/polling-controller": "^13.0.0",
55
- "@metamask/snaps-sdk": "^6.17.1",
56
- "@metamask/snaps-utils": "^8.10.0",
55
+ "@metamask/snaps-sdk": "^6.22.0",
56
+ "@metamask/snaps-utils": "^9.2.0",
57
57
  "@metamask/utils": "^11.2.0",
58
58
  "@types/uuid": "^8.3.0",
59
59
  "immer": "^9.0.6",
@@ -63,18 +63,22 @@
63
63
  "@metamask/accounts-controller": "^27.0.0",
64
64
  "@metamask/auto-changelog": "^3.4.4",
65
65
  "@metamask/keyring-controller": "^21.0.1",
66
- "@metamask/snaps-controllers": "^9.19.0",
66
+ "@metamask/providers": "^21.0.0",
67
+ "@metamask/snaps-controllers": "^11.2.0",
67
68
  "@types/jest": "^27.4.1",
68
69
  "deepmerge": "^4.2.2",
69
70
  "jest": "^27.5.1",
70
71
  "ts-jest": "^27.1.4",
71
72
  "typedoc": "^0.24.8",
72
73
  "typedoc-plugin-missing-exports": "^2.0.0",
73
- "typescript": "~5.2.2"
74
+ "typescript": "~5.2.2",
75
+ "webextension-polyfill": "^0.12.0"
74
76
  },
75
77
  "peerDependencies": {
76
78
  "@metamask/accounts-controller": "^27.0.0",
77
- "@metamask/snaps-controllers": "^9.19.0"
79
+ "@metamask/providers": "^21.0.0",
80
+ "@metamask/snaps-controllers": "^11.0.0",
81
+ "webextension-polyfill": "^0.10.0 || ^0.11.0 || ^0.12.0"
78
82
  },
79
83
  "engines": {
80
84
  "node": "^18.18 || >=20"