mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-12 11:28:56 +00:00
10 lines
445 B
JavaScript
10 lines
445 B
JavaScript
/* @flow */
|
|
|
|
|
|
export const START: 'web3__start' = 'web3__start';
|
|
export const STOP: 'web3__stop' = 'web3__stop';
|
|
export const CREATE: 'web3__create' = 'web3__create';
|
|
export const READY: 'web3__ready' = 'web3__ready';
|
|
export const BLOCK_UPDATED: 'web3__block_updated' = 'web3__block_updated';
|
|
export const GAS_PRICE_UPDATED: 'web3__gas_price_updated' = 'web3__gas_price_updated';
|
|
export const DISCONNECT: 'web3__disconnect' = 'web3__disconnect'; |