@exchanges/binance
Version:
Exchange provider for Binance API
17 lines (16 loc) • 539 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
export interface LendingAccountResponse {
positionAmountVos: {
amount: number;
amountInBTC: number;
amountInUSDT: number;
asset: string;
}[];
totalAmountInBTC: number;
totalAmountInUSDT: number;
totalFixedAmountInBTC: number;
totalFixedAmountInUSDT: number;
totalFlexibleInBTC: number;
totalFlexibleInUSDT: number;
}
export declare function lendingAccount(client: BinanceSignedClient): Promise<LendingAccountResponse>;