1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-15 12:59:09 +00:00
trezor-wallet/src/actions/constants/pendingTx.js

8 lines
376 B
JavaScript
Raw Permalink Normal View History

2018-04-23 10:20:15 +00:00
/* @flow */
2018-07-30 10:52:13 +00:00
2018-04-23 10:20:15 +00:00
export const FROM_STORAGE: 'pending__from_storage' = 'pending__from_storage';
export const ADD: 'pending__add' = 'pending__add';
2018-05-23 17:13:24 +00:00
export const TX_RESOLVED: 'pending__tx_resolved' = 'pending__tx_resolved';
2018-09-26 16:46:49 +00:00
export const TX_REJECTED: 'pending__tx_rejected' = 'pending__tx_rejected';
2019-03-04 12:33:02 +00:00
export const TX_TOKEN_ERROR: 'pending__tx_token_error' = 'pending__tx_token_error';