UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

8 lines (7 loc) 272 B
import { BinanceSignedClient } from '../../../clients'; export interface ListAllSwapPoolsResponse { poolId: number; poolName: string; assets: string[]; } export declare function listAllSwapPools(client: BinanceSignedClient): Promise<ListAllSwapPoolsResponse>;