UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

10 lines (9 loc) 374 B
import { BinanceSignedClient } from '../../../clients'; export interface RemoveLiquidityPayload { poolId: number; type: 'SINGLE' | 'COMBINATION'; asset: string; shareAmount: number; } export declare type RemoveLiquidityResponse = number; export declare function removeLiquidity(client: BinanceSignedClient, payload: RemoveLiquidityPayload): Promise<number>;