@metamask-previews/transaction-controller 43.0.0-preview-bd04b248 → 43.0.0-preview-3fc797ab

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 CHANGED
@@ -7,13 +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
- - Adds ability of re-simulating transaction depending on the `isFocused` property on `transactionMeta` ([#5189](https://github.com/MetaMask/core/pull/5189))
13
- - `isFocused` property is expected to set by client.
14
- - Re-simulation of transactions will occur every 3 seconds if `isFocused` is `true`.
15
- - Adds `updateTransactionFocus` function to update the `isFocused` property on `transactionMeta`. ([#5189](https://github.com/MetaMask/core/pull/5189))
16
-
17
10
  ## [43.0.0]
18
11
 
19
12
  ### Added
@@ -44,7 +44,6 @@ const IncomingTransactionHelper_1 = require("./helpers/IncomingTransactionHelper
44
44
  const MethodDataHelper_1 = require("./helpers/MethodDataHelper.cjs");
45
45
  const MultichainTrackingHelper_1 = require("./helpers/MultichainTrackingHelper.cjs");
46
46
  const PendingTransactionTracker_1 = require("./helpers/PendingTransactionTracker.cjs");
47
- const ResimulateHelper_1 = require("./helpers/ResimulateHelper.cjs");
48
47
  const logger_1 = require("./logger.cjs");
49
48
  const types_1 = require("./types.cjs");
50
49
  const external_transactions_1 = require("./utils/external-transactions.cjs");
@@ -54,6 +53,7 @@ const gas_flow_1 = require("./utils/gas-flow.cjs");
54
53
  const history_1 = require("./utils/history.cjs");
55
54
  const layer1_gas_fee_flow_1 = require("./utils/layer1-gas-fee-flow.cjs");
56
55
  const nonce_1 = require("./utils/nonce.cjs");
56
+ const resimulate_1 = require("./utils/resimulate.cjs");
57
57
  const retry_1 = require("./utils/retry.cjs");
58
58
  const simulation_1 = require("./utils/simulation.cjs");
59
59
  const swaps_1 = require("./utils/swaps.cjs");
@@ -304,13 +304,6 @@ class TransactionController extends base_controller_1.BaseController {
304
304
  // when transactionsController state changes
305
305
  // check for pending transactions and start polling if there are any
306
306
  this.messagingSystem.subscribe('TransactionController:stateChange', __classPrivateFieldGet(this, _TransactionController_checkForPendingTransactionAndStartPolling, "f"));
307
- new ResimulateHelper_1.ResimulateHelper({
308
- updateSimulationData: __classPrivateFieldGet(this, _TransactionController_instances, "m", _TransactionController_updateSimulationData).bind(this),
309
- onStateChange: (listener) => {
310
- this.messagingSystem.subscribe('TransactionController:stateChange', listener);
311
- },
312
- getTransactions: () => this.state.transactions,
313
- });
314
307
  this.onBootCleanup();
315
308
  __classPrivateFieldGet(this, _TransactionController_checkForPendingTransactionAndStartPolling, "f").call(this);
316
309
  }
@@ -796,22 +789,6 @@ class TransactionController extends base_controller_1.BaseController {
796
789
  this.updateTransaction(updatedTransaction, `Update Editable Params for ${txId}`);
797
790
  return this.getTransaction(txId);
798
791
  }
799
- /**
800
- * Update the isFocus state of a transaction.
801
- * @param transactionId - The ID of the transaction to update.
802
- * @param isFocused - The new focus state.
803
- */
804
- updateTransactionFocus(transactionId, isFocused) {
805
- const transactionMeta = this.getTransaction(transactionId);
806
- if (!transactionMeta) {
807
- throw new Error(`Transaction with id ${transactionId} not found`);
808
- }
809
- const updatedTransactionMeta = {
810
- ...transactionMeta,
811
- isFocused,
812
- };
813
- this.updateTransaction(updatedTransactionMeta, 'TransactionController#updateTransactionFocus - Transaction focus updated');
814
- }
815
792
  /**
816
793
  * Signs and returns the raw transaction data for provided transaction params list.
817
794
  *
@@ -1892,7 +1869,7 @@ _TransactionController_internalEvents = new WeakMap(), _TransactionController_me
1892
1869
  (0, validation_1.validateTxParams)(transactionMeta.txParams);
1893
1870
  }
1894
1871
  if (!skipResimulateCheck && __classPrivateFieldGet(this, _TransactionController_isSimulationEnabled, "f").call(this)) {
1895
- resimulateResponse = (0, ResimulateHelper_1.shouldResimulate)(originalTransactionMeta, transactionMeta);
1872
+ resimulateResponse = (0, resimulate_1.shouldResimulate)(originalTransactionMeta, transactionMeta);
1896
1873
  }
1897
1874
  const shouldSkipHistory = this.isHistoryDisabled || skipHistory;
1898
1875
  if (!shouldSkipHistory) {
@@ -1974,7 +1951,7 @@ _TransactionController_internalEvents = new WeakMap(), _TransactionController_me
1974
1951
  }));
1975
1952
  if (blockTime &&
1976
1953
  prevSimulationData &&
1977
- (0, ResimulateHelper_1.hasSimulationDataChanged)(prevSimulationData, simulationData)) {
1954
+ (0, resimulate_1.hasSimulationDataChanged)(prevSimulationData, simulationData)) {
1978
1955
  simulationData = {
1979
1956
  ...simulationData,
1980
1957
  isUpdatedAfterSecurityCheck: true,