gateio-api-nw
Version:
Complete & robust Node.js SDK for Gate.io's REST APIs, WebSockets & WebSocket APIs, with TypeScript declarations.
20 lines (19 loc) • 555 B
TypeScript
export type GateBaseUrlKey = 'live' | 'futuresLiveAlternative' | 'futuresTestnet';
export interface CurrencyPair {
id?: string;
base?: string;
base_name?: string;
quote?: string;
quote_name?: string;
fee?: string;
min_base_amount?: string;
min_quote_amount?: string;
max_base_amount?: string;
max_quote_amount?: string;
amount_precision?: number;
precision?: number;
trade_status?: 'untradable' | 'buyable' | 'sellable' | 'tradable';
sell_start?: number;
buy_start?: number;
type: string;
}