UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

17 lines (16 loc) 606 B
import { BinanceSignedClient } from '../../../clients'; export interface TransferToSubAccountOfSameMasterPayload { fromEmail: string; toEmail: string; asset: string; amount: number; } export declare type TransferToSubAccountOfSameMasterResponse = string; /** * * @deprecated Не работает на стороне Binance (работает, только от лица SubAccount) * @param client * @param payload * @returns */ export declare function transferToSubAccountOfSameMaster(client: BinanceSignedClient, payload: TransferToSubAccountOfSameMasterPayload): Promise<string>;