UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

11 lines (10 loc) 367 B
import { BinanceSignedClient } from '../../../clients'; export interface AssetDetailResponse { asset: string; minWithdrawAmount: number; depositStatus: boolean; withdrawFee: number; withdrawStatus: boolean; depositTip: string; } export declare function assetDetail(client: BinanceSignedClient, asset?: string): Promise<AssetDetailResponse[]>;