UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

13 lines (12 loc) 497 B
import { BinanceSignedClient } from '../../../clients'; import { spot } from '../../../info'; export interface UniversalTransferPayload { fromEmail?: string; toEmail?: string; fromAccountType: spot.TransferAccountType; toAccountType: spot.TransferAccountType; asset: string; amount: number; } export declare type UniversalTransferResponse = number; export declare function universalTransfer(client: BinanceSignedClient, payload: UniversalTransferPayload): Promise<number>;