okx-api
Version:
Complete Node.js SDK for OKX's REST APIs and WebSockets, with TypeScript & end-to-end tests
20 lines (19 loc) • 391 B
TypeScript
export interface ConvertQuoteEstimateRequest {
baseCcy: string;
quoteCcy: string;
side: string;
rfqSz: string;
rfqSzCcy: string;
clTReqId?: string;
tag?: string;
}
export interface ConvertTradeRequest {
quoteId: string;
baseCcy: string;
quoteCcy: string;
side: string;
sz: string;
szCcy: string;
clTReqId?: string;
tag?: string;
}