@exchanges/binance
Version:
Exchange provider for Binance API
20 lines (19 loc) • 725 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
import { spot } from '../../../info';
export interface QuerySubAccountFuturesAssetTransferHistoryPayload {
email: string;
futuresType: spot.FuturesTypeEnum;
startTime?: Date | number;
endTime?: Date | number;
page?: number;
limit?: number;
}
export interface QuerySubAccountFuturesAssetTransferHistoryResponse {
from: string;
to: string;
asset: string;
quantity: number;
tranId: number;
time: Date;
}
export declare function querySubAccountFuturesAssetTransferHistory(client: BinanceSignedClient, payload: QuerySubAccountFuturesAssetTransferHistoryPayload): Promise<QuerySubAccountFuturesAssetTransferHistoryResponse[]>;