@metamask-previews/transaction-controller 44.0.0-preview-43593c4e → 44.0.0-preview-37653b42
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 -7
- package/dist/TransactionController.cjs +3 -38
- package/dist/TransactionController.cjs.map +1 -1
- package/dist/TransactionController.d.cts +0 -7
- package/dist/TransactionController.d.cts.map +1 -1
- package/dist/TransactionController.d.mts +0 -7
- package/dist/TransactionController.d.mts.map +1 -1
- package/dist/TransactionController.mjs +1 -36
- package/dist/TransactionController.mjs.map +1 -1
- package/dist/types.cjs.map +1 -1
- package/dist/types.d.cts +0 -4
- package/dist/types.d.cts.map +1 -1
- package/dist/types.d.mts +0 -4
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs.map +1 -1
- package/dist/{helpers/ResimulateHelper.cjs → utils/resimulate.cjs} +4 -96
- package/dist/utils/resimulate.cjs.map +1 -0
- package/dist/{helpers/ResimulateHelper.d.cts → utils/resimulate.d.cts} +1 -13
- package/dist/utils/resimulate.d.cts.map +1 -0
- package/dist/{helpers/ResimulateHelper.d.mts → utils/resimulate.d.mts} +1 -13
- package/dist/utils/resimulate.d.mts.map +1 -0
- package/dist/{helpers/ResimulateHelper.mjs → utils/resimulate.mjs} +5 -96
- package/dist/utils/resimulate.mjs.map +1 -0
- package/package.json +1 -1
- package/dist/helpers/ResimulateHelper.cjs.map +0 -1
- package/dist/helpers/ResimulateHelper.d.cts.map +0 -1
- package/dist/helpers/ResimulateHelper.d.mts.map +0 -1
- package/dist/helpers/ResimulateHelper.mjs.map +0 -1
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 `isActive` property on `transactionMeta` ([#5189](https://github.com/MetaMask/core/pull/5189))
|
|
13
|
-
- `isActive` property is expected to set by client.
|
|
14
|
-
- Re-simulation of transactions will occur every 3 seconds if `isActive` is `true`.
|
|
15
|
-
- Adds `setTransactionActive` function to update the `isActive` property on `transactionMeta`. ([#5189](https://github.com/MetaMask/core/pull/5189))
|
|
16
|
-
|
|
17
10
|
## [44.0.0]
|
|
18
11
|
|
|
19
12
|
### Changed
|
|
@@ -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,20 +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
|
-
simulateTransaction: __classPrivateFieldGet(this, _TransactionController_instances, "m", _TransactionController_updateSimulationData).bind(this),
|
|
309
|
-
onTransactionsUpdate: (listener) => {
|
|
310
|
-
this.messagingSystem.subscribe('TransactionController:stateChange', (_newState, patches) => {
|
|
311
|
-
const hasTransactionPatches = patches.some((patch) => {
|
|
312
|
-
return patch.path.includes('transactions');
|
|
313
|
-
});
|
|
314
|
-
if (hasTransactionPatches) {
|
|
315
|
-
listener();
|
|
316
|
-
}
|
|
317
|
-
});
|
|
318
|
-
},
|
|
319
|
-
getTransactions: () => this.state.transactions,
|
|
320
|
-
});
|
|
321
307
|
this.onBootCleanup();
|
|
322
308
|
__classPrivateFieldGet(this, _TransactionController_checkForPendingTransactionAndStartPolling, "f").call(this);
|
|
323
309
|
}
|
|
@@ -803,27 +789,6 @@ class TransactionController extends base_controller_1.BaseController {
|
|
|
803
789
|
this.updateTransaction(updatedTransaction, `Update Editable Params for ${txId}`);
|
|
804
790
|
return this.getTransaction(txId);
|
|
805
791
|
}
|
|
806
|
-
/**
|
|
807
|
-
* Update the isActive state of a transaction.
|
|
808
|
-
*
|
|
809
|
-
* @param transactionId - The ID of the transaction to update.
|
|
810
|
-
* @param isActive - The active state.
|
|
811
|
-
*/
|
|
812
|
-
setTransactionActive(transactionId, isActive) {
|
|
813
|
-
const transactionMeta = this.getTransaction(transactionId);
|
|
814
|
-
if (!transactionMeta) {
|
|
815
|
-
throw new Error(`Transaction with id ${transactionId} not found`);
|
|
816
|
-
}
|
|
817
|
-
__classPrivateFieldGet(this, _TransactionController_instances, "m", _TransactionController_updateTransactionInternal).call(this, {
|
|
818
|
-
transactionId,
|
|
819
|
-
note: 'TransactionController#setTransactionActive - Transaction isActive updated',
|
|
820
|
-
skipHistory: true,
|
|
821
|
-
skipValidation: true,
|
|
822
|
-
skipResimulateCheck: true,
|
|
823
|
-
}, (updatedTransactionMeta) => {
|
|
824
|
-
updatedTransactionMeta.isActive = isActive;
|
|
825
|
-
});
|
|
826
|
-
}
|
|
827
792
|
/**
|
|
828
793
|
* Signs and returns the raw transaction data for provided transaction params list.
|
|
829
794
|
*
|
|
@@ -1904,7 +1869,7 @@ _TransactionController_internalEvents = new WeakMap(), _TransactionController_me
|
|
|
1904
1869
|
(0, validation_1.validateTxParams)(transactionMeta.txParams);
|
|
1905
1870
|
}
|
|
1906
1871
|
if (!skipResimulateCheck && __classPrivateFieldGet(this, _TransactionController_isSimulationEnabled, "f").call(this)) {
|
|
1907
|
-
resimulateResponse = (0,
|
|
1872
|
+
resimulateResponse = (0, resimulate_1.shouldResimulate)(originalTransactionMeta, transactionMeta);
|
|
1908
1873
|
}
|
|
1909
1874
|
const shouldSkipHistory = this.isHistoryDisabled || skipHistory;
|
|
1910
1875
|
if (!shouldSkipHistory) {
|
|
@@ -1986,7 +1951,7 @@ _TransactionController_internalEvents = new WeakMap(), _TransactionController_me
|
|
|
1986
1951
|
}));
|
|
1987
1952
|
if (blockTime &&
|
|
1988
1953
|
prevSimulationData &&
|
|
1989
|
-
(0,
|
|
1954
|
+
(0, resimulate_1.hasSimulationDataChanged)(prevSimulationData, simulationData)) {
|
|
1990
1955
|
simulationData = {
|
|
1991
1956
|
...simulationData,
|
|
1992
1957
|
isUpdatedAfterSecurityCheck: true,
|