UNPKG

trezor-web3-subprovider

Version:
14 lines (13 loc) 385 B
import Web3ProviderEngine from 'web3-provider-engine'; export interface ITrezorProviderOptions { manifestEmail: string; manifestAppUrl: string; rpcUrl: string; config?: any; pollingInterval?: any; requestTimeoutMs?: any; } declare class TrezorProvider extends Web3ProviderEngine { constructor(opts: ITrezorProviderOptions); } export default TrezorProvider;