@metamask-previews/transaction-controller 64.3.0-preview-eb7b1aa4b → 64.3.0-preview-938fc5d87
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 +0 -9
- package/dist/TransactionController.cjs +0 -4
- package/dist/TransactionController.cjs.map +1 -1
- package/dist/TransactionController.d.cts +4 -2
- package/dist/TransactionController.d.cts.map +1 -1
- package/dist/TransactionController.d.mts +4 -2
- package/dist/TransactionController.d.mts.map +1 -1
- package/dist/TransactionController.mjs +0 -4
- package/dist/TransactionController.mjs.map +1 -1
- package/dist/utils/feature-flags.cjs +5 -3
- package/dist/utils/feature-flags.cjs.map +1 -1
- package/dist/utils/feature-flags.d.cts +3 -3
- package/dist/utils/feature-flags.d.cts.map +1 -1
- package/dist/utils/feature-flags.d.mts +3 -3
- package/dist/utils/feature-flags.d.mts.map +1 -1
- package/dist/utils/feature-flags.mjs +5 -3
- package/dist/utils/feature-flags.mjs.map +1 -1
- package/dist/utils/gas.cjs +9 -13
- package/dist/utils/gas.cjs.map +1 -1
- package/dist/utils/gas.d.cts +5 -7
- package/dist/utils/gas.d.cts.map +1 -1
- package/dist/utils/gas.d.mts +5 -7
- package/dist/utils/gas.d.mts.map +1 -1
- package/dist/utils/gas.mjs +9 -13
- package/dist/utils/gas.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,15 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
-
### Changed
|
|
11
|
-
|
|
12
|
-
- Snapshot `txParamsOriginal` in `updateEditableParams` when `containerTypes` are first applied ([#8546](https://github.com/MetaMask/core/pull/8546))
|
|
13
|
-
- Add `requiresAuthorizationList` to `TransactionController:estimateGasBatch` results when EIP-7702 batch gas estimation requires a first-time account upgrade ([#8577](https://github.com/MetaMask/core/pull/8577))
|
|
14
|
-
|
|
15
|
-
### Fixed
|
|
16
|
-
|
|
17
|
-
- Gas estimation for EIP-7702 transactions now supports any upgrade-with-data transaction, not only self-targeted ones ([#8467](https://github.com/MetaMask/core/pull/8467))
|
|
18
|
-
|
|
19
10
|
## [64.3.0]
|
|
20
11
|
|
|
21
12
|
### Added
|
|
@@ -991,10 +991,6 @@ class TransactionController extends base_controller_1.BaseController {
|
|
|
991
991
|
}
|
|
992
992
|
if (containerTypes) {
|
|
993
993
|
updatedTransaction.containerTypes = containerTypes;
|
|
994
|
-
const isNewlyWrapped = containerTypes.length && !transactionMeta.containerTypes?.length;
|
|
995
|
-
if (isNewlyWrapped && !transactionMeta.txParamsOriginal) {
|
|
996
|
-
updatedTransaction.txParamsOriginal = (0, lodash_1.cloneDeep)(transactionMeta.txParams);
|
|
997
|
-
}
|
|
998
994
|
}
|
|
999
995
|
await (0, layer1_gas_fee_flow_1.updateTransactionLayer1GasFee)({
|
|
1000
996
|
layer1GasFeeFlows: __classPrivateFieldGet(this, _TransactionController_layer1GasFeeFlows, "f"),
|