gateio-api
Version:
Complete & Robust Node.js SDK for Gate.com's REST APIs, WebSockets & WebSocket APIs, with TypeScript declarations.
40 lines (39 loc) • 1.07 kB
TypeScript
/**==========================================================================================================================
* MARGIN UNI
* ==========================================================================================================================
*/
export interface LendingMarket {
currency_pair: string;
base_min_borrow_amount: string;
quote_min_borrow_amount: string;
leverage: string;
}
export interface MarginUNILoan {
currency: string;
currency_pair: string;
amount: string;
type: string;
create_time: number;
update_time: number;
}
export interface MarginUNILoanRecord {
type: string;
currency_pair: string;
currency: string;
amount: string;
create_time: number;
}
export interface MarginUNIInterestRecord {
currency: string;
currency_pair: string;
actual_rate: string;
interest: string;
status: number;
type: string;
create_time: number;
}
export interface MarginUNIMaxBorrowable {
currency: string;
currency_pair: string;
borrowable: string;
}