UNPKG

@nexex/cli

Version:
10 lines (9 loc) 310 B
import { Dex } from '@nexex/api/Dex'; export declare class Token { symbol: string; addr: string; decimals?: number; static create(tokenSymbolOrAddr: string, dex: Dex): Promise<Token>; constructor(symbol: string, addr: string, decimals?: number); toString(showAddr?: boolean): string; }