@metamask/transaction-controller 62.9.1 → 62.9.2
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 +14 -1
- package/dist/TransactionController.cjs +2 -1
- package/dist/TransactionController.cjs.map +1 -1
- package/dist/TransactionController.d.cts.map +1 -1
- package/dist/TransactionController.d.mts.map +1 -1
- package/dist/TransactionController.mjs +2 -1
- package/dist/TransactionController.mjs.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [62.9.2]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `@metamask/accounts-controller` from `^35.0.1` to `^35.0.2` ([#7642](https://github.com/MetaMask/core/pull/7642))
|
|
15
|
+
- Bump `@metamask/gas-fee-controller` from `^26.0.1` to `^26.0.2` ([#7642](https://github.com/MetaMask/core/pull/7642))
|
|
16
|
+
- Bump `@metamask/network-controller` from `^28.0.0` to `^29.0.0` ([#7642](https://github.com/MetaMask/core/pull/7642))
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Exclude transactions where `isTransfer` is defined when marking nonce duplicates as dropped ([#7637](https://github.com/MetaMask/core/pull/7637))
|
|
21
|
+
|
|
10
22
|
## [62.9.1]
|
|
11
23
|
|
|
12
24
|
### Changed
|
|
@@ -2073,7 +2085,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
2073
2085
|
|
|
2074
2086
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
2075
2087
|
|
|
2076
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.9.
|
|
2088
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.9.2...HEAD
|
|
2089
|
+
[62.9.2]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.9.1...@metamask/transaction-controller@62.9.2
|
|
2077
2090
|
[62.9.1]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.9.0...@metamask/transaction-controller@62.9.1
|
|
2078
2091
|
[62.9.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.8.0...@metamask/transaction-controller@62.9.0
|
|
2079
2092
|
[62.8.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.7.0...@metamask/transaction-controller@62.8.0
|
|
@@ -1925,7 +1925,8 @@ async function _TransactionController_approveTransaction(transactionId, traceCon
|
|
|
1925
1925
|
nonce &&
|
|
1926
1926
|
transaction.txParams.nonce === nonce &&
|
|
1927
1927
|
transaction.chainId === chainId &&
|
|
1928
|
-
transaction.type !== types_1.TransactionType.incoming
|
|
1928
|
+
transaction.type !== types_1.TransactionType.incoming &&
|
|
1929
|
+
transaction.isTransfer === undefined);
|
|
1929
1930
|
const sameNonceTransactionIds = sameNonceTransactions.map((transaction) => transaction.id);
|
|
1930
1931
|
if (sameNonceTransactions.length === 0) {
|
|
1931
1932
|
return;
|