@exchanges/binance
Version:
Exchange provider for Binance API
24 lines (23 loc) • 888 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
export interface GetSummaryOfSubAccountFuturesAccountResponse {
totalInitialMargin: number;
totalMaintenanceMargin: number;
totalMarginBalance: number;
totalOpenOrderInitialMargin: number;
totalPositionInitialMargin: number;
totalUnrealizedProfit: number;
totalWalletBalance: number;
asset: string;
subAccountList: {
email: string;
totalInitialMargin: number;
totalMaintenanceMargin: number;
totalMarginBalance: number;
totalOpenOrderInitialMargin: number;
totalPositionInitialMargin: number;
totalUnrealizedProfit: number;
totalWalletBalance: number;
asset: string;
}[];
}
export declare function getSummaryOfSubAccountFuturesAccount(client: BinanceSignedClient): Promise<GetSummaryOfSubAccountFuturesAccountResponse>;