@metamask/smart-transactions-controller 10.1.2 → 10.1.4
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/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [10.1.4]
|
|
10
|
+
### Changed
|
|
11
|
+
- Update @metamask/network-controller from 18.1.1 to 19.0.0 ([#349](https://github.com/MetaMask/smart-transactions-controller/pull/349))
|
|
12
|
+
- Update @metamask/base-controller from 5.0.2 to 6.0.0 ([#351](https://github.com/MetaMask/smart-transactions-controller/pull/351))
|
|
13
|
+
|
|
14
|
+
## [10.1.3]
|
|
15
|
+
### Changed
|
|
16
|
+
- Update jest from v26 to v29, ts-jest from v26 to v29 and nock from v13 to v14 ([#325](https://github.com/MetaMask/smart-transactions-controller/pull/325))
|
|
17
|
+
|
|
9
18
|
## [10.1.2]
|
|
10
19
|
### Fixed
|
|
11
20
|
- fix: Improve state management to ensure unique smart transactions in a rare edge case. This will be removed in a future version once we have confirmed this is resolved. ([#353](https://github.com/MetaMask/smart-transactions-controller/pull/353))
|
|
@@ -292,7 +301,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
292
301
|
- Add initial SmartTransactionsController ([#1](https://github.com/MetaMask/smart-transactions-controller/pull/1))
|
|
293
302
|
- Initial commit
|
|
294
303
|
|
|
295
|
-
[Unreleased]: https://github.com/MetaMask/smart-transactions-controller/compare/v10.1.
|
|
304
|
+
[Unreleased]: https://github.com/MetaMask/smart-transactions-controller/compare/v10.1.4...HEAD
|
|
305
|
+
[10.1.4]: https://github.com/MetaMask/smart-transactions-controller/compare/v10.1.3...v10.1.4
|
|
306
|
+
[10.1.3]: https://github.com/MetaMask/smart-transactions-controller/compare/v10.1.2...v10.1.3
|
|
296
307
|
[10.1.2]: https://github.com/MetaMask/smart-transactions-controller/compare/v10.1.1...v10.1.2
|
|
297
308
|
[10.1.1]: https://github.com/MetaMask/smart-transactions-controller/compare/v10.1.0...v10.1.1
|
|
298
309
|
[10.1.0]: https://github.com/MetaMask/smart-transactions-controller/compare/v10.0.1...v10.1.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/smart-transactions-controller",
|
|
3
|
-
"version": "10.1.
|
|
3
|
+
"version": "10.1.4",
|
|
4
4
|
"description": "Improves success rates for swaps by trialing transactions privately and finding minimum fees",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"@ethereumjs/tx": "^5.2.1",
|
|
30
30
|
"@ethereumjs/util": "^9.0.2",
|
|
31
31
|
"@ethersproject/bytes": "^5.7.0",
|
|
32
|
-
"@metamask/base-controller": "^
|
|
33
|
-
"@metamask/controller-utils": "^
|
|
32
|
+
"@metamask/base-controller": "^6.0.0",
|
|
33
|
+
"@metamask/controller-utils": "^11.0.0",
|
|
34
34
|
"@metamask/eth-query": "^4.0.0",
|
|
35
|
-
"@metamask/network-controller": "^
|
|
35
|
+
"@metamask/network-controller": "^19.0.0",
|
|
36
36
|
"@metamask/polling-controller": "^6.0.1",
|
|
37
37
|
"@metamask/transaction-controller": "^30.0.0",
|
|
38
38
|
"bignumber.js": "^9.0.1",
|
|
@@ -62,12 +62,12 @@
|
|
|
62
62
|
"eslint-plugin-prettier": "^4.2.1",
|
|
63
63
|
"eslint-plugin-promise": "^6.1.1",
|
|
64
64
|
"isomorphic-fetch": "^3.0.0",
|
|
65
|
-
"jest": "^
|
|
66
|
-
"nock": "^
|
|
65
|
+
"jest": "^29.7.0",
|
|
66
|
+
"nock": "^14.0.0-beta.7",
|
|
67
67
|
"prettier": "^2.8.8",
|
|
68
68
|
"prettier-plugin-packagejson": "^2.4.3",
|
|
69
69
|
"sinon": "^9.2.4",
|
|
70
|
-
"ts-jest": "^
|
|
70
|
+
"ts-jest": "^29.1.4",
|
|
71
71
|
"typescript": "~4.8.4"
|
|
72
72
|
},
|
|
73
73
|
"packageManager": "yarn@3.2.1",
|