@exchanges/binance
Version:
Exchange provider for Binance API
13 lines (12 loc) • 400 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
export interface TradeFeeResponse {
symbol: string;
makerCommission: number;
takerCommission: number;
}
export interface TradeFeeResponseRaw {
symbol: string;
makerCommission: string;
takerCommission: string;
}
export declare function tradeFee(client: BinanceSignedClient, symbol?: string): Promise<TradeFeeResponse[]>;