@exchanges/binance
Version:
Exchange provider for Binance API
10 lines (9 loc) • 427 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
import { spot } from '../../../info';
export interface NewFutureAccountTransferPayload {
asset: string;
amount: number;
type: spot.FuturesTransferTypeEnum;
}
export declare type NewFutureAccountTransferResponse = number;
export declare function newFutureAccountTransfer(client: BinanceSignedClient, payload: NewFutureAccountTransferPayload): Promise<number>;