From c5bb32684dcbd194e2082efcb4004bf6d9312f71 Mon Sep 17 00:00:00 2001 From: Szymon Lesisz Date: Wed, 13 Jun 2018 19:33:24 +0200 Subject: [PATCH] trezor-connect flow from node_modules --- .flowconfig | 5 +- src/flowtype/trezor-connect.js | 246 --------------------------------- 2 files changed, 3 insertions(+), 248 deletions(-) delete mode 100644 src/flowtype/trezor-connect.js diff --git a/.flowconfig b/.flowconfig index ea6ba31f..ab10939a 100644 --- a/.flowconfig +++ b/.flowconfig @@ -1,4 +1,5 @@ [include] +.*/node_modules/trezor-connect [ignore] .*/node_modules/rc-util/.* @@ -6,7 +7,6 @@ .*/node_modules/redux/.* .*/node_modules/react-router/.* .*/node_modules/react-router-redux/.* -.*/node_modules/trezor-connect/.* .*/_old/.* .*/src/solidity/.* @@ -20,7 +20,8 @@ ./src/flowtype/npm/ethereum-types.js ./src/flowtype/npm/web3.js ./src/flowtype/css.js -./src/flowtype/trezor-connect.js + +./node_modules/trezor-connect/flowtype/ diff --git a/src/flowtype/trezor-connect.js b/src/flowtype/trezor-connect.js deleted file mode 100644 index d8f89b29..00000000 --- a/src/flowtype/trezor-connect.js +++ /dev/null @@ -1,246 +0,0 @@ -declare module 'trezor-connect' { - - // CONSTANTS (from trezor-connect/src/js/constants) - - declare type T_DEVICE_EVENT = 'DEVICE_EVENT'; - declare type T_DEVICE = { - CONNECT: 'device__connect', - CONNECT_UNACQUIRED: 'device__connect_unacquired', - DISCONNECT: 'device__disconnect', - DISCONNECT_UNACQUIRED: 'device__disconnect_unacquired', - - // ACQUIRE: 'device__acquire', // remove? internal - // RELEASE: 'device__release', // internal - // ACQUIRED: 'device__acquired', - // RELEASED: 'device__released', // internal - // USED_ELSEWHERE: 'device__used_elsewhere', // internal - CHANGED: 'device__changed', - - // LOADING: 'device__loading', // internal - - // trezor-link events - BUTTON: 'button', - PIN: 'pin', - PASSPHRASE: 'passphrase', - PASSPHRASE_ON_DEVICE: 'passphrase_on_device', - WORD: 'word', - - // custom (not emitted) - // AUTHENTICATED: 'device__authenticated', - // WAIT_FOR_SELECTION: 'device__wait_for_selection', - }; - - declare type T_UI_EVENT = 'UI_EVENT'; - declare type T_UI = { - IFRAME_HANDSHAKE: 'iframe_handshake', - TRANSPORT: 'ui-no_transport', - BOOTLOADER: 'ui-device_bootloader_mode', - INITIALIZE: 'ui-device_not_initialized', - FIRMWARE: 'ui-device_firmware_old', - BROWSER_NOT_SUPPORTED: 'ui-browser_not_supported', - BROWSER_OUTDATED: 'ui-browser_outdated', - RECEIVE_BROWSER: 'ui-receive_browser', - REQUEST_UI_WINDOW: 'ui-request_window', - CLOSE_UI_WINDOW: 'ui-close_window', - REQUEST_PERMISSION: 'ui-request_permission', - REQUEST_CONFIRMATION: 'ui-request_confirmation', - REQUEST_PIN: 'ui-request_pin', - INVALID_PIN: 'ui-invalid_pin', - REQUEST_PASSPHRASE: 'ui-request_passphrase', - REQUEST_PASSPHRASE_ON_DEVICE: 'ui-request_passphrase_on_device', - CONNECT: 'ui-connect', - LOADING: 'ui-loading', - SET_OPERATION: 'ui-set_operation', - SELECT_DEVICE: 'ui-select_device', - SELECT_ACCOUNT: 'ui-select_account', - SELECT_FEE: 'ui-select_fee', - UPDATE_CUSTOM_FEE: 'ui-update_custom_fee', - INSUFFICIENT_FUNDS: 'ui-insufficient_funds', - REQUEST_BUTTON: 'ui-button', - RECEIVE_PERMISSION: 'ui-receive_permission', - RECEIVE_CONFIRMATION: 'ui-receive_confirmation', - RECEIVE_PIN: 'ui-receive_pin', - RECEIVE_PASSPHRASE: 'ui-receive_passphrase', - RECEIVE_DEVICE: 'ui-receive_device', - CHANGE_ACCOUNT: 'ui-change_account', - RECEIVE_ACCOUNT: 'ui-receive_account', - RECEIVE_FEE: 'ui-receive_fee', - CHANGE_SETTINGS: 'ui-change_settings', - }; - - declare type T_TRANSPORT_EVENT = 'TRANSPORT_EVENT'; - declare type T_TRANSPORT = { - START: 'transport__start', - ERROR: 'transport__error', - UPDATE: 'transport__update', - STREAM: 'transport__stream', - REQUEST: 'transport__request_device', - UNREADABLE: 'transport__unreadable_hid_device', - RECONNECT: 'transport__reconnect' - }; - - - declare type T_RESPONSE_EVENT = 'RESPONSE_EVENT'; - declare export type ResponseMessage = { - event: T_RESPONSE_EVENT; - type: T_RESPONSE_EVENT; - id: number; - success: boolean; - payload: Object; - } - - declare export type UiMessageType = $Values; - declare export type UiMessage = { - event: string; - type: UiMessageType; - // payload: Object; - payload: { - device: Device; - code?: string; - browser?: any; - } - } - - declare export type DeviceMessageType = $Values; - declare export type DeviceMessage = { - event: string; - type: DeviceMessageType; - payload: Device; - } - - declare export type TransportMessageType = $Values; - declare export type TransportMessage = { - event: string; - type: TransportMessageType; - payload: Object; - } - - declare export type Device = { - path: string, - label: string, - isUsedElsewhere: boolean, - featuresNeedsReload: boolean, - unacquired?: boolean, - features: Features, - } - - declare export type Features = { - vendor: string, - major_version: number, - minor_version: number, - patch_version: number, - bootloader_mode: boolean, - device_id: string, - pin_protection: boolean, - passphrase_protection: boolean, - language: string, - label: string, - // coins: CoinType[], - coins: Array, - initialized: boolean, - revision: string, - bootloader_hash: string, - imported: boolean, - pin_cached: boolean, - passphrase_cached: boolean, - state?: string; - needs_backup?: boolean, - firmware_present?: boolean, - } - - // declare export interface TrezorConnect = { - // on: (type: string, handler: (event: any) => void) => void; - // } - - declare type OnEvents = "device__event"; - - // declare type TRANSPORT = { - // ERROR: 'transport__error'; - // READY: 'transport__ready'; - // } - - declare type DeviceEventListener = (type: T_DEVICE_EVENT, handler: (event: DeviceMessage) => void) => void; - declare type DeviceEventListenerByType = (type: DeviceMessageType, handler: (device: Device) => void) => void; - declare type UiEventListener = (type: T_UI_EVENT, handler: (event: UiMessage) => void) => void; - declare type TransportEventListener = (type: T_TRANSPORT_EVENT, handler: (event: TransportMessage) => void) => void; - - - declare type ResponseUnsuccessful = { - success: false; - payload: { - error: string; - } - } - - declare type ResponseEthereumSignTransaction = { - success: true; - payload: { - r: string; - s: string; - v: string; - } - } | ResponseUnsuccessful; - - declare type ResponseEthereumGetAddress = { - success: true; - payload: { - address: string, - path: Array - } - } | ResponseUnsuccessful; - - declare type ResponseGetDeviceState = { - success: true; - payload: { - state: string; - } - } | ResponseUnsuccessful; - - declare type ResponseGetFeatures = { - success: true; - payload: { - // TODO - } - } | ResponseUnsuccessful; - - declare type ResponseGetPublicKey = { - success: true; - payload: { - chainCode: string, - childNum: number, - depth: number, - fingerprint: number, - path: Array , - publicKey: string, - xpub: string, - xpubFormatted: string - } - } | ResponseUnsuccessful; - - - declare module.exports: { - init: (options: Object) => Promise; - on: DeviceEventListener & DeviceEventListenerByType & UiEventListener & TransportEventListener; - off: (type: string, handler: (event: any) => void) => void; - getVersion: () => any; - renderWebUSBButton: (className?: string) => void; - - getDeviceState: (options: Object) => Promise; - getFeatures: (options: Object) => Promise; - getPublicKey: (options: Object) => Promise; - ethereumGetAddress: (options: Object) => Promise; - uiResponse: (options: Object) => void; - - ethereumSignTransaction: (options: Object) => Promise; - - DEVICE_EVENT: T_DEVICE_EVENT; - DEVICE: T_DEVICE; - - - UI_EVENT: T_UI_EVENT; - UI: T_UI; - - TRANSPORT_EVENT: T_TRANSPORT_EVENT; - TRANSPORT: T_TRANSPORT; - }; -} \ No newline at end of file