xud
Version:
Exchange Union Daemon
10 lines (9 loc) • 480 B
TypeScript
import { Arguments, Argv } from 'yargs';
import { GetBalanceResponse } from '../../proto/xudrpc_pb';
export declare const displayBalances: (balances: GetBalanceResponse.AsObject) => void;
export declare const command = "getbalance [currency]";
export declare const describe = "get total balance for a given currency";
export declare const builder: (argv: Argv) => Argv<{
currency: string | undefined;
}>;
export declare const handler: (argv: Arguments<any>) => Promise<void>;