okex-api
Version:
A modern, asynchronous, and easy-to-use [Okx API](https://www.okx.com/docs-v5) wrapper for Node.js/bun/Web Browser/Cloudflare workers.
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;
}