UNPKG

@nexex/cli

Version:
14 lines (13 loc) 532 B
import { BigNumber } from 'ethers/utils'; import WalletBase from '../../WalletBase'; export default class TokenShow extends WalletBase { static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; endpoint: import("@oclif/command/lib/flags").IOptionFlag<string>; showAddr: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; }; run(): Promise<void>; protected ethBalance(addr: string): Promise<BigNumber>; }