@metamask-previews/transaction-controller 10.0.0-preview.d5e3b8e → 11.0.0-preview.56ca173
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 +27 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [11.0.0]
|
|
10
|
+
### Added
|
|
11
|
+
- Add optional `getLastBlockVariations` method to `RemoteTransactionSource` type ([#1668](https://github.com/MetaMask/core/pull/1668))
|
|
12
|
+
- Add `updateTransactionGasFees` method to `TransactionController` ([#1674](https://github.com/MetaMask/core/pull/1674))
|
|
13
|
+
- Add `r`, `s` and `v` properties to the transaction metadata ([#1664](https://github.com/MetaMask/core/pull/1664))
|
|
14
|
+
- Add `sendFlowHistory` property to the transaction metadata ([#1665](https://github.com/MetaMask/core/pull/1665))
|
|
15
|
+
- Add `updateTransactionSendFlowHistory` method to `TransactionController` ([#1665](https://github.com/MetaMask/core/pull/1665))
|
|
16
|
+
- Add `originalGasEstimate` property to the transaction metadata ([#1656](https://github.com/MetaMask/core/pull/1656))
|
|
17
|
+
- Add `incomingTransactions.queryEntireHistory` constructor option ([#1652](https://github.com/MetaMask/core/pull/1652))
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
- **BREAKING**: Remove `apiKey` property from `RemoteTransactionSourceRequest` type ([#1668](https://github.com/MetaMask/core/pull/1668))
|
|
21
|
+
- **BREAKING**: Remove unused `FetchAllOptions` type from `TransactionController` ([#1668](https://github.com/MetaMask/core/pull/1668))
|
|
22
|
+
- **BREAKING**: Remove `incomingTransactions.apiKey` constructor option ([#1668](https://github.com/MetaMask/core/pull/1668))
|
|
23
|
+
- **BREAKING**: Rename the `transaction` object to `txParams` in the transaction metadata ([#1651](https://github.com/MetaMask/core/pull/1651))
|
|
24
|
+
- **BREAKING**: Add `disableHistory` constructor option ([#1657](https://github.com/MetaMask/core/pull/1657))
|
|
25
|
+
- Defaults to `false` but will increase state size considerably unless disabled
|
|
26
|
+
- **BREAKING**: Add `disableSendFlowHistory` constructor option ([#1665](https://github.com/MetaMask/core/pull/1665))
|
|
27
|
+
- Defaults to `false` but will increase state size considerably unless disabled
|
|
28
|
+
- **BREAKING**: Rename the `transactionHash` property to `hash` in the transaction metadata
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
- Fix the sorting of incoming and updated transactions ([#1652](https://github.com/MetaMask/core/pull/1652))
|
|
32
|
+
- Prevent rate limit errors when `incomingTransactions.includeTokenTransfers` is `true` by by alternating Etherscan request types on each update ([#1668](https://github.com/MetaMask/core/pull/1668))
|
|
33
|
+
|
|
9
34
|
## [10.0.0]
|
|
10
35
|
### Added
|
|
11
36
|
- Add `submittedTime` to the transaction metadata ([#1645](https://github.com/MetaMask/core/pull/1645))
|
|
@@ -160,7 +185,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
160
185
|
|
|
161
186
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
162
187
|
|
|
163
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@
|
|
188
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@11.0.0...HEAD
|
|
189
|
+
[11.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@10.0.0...@metamask/transaction-controller@11.0.0
|
|
164
190
|
[10.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@9.2.0...@metamask/transaction-controller@10.0.0
|
|
165
191
|
[9.2.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@9.1.0...@metamask/transaction-controller@9.2.0
|
|
166
192
|
[9.1.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@9.0.0...@metamask/transaction-controller@9.1.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/transaction-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "11.0.0-preview.56ca173",
|
|
4
4
|
"description": "Stores transactions alongside their periodically updated statuses and manages interactions such as approval and cancellation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@metamask/base-controller": "^3.2.1",
|
|
35
35
|
"@metamask/controller-utils": "^4.3.2",
|
|
36
36
|
"@metamask/eth-query": "^3.0.1",
|
|
37
|
-
"@metamask/network-controller": "^12.
|
|
37
|
+
"@metamask/network-controller": "^12.2.0",
|
|
38
38
|
"@metamask/utils": "^6.2.0",
|
|
39
39
|
"async-mutex": "^0.2.6",
|
|
40
40
|
"eth-method-registry": "1.1.0",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
63
|
"@metamask/approval-controller": "^3.5.1",
|
|
64
|
-
"@metamask/network-controller": "^12.
|
|
64
|
+
"@metamask/network-controller": "^12.2.0",
|
|
65
65
|
"babel-runtime": "^6.26.0"
|
|
66
66
|
},
|
|
67
67
|
"engines": {
|