xud
Version:
Exchange Union Daemon
10 lines (9 loc) • 385 B
TypeScript
import { Arguments, Argv } from 'yargs';
export declare const command = "addpair <pair_id|base_currency> [quote_currency]";
export declare const describe = "add a trading pair";
export declare const builder: (argv: Argv) => Argv<{
pair_id: string | undefined;
} & {
quote_currency: string | undefined;
}>;
export declare const handler: (argv: Arguments<any>) => Promise<void>;