bybit-api
Version:
Complete & robust Node.js SDK for Bybit's REST APIs and WebSockets, with TypeScript & strong end to end tests.
25 lines (24 loc) • 604 B
TypeScript
import { LTOrderTypeV5 } from '../shared-v5';
export interface PurchaseSpotLeveragedTokenParamsV5 {
ltCoin: string;
amount: string;
serialNo?: string;
}
export interface RedeemSpotLeveragedTokenParamsV5 {
ltCoin: string;
quantity: string;
serialNo?: string;
}
export interface GetSpotLeveragedTokenOrderHistoryParamsV5 {
ltCoin?: string;
orderId?: string;
startTime?: number;
endTime?: number;
limit?: number;
ltOrderType?: LTOrderTypeV5;
serialNo?: string;
}
export interface GetVIPMarginDataParamsV5 {
vipLevel?: string;
currency?: string;
}