@metamask/transaction-controller 10.0.0 → 12.0.0

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 (44) hide show
  1. package/CHANGELOG.md +50 -4
  2. package/dist/EtherscanRemoteTransactionSource.d.ts +3 -3
  3. package/dist/EtherscanRemoteTransactionSource.d.ts.map +1 -1
  4. package/dist/EtherscanRemoteTransactionSource.js +48 -25
  5. package/dist/EtherscanRemoteTransactionSource.js.map +1 -1
  6. package/dist/IncomingTransactionHelper.d.ts +4 -3
  7. package/dist/IncomingTransactionHelper.d.ts.map +1 -1
  8. package/dist/IncomingTransactionHelper.js +41 -31
  9. package/dist/IncomingTransactionHelper.js.map +1 -1
  10. package/dist/TransactionController.d.ts +77 -26
  11. package/dist/TransactionController.d.ts.map +1 -1
  12. package/dist/TransactionController.js +241 -124
  13. package/dist/TransactionController.js.map +1 -1
  14. package/dist/constants.d.ts +5 -19
  15. package/dist/constants.d.ts.map +1 -1
  16. package/dist/constants.js +40 -45
  17. package/dist/constants.js.map +1 -1
  18. package/dist/etherscan.d.ts +5 -6
  19. package/dist/etherscan.d.ts.map +1 -1
  20. package/dist/etherscan.js +7 -14
  21. package/dist/etherscan.js.map +1 -1
  22. package/dist/external-transactions.js +5 -5
  23. package/dist/external-transactions.js.map +1 -1
  24. package/dist/history.d.ts +15 -0
  25. package/dist/history.d.ts.map +1 -0
  26. package/dist/history.js +75 -0
  27. package/dist/history.js.map +1 -0
  28. package/dist/logger.d.ts +6 -0
  29. package/dist/logger.d.ts.map +1 -0
  30. package/dist/logger.js +8 -0
  31. package/dist/logger.js.map +1 -0
  32. package/dist/transaction-type.d.ts +14 -0
  33. package/dist/transaction-type.d.ts.map +1 -0
  34. package/dist/transaction-type.js +114 -0
  35. package/dist/transaction-type.js.map +1 -0
  36. package/dist/types.d.ts +227 -27
  37. package/dist/types.d.ts.map +1 -1
  38. package/dist/types.js +99 -1
  39. package/dist/types.js.map +1 -1
  40. package/dist/utils.d.ts +16 -18
  41. package/dist/utils.d.ts.map +1 -1
  42. package/dist/utils.js +44 -48
  43. package/dist/utils.js.map +1 -1
  44. package/package.json +8 -4
@@ -7,7 +7,8 @@ import { BaseController } from '@metamask/base-controller';
7
7
  import type { BlockTracker, NetworkState, Provider } from '@metamask/network-controller';
8
8
  import type { Hex } from '@metamask/utils';
9
9
  import { EventEmitter } from 'events';
10
- import type { Transaction, TransactionMeta, TransactionReceipt, WalletDevice } from './types';
10
+ import type { TransactionParams, TransactionMeta, TransactionReceipt, SendFlowHistoryEntry, WalletDevice } from './types';
11
+ import { TransactionType } from './types';
11
12
  export declare const HARDFORK = Hardfork.London;
12
13
  /**
13
14
  * @type Result
@@ -18,15 +19,6 @@ export interface Result {
18
19
  result: Promise<string>;
19
20
  transactionMeta: TransactionMeta;
20
21
  }
21
- /**
22
- * @type Fetch All Options
23
- * @property fromBlock - String containing a specific block decimal number
24
- * @property etherscanApiKey - API key to be used to fetch token transactions
25
- */
26
- export interface FetchAllOptions {
27
- fromBlock?: string;
28
- etherscanApiKey?: string;
29
- }
30
22
  export interface GasPriceValue {
31
23
  gasPrice: string;
32
24
  }
@@ -44,7 +36,7 @@ export interface FeeMarketEIP1559Values {
44
36
  */
45
37
  export interface TransactionConfig extends BaseConfig {
46
38
  interval: number;
47
- sign?: (transaction: Transaction, from: string) => Promise<any>;
39
+ sign?: (txParams: TransactionParams, from: string) => Promise<any>;
48
40
  txHistoryLimit: number;
49
41
  }
50
42
  /**
@@ -99,6 +91,8 @@ export declare type TransactionControllerMessenger = RestrictedControllerMesseng
99
91
  */
100
92
  export declare class TransactionController extends BaseController<TransactionConfig, TransactionState> {
101
93
  private ethQuery;
94
+ private readonly isHistoryDisabled;
95
+ private readonly isSendFlowHistoryDisabled;
102
96
  private readonly nonceTracker;
103
97
  private registry;
104
98
  private readonly provider;
@@ -126,27 +120,31 @@ export declare class TransactionController extends BaseController<TransactionCon
126
120
  *
127
121
  * @param options - The controller options.
128
122
  * @param options.blockTracker - The block tracker used to poll for new blocks data.
123
+ * @param options.disableHistory - Whether to disable storing history in transaction metadata.
124
+ * @param options.disableSendFlowHistory - Explicitly disable transaction metadata history.
129
125
  * @param options.getNetworkState - Gets the state of the network controller.
130
126
  * @param options.getSelectedAddress - Gets the address of the currently selected account.
131
127
  * @param options.incomingTransactions - Configuration options for incoming transaction support.
132
- * @param options.incomingTransactions.apiKey - An optional API key to use when fetching remote transaction data.
133
128
  * @param options.incomingTransactions.includeTokenTransfers - Whether or not to include ERC20 token transfers.
134
129
  * @param options.incomingTransactions.isEnabled - Whether or not incoming transaction retrieval is enabled.
135
- * @param options.incomingTransactions.updateTransactions - Whether or not to update local transactions using remote transaction data.
130
+ * @param options.incomingTransactions.queryEntireHistory - Whether to initially query the entire transaction history or only recent blocks.
131
+ * @param options.incomingTransactions.updateTransactions - Whether to update local transactions using remote transaction data.
136
132
  * @param options.messenger - The controller messenger.
137
133
  * @param options.onNetworkStateChange - Allows subscribing to network controller state changes.
138
134
  * @param options.provider - The provider used to create the underlying EthQuery instance.
139
135
  * @param config - Initial options used to configure this controller.
140
136
  * @param state - Initial state to set on this controller.
141
137
  */
142
- constructor({ blockTracker, getNetworkState, getSelectedAddress, incomingTransactions, messenger, onNetworkStateChange, provider, }: {
138
+ constructor({ blockTracker, disableHistory, disableSendFlowHistory, getNetworkState, getSelectedAddress, incomingTransactions, messenger, onNetworkStateChange, provider, }: {
143
139
  blockTracker: BlockTracker;
140
+ disableHistory: boolean;
141
+ disableSendFlowHistory: boolean;
144
142
  getNetworkState: () => NetworkState;
145
143
  getSelectedAddress: () => string;
146
144
  incomingTransactions: {
147
- apiKey?: string;
148
145
  includeTokenTransfers?: boolean;
149
146
  isEnabled?: () => boolean;
147
+ queryEntireHistory?: boolean;
150
148
  updateTransactions?: boolean;
151
149
  };
152
150
  messenger: TransactionControllerMessenger;
@@ -171,21 +169,25 @@ export declare class TransactionController extends BaseController<TransactionCon
171
169
  * unique transaction id will be generated, and gas and gasPrice will be calculated
172
170
  * if not provided. If A `<tx.id>:unapproved` hub event will be emitted once added.
173
171
  *
174
- * @param transaction - The transaction object to add.
172
+ * @param txParams - Standard parameters for an Ethereum transaction.
175
173
  * @param opts - Additional options to control how the transaction is added.
176
174
  * @param opts.actionId - Unique ID to prevent duplicate requests.
177
175
  * @param opts.deviceConfirmedOn - An enum to indicate what device confirmed the transaction.
178
176
  * @param opts.origin - The origin of the transaction request, such as a dApp hostname.
179
177
  * @param opts.requireApproval - Whether the transaction requires approval by the user, defaults to true unless explicitly disabled.
180
178
  * @param opts.securityAlertResponse - Response from security validator.
179
+ * @param opts.sendFlowHistory - The sendFlowHistory entries to add.
180
+ * @param opts.type - Type of transaction to add, such as 'cancel' or 'swap'.
181
181
  * @returns Object containing a promise resolving to the transaction hash if approved.
182
182
  */
183
- addTransaction(transaction: Transaction, { actionId, deviceConfirmedOn, origin, requireApproval, securityAlertResponse, }?: {
183
+ addTransaction(txParams: TransactionParams, { actionId, deviceConfirmedOn, origin, requireApproval, securityAlertResponse, sendFlowHistory, type, }?: {
184
184
  actionId?: string;
185
185
  deviceConfirmedOn?: WalletDevice;
186
186
  origin?: string;
187
187
  requireApproval?: boolean | undefined;
188
188
  securityAlertResponse?: Record<string, unknown>;
189
+ sendFlowHistory?: SendFlowHistoryEntry[];
190
+ type?: TransactionType;
189
191
  }): Promise<Result>;
190
192
  startIncomingTransactionPolling(): void;
191
193
  stopIncomingTransactionPolling(): void;
@@ -198,24 +200,24 @@ export declare class TransactionController extends BaseController<TransactionCon
198
200
  * Attempts to cancel a transaction based on its ID by setting its status to "rejected"
199
201
  * and emitting a `<tx.id>:finished` hub event.
200
202
  *
201
- * @param transactionID - The ID of the transaction to cancel.
203
+ * @param transactionId - The ID of the transaction to cancel.
202
204
  * @param gasValues - The gas values to use for the cancellation transaction.
203
205
  * @param options - The options for the cancellation transaction.
204
206
  * @param options.estimatedBaseFee - The estimated base fee of the transaction.
205
207
  */
206
- stopTransaction(transactionID: string, gasValues?: GasPriceValue | FeeMarketEIP1559Values, { estimatedBaseFee }?: {
208
+ stopTransaction(transactionId: string, gasValues?: GasPriceValue | FeeMarketEIP1559Values, { estimatedBaseFee }?: {
207
209
  estimatedBaseFee?: string;
208
210
  }): Promise<void>;
209
211
  /**
210
212
  * Attempts to speed up a transaction increasing transaction gasPrice by ten percent.
211
213
  *
212
- * @param transactionID - The ID of the transaction to speed up.
214
+ * @param transactionId - The ID of the transaction to speed up.
213
215
  * @param gasValues - The gas values to use for the speed up transaction.
214
216
  * @param options - The options for the speed up transaction.
215
217
  * @param options.actionId - Unique ID to prevent duplicate requests
216
218
  * @param options.estimatedBaseFee - The estimated base fee of the transaction.
217
219
  */
218
- speedUpTransaction(transactionID: string, gasValues?: GasPriceValue | FeeMarketEIP1559Values, { actionId, estimatedBaseFee, }?: {
220
+ speedUpTransaction(transactionId: string, gasValues?: GasPriceValue | FeeMarketEIP1559Values, { actionId, estimatedBaseFee, }?: {
219
221
  actionId?: string;
220
222
  estimatedBaseFee?: string;
221
223
  }): Promise<void>;
@@ -225,7 +227,7 @@ export declare class TransactionController extends BaseController<TransactionCon
225
227
  * @param transaction - The transaction to estimate gas for.
226
228
  * @returns The gas and gas price.
227
229
  */
228
- estimateGas(transaction: Transaction): Promise<{
230
+ estimateGas(transaction: TransactionParams): Promise<{
229
231
  gas: string;
230
232
  gasPrice: any;
231
233
  estimateGasError?: undefined;
@@ -243,8 +245,9 @@ export declare class TransactionController extends BaseController<TransactionCon
243
245
  * Updates an existing transaction in state.
244
246
  *
245
247
  * @param transactionMeta - The new transaction to store in state.
248
+ * @param note - A note or update reason to include in the transaction history.
246
249
  */
247
- updateTransaction(transactionMeta: TransactionMeta): void;
250
+ updateTransaction(transactionMeta: TransactionMeta, note: string): void;
248
251
  /**
249
252
  * Removes all transactions from state, optionally based on the current network.
250
253
  *
@@ -264,6 +267,46 @@ export declare class TransactionController extends BaseController<TransactionCon
264
267
  * @param baseFeePerGas - Base fee per gas of the external transaction.
265
268
  */
266
269
  confirmExternalTransaction(transactionMeta: TransactionMeta, transactionReceipt: TransactionReceipt, baseFeePerGas: Hex): Promise<void>;
270
+ /**
271
+ * Append new send flow history to a transaction.
272
+ *
273
+ * @param transactionID - The ID of the transaction to update.
274
+ * @param currentSendFlowHistoryLength - The length of the current sendFlowHistory array.
275
+ * @param sendFlowHistoryToAdd - The sendFlowHistory entries to add.
276
+ * @returns The updated transactionMeta.
277
+ */
278
+ updateTransactionSendFlowHistory(transactionID: string, currentSendFlowHistoryLength: number, sendFlowHistoryToAdd: SendFlowHistoryEntry[]): TransactionMeta;
279
+ /**
280
+ * Update the gas values of a transaction.
281
+ *
282
+ * @param transactionId - The ID of the transaction to update.
283
+ * @param gasValues - Gas values to update.
284
+ * @param gasValues.gas - Same as transaction.gasLimit.
285
+ * @param gasValues.gasLimit - Maxmimum number of units of gas to use for this transaction.
286
+ * @param gasValues.gasPrice - Price per gas for legacy transactions.
287
+ * @param gasValues.maxPriorityFeePerGas - Maximum amount per gas to give to validator as incentive.
288
+ * @param gasValues.maxFeePerGas - Maximum amount per gas to pay for the transaction, including the priority fee.
289
+ * @param gasValues.estimateUsed - Which estimate level was used.
290
+ * @param gasValues.estimateSuggested - Which estimate level that the API suggested.
291
+ * @param gasValues.defaultGasEstimates - The default estimate for gas.
292
+ * @param gasValues.originalGasEstimate - Original estimate for gas.
293
+ * @param gasValues.userEditedGasLimit - The gas limit supplied by user.
294
+ * @param gasValues.userFeeLevel - Estimate level user selected.
295
+ * @returns The updated transactionMeta.
296
+ */
297
+ updateTransactionGasFees(transactionId: string, { defaultGasEstimates, estimateUsed, estimateSuggested, gas, gasLimit, gasPrice, maxPriorityFeePerGas, maxFeePerGas, originalGasEstimate, userEditedGasLimit, userFeeLevel, }: {
298
+ defaultGasEstimates?: string;
299
+ estimateUsed?: string;
300
+ estimateSuggested?: string;
301
+ gas?: string;
302
+ gasLimit?: string;
303
+ gasPrice?: string;
304
+ maxPriorityFeePerGas?: string;
305
+ maxFeePerGas?: string;
306
+ originalGasEstimate?: string;
307
+ userEditedGasLimit?: boolean;
308
+ userFeeLevel?: string;
309
+ }): TransactionMeta;
267
310
  private processApproval;
268
311
  /**
269
312
  * Approves a transaction and updates it's status in state. If this is not a
@@ -271,14 +314,14 @@ export declare class TransactionController extends BaseController<TransactionCon
271
314
  * using the sign configuration property, then published to the blockchain.
272
315
  * A `<tx.id>:finished` hub event is fired after success or failure.
273
316
  *
274
- * @param transactionID - The ID of the transaction to approve.
317
+ * @param transactionId - The ID of the transaction to approve.
275
318
  */
276
319
  private approveTransaction;
277
320
  /**
278
321
  * Cancels a transaction based on its ID by setting its status to "rejected"
279
322
  * and emitting a `<tx.id>:finished` hub event.
280
323
  *
281
- * @param transactionID - The ID of the transaction to cancel.
324
+ * @param transactionId - The ID of the transaction to cancel.
282
325
  */
283
326
  private cancelTransaction;
284
327
  /**
@@ -331,7 +374,7 @@ export declare class TransactionController extends BaseController<TransactionCon
331
374
  private getTransaction;
332
375
  private getApprovalId;
333
376
  private isTransactionCompleted;
334
- private getChainAndNetworkId;
377
+ private getChainId;
335
378
  private prepareUnsignedEthTx;
336
379
  /**
337
380
  * `@ethereumjs/tx` uses `@ethereumjs/common` as a configuration tool for
@@ -373,6 +416,14 @@ export declare class TransactionController extends BaseController<TransactionCon
373
416
  */
374
417
  private getTransactionWithActionId;
375
418
  private waitForTransactionFinished;
419
+ /**
420
+ * Updates the r, s, and v properties of a TransactionMeta object
421
+ * with values from a signed transaction.
422
+ *
423
+ * @param transactionMeta - The TransactionMeta object to update.
424
+ * @param signedTx - The encompassing type for all transaction types containing r, s, and v values.
425
+ */
426
+ private updateTransactionMetaRSV;
376
427
  }
377
428
  export default TransactionController;
378
429
  //# sourceMappingURL=TransactionController.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TransactionController.d.ts","sourceRoot":"","sources":["../src/TransactionController.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"TransactionController.d.ts","sourceRoot":"","sources":["../src/TransactionController.ts"],"names":[],"mappings":"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"}