UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

11 lines (10 loc) 462 B
import { BinanceSignedClient } from '../../../clients'; import { spot } from '../../../info'; export interface FuturesTransferForSubAccountPayload { email: string; asset: string; amount: number; type: spot.FuturesTransferTypeEnum; } export declare type FuturesTransferForSubAccountResponse = string; export declare function futuresTransferForSubAccount(client: BinanceSignedClient, payload: FuturesTransferForSubAccountPayload): Promise<string>;