@metamask-previews/bridge-controller 77.0.0-preview-bd7b53f49 → 77.1.0-preview-e0ee14da7
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
CHANGED
|
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [77.1.0]
|
|
11
|
+
|
|
10
12
|
### Added
|
|
11
13
|
|
|
12
14
|
- Add Batch Sell analytics event types ([#9272](https://github.com/MetaMask/core/pull/9272))
|
|
@@ -1684,7 +1686,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1684
1686
|
|
|
1685
1687
|
- Initial release ([#5317](https://github.com/MetaMask/core/pull/5317))
|
|
1686
1688
|
|
|
1687
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@77.
|
|
1689
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@77.1.0...HEAD
|
|
1690
|
+
[77.1.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@77.0.0...@metamask/bridge-controller@77.1.0
|
|
1688
1691
|
[77.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@76.1.0...@metamask/bridge-controller@77.0.0
|
|
1689
1692
|
[76.1.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@76.0.0...@metamask/bridge-controller@76.1.0
|
|
1690
1693
|
[76.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-controller@75.2.1...@metamask/bridge-controller@76.0.0
|
|
@@ -20,8 +20,8 @@ type BridgePollingInput = {
|
|
|
20
20
|
context: RequiredEventContextFromClient[UnifiedSwapBridgeEventName.QuotesError] & RequiredEventContextFromClient[UnifiedSwapBridgeEventName.QuotesRequested];
|
|
21
21
|
};
|
|
22
22
|
declare const BridgeController_base: (abstract new (...args: any[]) => {
|
|
23
|
-
readonly "__#
|
|
24
|
-
"__#
|
|
23
|
+
readonly "__#18@#intervalIds": Record<string, NodeJS.Timeout>;
|
|
24
|
+
"__#18@#intervalLength": number | undefined;
|
|
25
25
|
setIntervalLength(intervalLength: number): void;
|
|
26
26
|
getIntervalLength(): number | undefined;
|
|
27
27
|
_startPolling(input: BridgePollingInput): void;
|
|
@@ -20,8 +20,8 @@ type BridgePollingInput = {
|
|
|
20
20
|
context: RequiredEventContextFromClient[UnifiedSwapBridgeEventName.QuotesError] & RequiredEventContextFromClient[UnifiedSwapBridgeEventName.QuotesRequested];
|
|
21
21
|
};
|
|
22
22
|
declare const BridgeController_base: (abstract new (...args: any[]) => {
|
|
23
|
-
readonly "__#
|
|
24
|
-
"__#
|
|
23
|
+
readonly "__#18@#intervalIds": Record<string, NodeJS.Timeout>;
|
|
24
|
+
"__#18@#intervalLength": number | undefined;
|
|
25
25
|
setIntervalLength(intervalLength: number): void;
|
|
26
26
|
getIntervalLength(): number | undefined;
|
|
27
27
|
_startPolling(input: BridgePollingInput): void;
|
package/package.json
CHANGED