UNPKG

ftx-api-typed

Version:

Node.js/typescript connector for FTX's REST APIs and WebSockets

14 lines (13 loc) 289 B
export interface OtcHistoryItem { baseCurrency: string; fee: number; from: string; id: number; price: number; proceeds: number; quoteCurrency: string; size: number; time: string; to: string; } export declare type OtcHistory = Array<OtcHistoryItem>;