@metamask/bridge-controller 8.0.0 → 10.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 +18 -1
- package/dist/bridge-controller.d.cts +2 -2
- package/dist/bridge-controller.d.mts +2 -2
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [10.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING:** Bump `@metamask/transaction-controller` peer dependency to `^52.0.0` ([#5513](https://github.com/MetaMask/core/pull/5513))
|
|
15
|
+
|
|
16
|
+
## [9.0.0]
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- **BREAKING:** Bump peer dependency `@metamask/accounts-controller` to `^27.0.0` ([#5507](https://github.com/MetaMask/core/pull/5507))
|
|
21
|
+
- **BREAKING:** Bump peer dependency `@metamask/network-controller` to `^23.0.0` ([#5507](https://github.com/MetaMask/core/pull/5507))
|
|
22
|
+
- **BREAKING:** Bump peer dependency `@metamask/transaction-controller` to `^51.0.0` ([#5507](https://github.com/MetaMask/core/pull/5507))
|
|
23
|
+
- Bump `@metamask/polling-controller` to `^13.0.0` ([#5507](https://github.com/MetaMask/core/pull/5507))
|
|
24
|
+
|
|
10
25
|
## [8.0.0]
|
|
11
26
|
|
|
12
27
|
### Changed
|
|
@@ -69,7 +84,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
69
84
|
|
|
70
85
|
- Initial release ([#5317](https://github.com/MetaMask/core/pull/5317))
|
|
71
86
|
|
|
72
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@
|
|
87
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@10.0.0...HEAD
|
|
88
|
+
[10.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@9.0.0...@metamask/bridge-controller@10.0.0
|
|
89
|
+
[9.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@8.0.0...@metamask/bridge-controller@9.0.0
|
|
73
90
|
[8.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@7.0.0...@metamask/bridge-controller@8.0.0
|
|
74
91
|
[7.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@6.0.0...@metamask/bridge-controller@7.0.0
|
|
75
92
|
[6.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@5.0.0...@metamask/bridge-controller@6.0.0
|
|
@@ -11,8 +11,8 @@ type BridgePollingInput = {
|
|
|
11
11
|
updatedQuoteRequest: QuoteRequest;
|
|
12
12
|
};
|
|
13
13
|
declare const BridgeController_base: (abstract new (...args: any[]) => {
|
|
14
|
-
readonly "__#
|
|
15
|
-
"__#
|
|
14
|
+
readonly "__#14@#intervalIds": Record<string, NodeJS.Timeout>;
|
|
15
|
+
"__#14@#intervalLength": number | undefined;
|
|
16
16
|
setIntervalLength(intervalLength: number): void;
|
|
17
17
|
getIntervalLength(): number | undefined;
|
|
18
18
|
_startPolling(input: BridgePollingInput): void;
|
|
@@ -11,8 +11,8 @@ type BridgePollingInput = {
|
|
|
11
11
|
updatedQuoteRequest: QuoteRequest;
|
|
12
12
|
};
|
|
13
13
|
declare const BridgeController_base: (abstract new (...args: any[]) => {
|
|
14
|
-
readonly "__#
|
|
15
|
-
"__#
|
|
14
|
+
readonly "__#14@#intervalIds": Record<string, NodeJS.Timeout>;
|
|
15
|
+
"__#14@#intervalLength": number | undefined;
|
|
16
16
|
setIntervalLength(intervalLength: number): void;
|
|
17
17
|
getIntervalLength(): number | undefined;
|
|
18
18
|
_startPolling(input: BridgePollingInput): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/bridge-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "10.0.0",
|
|
4
4
|
"description": "Manages bridge-related quote fetching functionality for MetaMask",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -55,16 +55,16 @@
|
|
|
55
55
|
"@metamask/base-controller": "^8.0.0",
|
|
56
56
|
"@metamask/controller-utils": "^11.6.0",
|
|
57
57
|
"@metamask/metamask-eth-abis": "^3.1.1",
|
|
58
|
-
"@metamask/polling-controller": "^
|
|
58
|
+
"@metamask/polling-controller": "^13.0.0",
|
|
59
59
|
"@metamask/utils": "^11.2.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@metamask/accounts-controller": "^
|
|
62
|
+
"@metamask/accounts-controller": "^27.0.0",
|
|
63
63
|
"@metamask/auto-changelog": "^3.4.4",
|
|
64
64
|
"@metamask/eth-json-rpc-provider": "^4.1.8",
|
|
65
|
-
"@metamask/network-controller": "^
|
|
65
|
+
"@metamask/network-controller": "^23.0.0",
|
|
66
66
|
"@metamask/superstruct": "^3.1.0",
|
|
67
|
-
"@metamask/transaction-controller": "^
|
|
67
|
+
"@metamask/transaction-controller": "^52.0.0",
|
|
68
68
|
"@types/jest": "^27.4.1",
|
|
69
69
|
"deepmerge": "^4.2.2",
|
|
70
70
|
"jest": "^27.5.1",
|
|
@@ -77,9 +77,9 @@
|
|
|
77
77
|
"typescript": "~5.2.2"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
|
-
"@metamask/accounts-controller": "^
|
|
81
|
-
"@metamask/network-controller": "^
|
|
82
|
-
"@metamask/transaction-controller": "^
|
|
80
|
+
"@metamask/accounts-controller": "^27.0.0",
|
|
81
|
+
"@metamask/network-controller": "^23.0.0",
|
|
82
|
+
"@metamask/transaction-controller": "^52.0.0"
|
|
83
83
|
},
|
|
84
84
|
"engines": {
|
|
85
85
|
"node": "^18.18 || >=20"
|