@metamask-previews/transaction-controller 64.0.0-preview-26cb9fc → 64.0.0-preview-197e1b7

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.
Files changed (40) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/TransactionController.cjs +6 -1
  3. package/dist/TransactionController.cjs.map +1 -1
  4. package/dist/TransactionController.d.cts.map +1 -1
  5. package/dist/TransactionController.d.mts.map +1 -1
  6. package/dist/TransactionController.mjs +6 -1
  7. package/dist/TransactionController.mjs.map +1 -1
  8. package/dist/constants.cjs +2 -0
  9. package/dist/constants.cjs.map +1 -1
  10. package/dist/constants.d.cts +2 -0
  11. package/dist/constants.d.cts.map +1 -1
  12. package/dist/constants.d.mts +2 -0
  13. package/dist/constants.d.mts.map +1 -1
  14. package/dist/constants.mjs +2 -0
  15. package/dist/constants.mjs.map +1 -1
  16. package/dist/gas-flows/MantleLayer1GasFeeFlow.cjs +46 -0
  17. package/dist/gas-flows/MantleLayer1GasFeeFlow.cjs.map +1 -0
  18. package/dist/gas-flows/MantleLayer1GasFeeFlow.d.cts +20 -0
  19. package/dist/gas-flows/MantleLayer1GasFeeFlow.d.cts.map +1 -0
  20. package/dist/gas-flows/MantleLayer1GasFeeFlow.d.mts +20 -0
  21. package/dist/gas-flows/MantleLayer1GasFeeFlow.d.mts.map +1 -0
  22. package/dist/gas-flows/MantleLayer1GasFeeFlow.mjs +42 -0
  23. package/dist/gas-flows/MantleLayer1GasFeeFlow.mjs.map +1 -0
  24. package/dist/gas-flows/OracleLayer1GasFeeFlow.cjs +16 -1
  25. package/dist/gas-flows/OracleLayer1GasFeeFlow.cjs.map +1 -1
  26. package/dist/gas-flows/OracleLayer1GasFeeFlow.d.cts +13 -0
  27. package/dist/gas-flows/OracleLayer1GasFeeFlow.d.cts.map +1 -1
  28. package/dist/gas-flows/OracleLayer1GasFeeFlow.d.mts +13 -0
  29. package/dist/gas-flows/OracleLayer1GasFeeFlow.d.mts.map +1 -1
  30. package/dist/gas-flows/OracleLayer1GasFeeFlow.mjs +16 -1
  31. package/dist/gas-flows/OracleLayer1GasFeeFlow.mjs.map +1 -1
  32. package/dist/index.cjs +3 -1
  33. package/dist/index.cjs.map +1 -1
  34. package/dist/index.d.cts +2 -0
  35. package/dist/index.d.cts.map +1 -1
  36. package/dist/index.d.mts +2 -0
  37. package/dist/index.d.mts.map +1 -1
  38. package/dist/index.mjs +1 -0
  39. package/dist/index.mjs.map +1 -1
  40. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ 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
+
10
16
  ### Changed
11
17
 
12
18
  - Bump `@metamask/accounts-controller` from `^37.1.1` to `^37.2.0` ([#8363](https://github.com/MetaMask/core/pull/8363))
@@ -26,6 +26,7 @@ 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");
29
30
  const OptimismLayer1GasFeeFlow_1 = require("./gas-flows/OptimismLayer1GasFeeFlow.cjs");
30
31
  const RandomisedEstimationsGasFeeFlow_1 = require("./gas-flows/RandomisedEstimationsGasFeeFlow.cjs");
31
32
  const ScrollLayer1GasFeeFlow_1 = require("./gas-flows/ScrollLayer1GasFeeFlow.cjs");
@@ -2214,7 +2215,11 @@ async function _TransactionController_approveTransaction(transactionId, traceCon
2214
2215
  new DefaultGasFeeFlow_1.DefaultGasFeeFlow(),
2215
2216
  ];
2216
2217
  }, _TransactionController_getLayer1GasFeeFlows = function _TransactionController_getLayer1GasFeeFlows() {
2217
- return [new OptimismLayer1GasFeeFlow_1.OptimismLayer1GasFeeFlow(), new ScrollLayer1GasFeeFlow_1.ScrollLayer1GasFeeFlow()];
2218
+ return [
2219
+ new MantleLayer1GasFeeFlow_1.MantleLayer1GasFeeFlow(),
2220
+ new OptimismLayer1GasFeeFlow_1.OptimismLayer1GasFeeFlow(),
2221
+ new ScrollLayer1GasFeeFlow_1.ScrollLayer1GasFeeFlow(),
2222
+ ];
2218
2223
  }, _TransactionController_updateTransactionInternal = function _TransactionController_updateTransactionInternal({ transactionId, skipValidation, skipResimulateCheck, }, callback) {
2219
2224
  let resimulateResponse;
2220
2225
  this.update((state) => {