@exchanges/binance
Version:
Exchange provider for Binance API
14 lines (13 loc) • 435 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
export interface WithdrawPayload {
coin: string;
address: string;
amount: number;
withdrawOrderId?: string;
network?: string;
addressTag?: string;
transactionFeeFlag?: boolean;
name?: string;
}
export declare type WithdrawResponse = string;
export declare function withdraw(client: BinanceSignedClient, payload: WithdrawPayload): Promise<string>;