1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/components/app/transaction-activity-log/transaction-activity-log.constants.js
2021-04-28 14:53:59 -05:00

14 lines
745 B
JavaScript

export const TRANSACTION_CREATED_EVENT = 'transactionCreated';
export const TRANSACTION_SUBMITTED_EVENT = 'transactionSubmitted';
export const TRANSACTION_RESUBMITTED_EVENT = 'transactionResubmitted';
export const TRANSACTION_CONFIRMED_EVENT = 'transactionConfirmed';
export const TRANSACTION_DROPPED_EVENT = 'transactionDropped';
export const TRANSACTION_UPDATED_EVENT = 'transactionUpdated';
export const TRANSACTION_ERRORED_EVENT = 'transactionErrored';
export const TRANSACTION_CANCEL_ATTEMPTED_EVENT = 'transactionCancelAttempted';
export const TRANSACTION_CANCEL_SUCCESS_EVENT = 'transactionCancelSuccess';
export const SUBMITTED_STATUS = 'submitted';
export const CONFIRMED_STATUS = 'confirmed';
export const DROPPED_STATUS = 'dropped';