xud
Version:
Exchange Union Daemon
12 lines (11 loc) • 402 B
TypeScript
import { Arguments, Argv } from 'yargs';
export declare const command = "executeswap <pair_id> <order_id> [quantity]";
export declare const describe: undefined;
export declare const builder: (argv: Argv) => Argv<{
order_id: string | undefined;
} & {
pair_id: string | undefined;
} & {
quantity: number | undefined;
}>;
export declare const handler: (argv: Arguments<any>) => Promise<void>;