UNPKG

biuauthui

Version:
14 lines (13 loc) 332 B
export type CoinType = { name: string; symbol: string; decimals: number; address: string; chainID: number; isNative?: boolean; noIcon?: boolean; totalSupply?: string; icon?: string; }; export declare const coins: CoinType[]; export declare const findCoinByAddress: (address: string) => CoinType;