UNPKG

bybit-api

Version:

Complete & robust Node.js SDK for Bybit's REST APIs and WebSockets, with TypeScript & strong end to end tests.

38 lines (37 loc) 923 B
export interface BorrowCryptoLoanParamsV5 { loanCurrency: string; loanAmount?: string; loanTerm?: string; collateralCurrency: string; collateralAmount?: string; } export interface GetUnpaidLoanOrdersParamsV5 { orderId?: string; loanCurrency?: string; collateralCurrency?: string; loanTermType?: string; loanTerm?: string; limit?: string; cursor?: string; } export interface GetRepaymentHistoryParamsV5 { orderId?: string; repayId?: string; loanCurrency?: string; limit?: string; cursor?: string; } export interface GetCompletedLoanOrderHistoryParamsV5 { orderId?: string; loanCurrency?: string; collateralCurrency?: string; limit?: string; cursor?: string; } export interface GetLoanLTVAdjustmentHistoryParamsV5 { orderId?: string; adjustId?: string; collateralCurrency?: string; limit?: string; cursor?: string; }