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

12 lines
685 B
JavaScript
Raw Permalink Normal View History

2018-02-20 09:30:36 +00:00
/* @flow */
2018-07-30 10:52:13 +00:00
2018-04-16 21:19:50 +00:00
export const START: 'discovery__start' = 'discovery__start';
export const STOP: 'discovery__stop' = 'discovery__stop';
export const FIRMWARE_NOT_SUPPORTED: 'discovery__fw_not_supported' = 'discovery__fw_not_supported';
export const FIRMWARE_OUTDATED: 'discovery__fw_outdated' = 'discovery__fw_outdated';
2018-04-16 21:19:50 +00:00
export const COMPLETE: 'discovery__complete' = 'discovery__complete';
2018-05-07 11:25:46 +00:00
export const WAITING_FOR_DEVICE: 'discovery__waiting_for_device' = 'discovery__waiting_for_device';
2019-03-04 12:33:02 +00:00
export const WAITING_FOR_BLOCKCHAIN: 'discovery__waiting_for_blockchain' =
'discovery__waiting_for_blockchain';
export const FROM_STORAGE: 'discovery__from_storage' = 'discovery__from_storage';