UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

22 lines (21 loc) 782 B
import { BinanceSignedClient } from '../../../clients'; import { spot } from '../../../info'; export interface GetFutureAccountTransactionHistoryListPayload { asset: string; startTime: Date | number; endTime?: Date | number; current?: number; size?: number; } export interface GetFutureAccountTransactionHistoryListResponse { rows: { asset: string; tranId: number; amount: number; type: spot.FuturesTransferTypeEnum; timestamp: Date; status: spot.FuturesTransferStatusType; }[]; total: number; } export declare function getFutureAccountTransactionHistoryList(client: BinanceSignedClient, payload: GetFutureAccountTransactionHistoryListPayload): Promise<GetFutureAccountTransactionHistoryListResponse>;