@metamask/bridge-controller 29.0.0 → 30.0.0
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 +12 -1
- package/dist/bridge-controller.d.cts +2 -2
- package/dist/bridge-controller.d.mts +2 -2
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [30.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING:** Bump `@metamask/assets-controller` peer dependency to `^67.0.0` ([#5888](https://github.com/MetaMask/core/pull/5888))
|
|
15
|
+
- **BREAKING:** Bump `@metamask/accounts-controller` peer dependency to `^30.0.0` ([#5888](https://github.com/MetaMask/core/pull/5888))
|
|
16
|
+
- **BREAKING:** Bump `@metamask/transaction-controller` peer dependency to `^57.0.0` ([#5888](https://github.com/MetaMask/core/pull/5888))
|
|
17
|
+
- **BREAKING:** Bump `@metamask/snaps-controllers` peer dependency from `^11.0.0` to `^12.0.0` ([#5871](https://github.com/MetaMask/core/pull/5871))
|
|
18
|
+
- Bump `@metamask/keyring-api` dependency from `^17.4.0` to `^18.0.0` ([#5871](https://github.com/MetaMask/core/pull/5871))
|
|
19
|
+
|
|
10
20
|
## [29.0.0]
|
|
11
21
|
|
|
12
22
|
### Changed
|
|
@@ -287,7 +297,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
287
297
|
|
|
288
298
|
- Initial release ([#5317](https://github.com/MetaMask/core/pull/5317))
|
|
289
299
|
|
|
290
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@
|
|
300
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@30.0.0...HEAD
|
|
301
|
+
[30.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@29.0.0...@metamask/bridge-controller@30.0.0
|
|
291
302
|
[29.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@28.0.0...@metamask/bridge-controller@29.0.0
|
|
292
303
|
[28.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@27.0.0...@metamask/bridge-controller@28.0.0
|
|
293
304
|
[27.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@26.0.0...@metamask/bridge-controller@27.0.0
|
|
@@ -21,8 +21,8 @@ type BridgePollingInput = {
|
|
|
21
21
|
context: Pick<RequiredEventContextFromClient, UnifiedSwapBridgeEventName.QuoteError>[UnifiedSwapBridgeEventName.QuoteError] & Pick<RequiredEventContextFromClient, UnifiedSwapBridgeEventName.QuotesRequested>[UnifiedSwapBridgeEventName.QuotesRequested];
|
|
22
22
|
};
|
|
23
23
|
declare const BridgeController_base: (abstract new (...args: any[]) => {
|
|
24
|
-
readonly "__#
|
|
25
|
-
"__#
|
|
24
|
+
readonly "__#14@#intervalIds": Record<string, NodeJS.Timeout>;
|
|
25
|
+
"__#14@#intervalLength": number | undefined;
|
|
26
26
|
setIntervalLength(intervalLength: number): void;
|
|
27
27
|
getIntervalLength(): number | undefined;
|
|
28
28
|
_startPolling(input: BridgePollingInput): void;
|
|
@@ -21,8 +21,8 @@ type BridgePollingInput = {
|
|
|
21
21
|
context: Pick<RequiredEventContextFromClient, UnifiedSwapBridgeEventName.QuoteError>[UnifiedSwapBridgeEventName.QuoteError] & Pick<RequiredEventContextFromClient, UnifiedSwapBridgeEventName.QuotesRequested>[UnifiedSwapBridgeEventName.QuotesRequested];
|
|
22
22
|
};
|
|
23
23
|
declare const BridgeController_base: (abstract new (...args: any[]) => {
|
|
24
|
-
readonly "__#
|
|
25
|
-
"__#
|
|
24
|
+
readonly "__#14@#intervalIds": Record<string, NodeJS.Timeout>;
|
|
25
|
+
"__#14@#intervalLength": number | undefined;
|
|
26
26
|
setIntervalLength(intervalLength: number): void;
|
|
27
27
|
getIntervalLength(): number | undefined;
|
|
28
28
|
_startPolling(input: BridgePollingInput): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/bridge-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "30.0.0",
|
|
4
4
|
"description": "Manages bridge-related quote fetching functionality for MetaMask",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -55,24 +55,24 @@
|
|
|
55
55
|
"@metamask/base-controller": "^8.0.1",
|
|
56
56
|
"@metamask/controller-utils": "^11.9.0",
|
|
57
57
|
"@metamask/gas-fee-controller": "^23.0.0",
|
|
58
|
-
"@metamask/keyring-api": "^
|
|
58
|
+
"@metamask/keyring-api": "^18.0.0",
|
|
59
59
|
"@metamask/metamask-eth-abis": "^3.1.1",
|
|
60
|
-
"@metamask/multichain-network-controller": "^0.
|
|
60
|
+
"@metamask/multichain-network-controller": "^0.8.0",
|
|
61
61
|
"@metamask/polling-controller": "^13.0.0",
|
|
62
62
|
"@metamask/utils": "^11.2.0",
|
|
63
63
|
"bignumber.js": "^9.1.2",
|
|
64
64
|
"reselect": "^5.1.1"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@metamask/accounts-controller": "^
|
|
68
|
-
"@metamask/assets-controllers": "^
|
|
67
|
+
"@metamask/accounts-controller": "^30.0.0",
|
|
68
|
+
"@metamask/assets-controllers": "^67.0.0",
|
|
69
69
|
"@metamask/auto-changelog": "^3.4.4",
|
|
70
70
|
"@metamask/eth-json-rpc-provider": "^4.1.8",
|
|
71
|
-
"@metamask/network-controller": "^23.5.
|
|
71
|
+
"@metamask/network-controller": "^23.5.1",
|
|
72
72
|
"@metamask/remote-feature-flag-controller": "^1.6.0",
|
|
73
|
-
"@metamask/snaps-controllers": "^
|
|
73
|
+
"@metamask/snaps-controllers": "^12.3.1",
|
|
74
74
|
"@metamask/superstruct": "^3.1.0",
|
|
75
|
-
"@metamask/transaction-controller": "^
|
|
75
|
+
"@metamask/transaction-controller": "^57.0.0",
|
|
76
76
|
"@types/jest": "^27.4.1",
|
|
77
77
|
"deepmerge": "^4.2.2",
|
|
78
78
|
"jest": "^27.5.1",
|
|
@@ -85,12 +85,12 @@
|
|
|
85
85
|
"typescript": "~5.2.2"
|
|
86
86
|
},
|
|
87
87
|
"peerDependencies": {
|
|
88
|
-
"@metamask/accounts-controller": "^
|
|
89
|
-
"@metamask/assets-controllers": "^
|
|
88
|
+
"@metamask/accounts-controller": "^30.0.0",
|
|
89
|
+
"@metamask/assets-controllers": "^67.0.0",
|
|
90
90
|
"@metamask/network-controller": "^23.0.0",
|
|
91
91
|
"@metamask/remote-feature-flag-controller": "^1.6.0",
|
|
92
|
-
"@metamask/snaps-controllers": "^
|
|
93
|
-
"@metamask/transaction-controller": "^
|
|
92
|
+
"@metamask/snaps-controllers": "^12.0.0",
|
|
93
|
+
"@metamask/transaction-controller": "^57.0.0"
|
|
94
94
|
},
|
|
95
95
|
"engines": {
|
|
96
96
|
"node": "^18.18 || >=20"
|