@metamask-previews/transaction-controller 62.0.0-preview-e0caebb → 62.1.0-preview-0e8737f
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 +4 -1
- package/dist/TransactionController.cjs +4 -15
- 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 +4 -15
- package/dist/TransactionController.mjs.map +1 -1
- package/package.json +1 -1
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
|
+
## [62.1.0]
|
|
11
|
+
|
|
10
12
|
### Changed
|
|
11
13
|
|
|
12
14
|
- Performance optimisations in `addTransaction` and `addTransactionBatch` methods ([#7205](https://github.com/MetaMask/core/pull/7205))
|
|
@@ -1958,7 +1960,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1958
1960
|
|
|
1959
1961
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
1960
1962
|
|
|
1961
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.
|
|
1963
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.1.0...HEAD
|
|
1964
|
+
[62.1.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@62.0.0...@metamask/transaction-controller@62.1.0
|
|
1962
1965
|
[62.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@61.3.0...@metamask/transaction-controller@62.0.0
|
|
1963
1966
|
[61.3.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@61.2.0...@metamask/transaction-controller@61.3.0
|
|
1964
1967
|
[61.2.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@61.1.0...@metamask/transaction-controller@61.2.0
|
|
@@ -1543,21 +1543,10 @@ _TransactionController_afterAdd = new WeakMap(), _TransactionController_afterSig
|
|
|
1543
1543
|
resultCallbacks.success();
|
|
1544
1544
|
}
|
|
1545
1545
|
const updatedTransactionMeta = __classPrivateFieldGet(this, _TransactionController_instances, "m", _TransactionController_getTransaction).call(this, transactionId);
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
transactionMeta: updatedTransactionMeta,
|
|
1551
|
-
actionId,
|
|
1552
|
-
error: updatedTransactionMeta?.error?.message ?? 'Unknown error',
|
|
1553
|
-
});
|
|
1554
|
-
}
|
|
1555
|
-
else {
|
|
1556
|
-
this.messenger.publish(`${controllerName}:transactionApproved`, {
|
|
1557
|
-
transactionMeta: updatedTransactionMeta,
|
|
1558
|
-
actionId,
|
|
1559
|
-
});
|
|
1560
|
-
}
|
|
1546
|
+
this.messenger.publish(`${controllerName}:transactionApproved`, {
|
|
1547
|
+
transactionMeta: updatedTransactionMeta,
|
|
1548
|
+
actionId,
|
|
1549
|
+
});
|
|
1561
1550
|
}
|
|
1562
1551
|
}
|
|
1563
1552
|
catch (rawError) {
|