@metamask-previews/user-operation-controller 41.2.3-preview-5620ede0b → 41.2.4-preview-2bb03d4
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,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [41.2.4]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `@metamask/transaction-controller` from `^66.0.0` to `^67.0.0` ([#8999](https://github.com/MetaMask/core/pull/8999), [#9021](https://github.com/MetaMask/core/pull/9021), [#9027](https://github.com/MetaMask/core/pull/9027))
|
|
15
|
+
- Bump `@metamask/approval-controller` from `^9.0.1` to `^9.0.2` ([#9058](https://github.com/MetaMask/core/pull/9058))
|
|
16
|
+
- Bump `@metamask/controller-utils` from `^12.1.0` to `^12.1.1` ([#9058](https://github.com/MetaMask/core/pull/9058))
|
|
17
|
+
- Bump `@metamask/keyring-controller` from `^26.0.0` to `^27.0.0` ([#9058](https://github.com/MetaMask/core/pull/9058))
|
|
18
|
+
|
|
10
19
|
## [41.2.3]
|
|
11
20
|
|
|
12
21
|
### Changed
|
|
@@ -605,7 +614,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
605
614
|
|
|
606
615
|
- Initial Release ([#3749](https://github.com/MetaMask/core/pull/3749))
|
|
607
616
|
|
|
608
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/user-operation-controller@41.2.
|
|
617
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/user-operation-controller@41.2.4...HEAD
|
|
618
|
+
[41.2.4]: https://github.com/MetaMask/core/compare/@metamask/user-operation-controller@41.2.3...@metamask/user-operation-controller@41.2.4
|
|
609
619
|
[41.2.3]: https://github.com/MetaMask/core/compare/@metamask/user-operation-controller@41.2.2...@metamask/user-operation-controller@41.2.3
|
|
610
620
|
[41.2.2]: https://github.com/MetaMask/core/compare/@metamask/user-operation-controller@41.2.1...@metamask/user-operation-controller@41.2.2
|
|
611
621
|
[41.2.1]: https://github.com/MetaMask/core/compare/@metamask/user-operation-controller@41.2.0...@metamask/user-operation-controller@41.2.1
|
|
@@ -18,7 +18,7 @@ type PendingUserOperationPollingInput = {
|
|
|
18
18
|
networkClientId: NetworkClientId;
|
|
19
19
|
};
|
|
20
20
|
declare const PendingUserOperationTracker_base: (abstract new (...args: any[]) => {
|
|
21
|
-
"__#
|
|
21
|
+
"__#16@#activeListeners": Record<string, (options: import("@metamask/utils").Json) => Promise<void>>;
|
|
22
22
|
_getNetworkClientById(networkClientId: string): NetworkClient | undefined;
|
|
23
23
|
_startPolling(input: PendingUserOperationPollingInput): void;
|
|
24
24
|
_stopPollingByPollingTokenSetId(key: string): void;
|
|
@@ -18,7 +18,7 @@ type PendingUserOperationPollingInput = {
|
|
|
18
18
|
networkClientId: NetworkClientId;
|
|
19
19
|
};
|
|
20
20
|
declare const PendingUserOperationTracker_base: (abstract new (...args: any[]) => {
|
|
21
|
-
"__#
|
|
21
|
+
"__#16@#activeListeners": Record<string, (options: import("@metamask/utils").Json) => Promise<void>>;
|
|
22
22
|
_getNetworkClientById(networkClientId: string): NetworkClient | undefined;
|
|
23
23
|
_startPolling(input: PendingUserOperationPollingInput): void;
|
|
24
24
|
_stopPollingByPollingTokenSetId(key: string): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/user-operation-controller",
|
|
3
|
-
"version": "41.2.
|
|
3
|
+
"version": "41.2.4-preview-2bb03d4",
|
|
4
4
|
"description": "Creates user operations and manages their life cycle",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ethereum",
|
|
@@ -54,18 +54,18 @@
|
|
|
54
54
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@metamask/approval-controller": "^9.0.
|
|
57
|
+
"@metamask/approval-controller": "^9.0.2",
|
|
58
58
|
"@metamask/base-controller": "^9.1.0",
|
|
59
|
-
"@metamask/controller-utils": "^12.1.
|
|
59
|
+
"@metamask/controller-utils": "^12.1.1",
|
|
60
60
|
"@metamask/eth-query": "^4.0.0",
|
|
61
61
|
"@metamask/gas-fee-controller": "^26.2.2",
|
|
62
|
-
"@metamask/keyring-controller": "^
|
|
62
|
+
"@metamask/keyring-controller": "^27.0.0",
|
|
63
63
|
"@metamask/messenger": "^1.2.0",
|
|
64
64
|
"@metamask/network-controller": "^32.0.0",
|
|
65
65
|
"@metamask/polling-controller": "^16.0.6",
|
|
66
66
|
"@metamask/rpc-errors": "^7.0.2",
|
|
67
67
|
"@metamask/superstruct": "^3.1.0",
|
|
68
|
-
"@metamask/transaction-controller": "^
|
|
68
|
+
"@metamask/transaction-controller": "^67.0.0",
|
|
69
69
|
"@metamask/utils": "^11.9.0",
|
|
70
70
|
"bn.js": "^5.2.1",
|
|
71
71
|
"immer": "^9.0.6",
|