UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

11 lines (10 loc) 513 B
import { BinanceSignedClient } from '../../../clients'; export interface GetMaxAmountForAdjustCrossCollateralLTVV2Payload { loadCoin: string; collateralCoin: string; } export interface GetMaxAmountForAdjustCrossCollateralLTVV2Response { maxInAmount: number; maxOutAmount: number; } export declare function getMaxAmountForAdjustCrossCollateralLTVV2(client: BinanceSignedClient, payload: GetMaxAmountForAdjustCrossCollateralLTVV2Payload): Promise<GetMaxAmountForAdjustCrossCollateralLTVV2Response>;