@metamask-previews/transaction-controller 64.0.0-preview-197e1b7 → 64.0.0-preview-dff83af4c
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 -6
- package/dist/TransactionController.cjs +1 -6
- 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 +1 -6
- package/dist/TransactionController.mjs.map +1 -1
- package/dist/constants.cjs +0 -2
- package/dist/constants.cjs.map +1 -1
- package/dist/constants.d.cts +0 -2
- package/dist/constants.d.cts.map +1 -1
- package/dist/constants.d.mts +0 -2
- package/dist/constants.d.mts.map +1 -1
- package/dist/constants.mjs +0 -2
- package/dist/constants.mjs.map +1 -1
- package/dist/gas-flows/OracleLayer1GasFeeFlow.cjs +1 -16
- package/dist/gas-flows/OracleLayer1GasFeeFlow.cjs.map +1 -1
- package/dist/gas-flows/OracleLayer1GasFeeFlow.d.cts +0 -13
- package/dist/gas-flows/OracleLayer1GasFeeFlow.d.cts.map +1 -1
- package/dist/gas-flows/OracleLayer1GasFeeFlow.d.mts +0 -13
- package/dist/gas-flows/OracleLayer1GasFeeFlow.d.mts.map +1 -1
- package/dist/gas-flows/OracleLayer1GasFeeFlow.mjs +1 -16
- package/dist/gas-flows/OracleLayer1GasFeeFlow.mjs.map +1 -1
- package/dist/index.cjs +1 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +0 -2
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +0 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +0 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/gas-flows/MantleLayer1GasFeeFlow.cjs +0 -46
- package/dist/gas-flows/MantleLayer1GasFeeFlow.cjs.map +0 -1
- package/dist/gas-flows/MantleLayer1GasFeeFlow.d.cts +0 -20
- package/dist/gas-flows/MantleLayer1GasFeeFlow.d.cts.map +0 -1
- package/dist/gas-flows/MantleLayer1GasFeeFlow.d.mts +0 -20
- package/dist/gas-flows/MantleLayer1GasFeeFlow.d.mts.map +0 -1
- package/dist/gas-flows/MantleLayer1GasFeeFlow.mjs +0 -42
- package/dist/gas-flows/MantleLayer1GasFeeFlow.mjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,12 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
-
### Added
|
|
11
|
-
|
|
12
|
-
- Add optional `submissionMethod` property and `TransactionSubmissionMethod` enum to `TransactionMeta` ([#8375](https://github.com/MetaMask/core/pull/8375))
|
|
13
|
-
- Export `getAccountAddressRelationship` function and `GetAccountAddressRelationshipRequest` type from the public API ([#8402](https://github.com/MetaMask/core/pull/8402))
|
|
14
|
-
- Add `MantleLayer1GasFeeFlow` with `tokenRatio` conversion for accurate MNT-denominated gas estimates for Mantle and MantleSepolia ([#8386](https://github.com/MetaMask/core/pull/8386))
|
|
15
|
-
|
|
16
10
|
### Changed
|
|
17
11
|
|
|
18
12
|
- Bump `@metamask/accounts-controller` from `^37.1.1` to `^37.2.0` ([#8363](https://github.com/MetaMask/core/pull/8363))
|
|
@@ -26,7 +26,6 @@ const lodash_1 = require("lodash");
|
|
|
26
26
|
const uuid_1 = require("uuid");
|
|
27
27
|
const DefaultGasFeeFlow_1 = require("./gas-flows/DefaultGasFeeFlow.cjs");
|
|
28
28
|
const LineaGasFeeFlow_1 = require("./gas-flows/LineaGasFeeFlow.cjs");
|
|
29
|
-
const MantleLayer1GasFeeFlow_1 = require("./gas-flows/MantleLayer1GasFeeFlow.cjs");
|
|
30
29
|
const OptimismLayer1GasFeeFlow_1 = require("./gas-flows/OptimismLayer1GasFeeFlow.cjs");
|
|
31
30
|
const RandomisedEstimationsGasFeeFlow_1 = require("./gas-flows/RandomisedEstimationsGasFeeFlow.cjs");
|
|
32
31
|
const ScrollLayer1GasFeeFlow_1 = require("./gas-flows/ScrollLayer1GasFeeFlow.cjs");
|
|
@@ -2215,11 +2214,7 @@ async function _TransactionController_approveTransaction(transactionId, traceCon
|
|
|
2215
2214
|
new DefaultGasFeeFlow_1.DefaultGasFeeFlow(),
|
|
2216
2215
|
];
|
|
2217
2216
|
}, _TransactionController_getLayer1GasFeeFlows = function _TransactionController_getLayer1GasFeeFlows() {
|
|
2218
|
-
return [
|
|
2219
|
-
new MantleLayer1GasFeeFlow_1.MantleLayer1GasFeeFlow(),
|
|
2220
|
-
new OptimismLayer1GasFeeFlow_1.OptimismLayer1GasFeeFlow(),
|
|
2221
|
-
new ScrollLayer1GasFeeFlow_1.ScrollLayer1GasFeeFlow(),
|
|
2222
|
-
];
|
|
2217
|
+
return [new OptimismLayer1GasFeeFlow_1.OptimismLayer1GasFeeFlow(), new ScrollLayer1GasFeeFlow_1.ScrollLayer1GasFeeFlow()];
|
|
2223
2218
|
}, _TransactionController_updateTransactionInternal = function _TransactionController_updateTransactionInternal({ transactionId, skipValidation, skipResimulateCheck, }, callback) {
|
|
2224
2219
|
let resimulateResponse;
|
|
2225
2220
|
this.update((state) => {
|