UNPKG

@berrywallet/core

Version:

Berrywallet main Core for work with common cryptocurrencies like Bitcoin, Ethereum, Dash, Litecoin

11 lines (10 loc) 555 B
import { Coin } from '../'; import * as Adapter from './adapter'; import * as Api from './api'; import * as Events from './events'; import * as Clients from './clients'; export { Clients, Api, Events, Adapter }; export { NetworkProvider } from './network-provider'; export { getNetworkAdapters, getNetworkAdapter } from './utils'; export declare function createClient(coin: Coin.CoinInterface, params: Api.TAdapterOption): Clients.NetworkClient; export declare function firstNetworkClient(coin: Coin.CoinInterface, index?: number): Clients.NetworkClient;