mirror of
https://github.com/trezor/trezor-wallet
synced 2025-01-05 13:51:01 +00:00
45 lines
1.9 KiB
JavaScript
45 lines
1.9 KiB
JavaScript
/* @flow */
|
|
'use strict';
|
|
|
|
export const CLOSE_MODAL: string = 'action__close_modal';
|
|
|
|
export const ON_PIN_SUBMIT: string = 'action__on_pin_submit';
|
|
|
|
export const ON_PASSPHRASE_SUBMIT: string = 'action__on_passphrase_submit';
|
|
|
|
|
|
export const ON_ADDRESS_CHANGE: string = 'send__on_address_change';
|
|
export const ON_AMOUNT_CHANGE: string = 'send__on_amount_change';
|
|
export const ON_FEE_LEVEL_CHANGE: string = 'send__on_fee_level_change';
|
|
export const ON_GAS_PRICE_CHANGE: string = 'send__on_gas_price_change';
|
|
export const ON_GAS_LIMIT_CHANGE: string = 'send__on_gas_limit_change';
|
|
export const ON_TX_DATA_CHANGE: string = 'send__on_data_change';
|
|
export const ON_TX_SEND: string = 'send__on_send';
|
|
export const ON_GAS_PRICE_UPDATE: string = 'send__on_gas_price_update';
|
|
|
|
|
|
export const ADDRESS_CREATE: string = 'address__create';
|
|
export const ADDRESS_DELETE: string = 'address__delete';
|
|
export const ADDRESS_SET_BALANCE: string = 'address2__set_balance';
|
|
export const ADDRESS_SET_HISTORY: string = 'address__set_history';
|
|
export const ADDRESS_UPDATE_BALANCE: string = 'address__update_balance';
|
|
export const ADDRESS_ADD_TO_HISTORY: string = 'address__add_to_history';
|
|
|
|
export const TX_STATUS_OK: string = 'tx__status_ok';
|
|
export const TX_STATUS_ERROR: string = 'tx__status_error';
|
|
export const TX_STATUS_UNKNOWN: string = 'tx__status_unknown';
|
|
export const TX_CONFIRMED: string = 'tx__confirmed';
|
|
|
|
|
|
|
|
export const TOKENS_TOGGLE_SUMMARY: string = 'tokens_toggle_summary';
|
|
|
|
export const TOKENS_SEARCH: string = 'tokens_search';
|
|
|
|
|
|
export const TOKENS_CUSTOM_TOGGLE: string = 'tokens_custom_toggle';
|
|
export const TOKENS_CUSTOM_ADDRESS_CHANGE: string = 'tokens_custom_address_change';
|
|
export const TOKENS_CUSTOM_NAME_CHANGE: string = 'tokens_custom_name_change';
|
|
export const TOKENS_CUSTOM_SHORTCUT_CHANGE: string = 'tokens_custom_shortcut_change';
|
|
export const TOKENS_CUSTOM_DECIMAL_CHANGE: string = 'tokens_custom_decimal_change';
|
|
export const TOKENS_CUSTOM_ADD: string = 'tokens_custom_add'; |