gateio-api 1.2.5 → 1.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -53,6 +53,10 @@ export interface GetRiskLimitTiersReq {
53
53
  limit?: number;
54
54
  offset?: number;
55
55
  }
56
+ export interface GetRiskLimitTableReq {
57
+ settle: 'btc' | 'usdt' | 'usd';
58
+ table_id: string;
59
+ }
56
60
  export interface GetFuturesAccountBookReq {
57
61
  settle: 'btc' | 'usdt' | 'usd';
58
62
  contract?: string;
@@ -87,6 +87,7 @@ export interface DeliveryAccount {
87
87
  bonus_dnw: string;
88
88
  bonus_offset: string;
89
89
  };
90
+ enable_tiered_mm: boolean;
90
91
  }
91
92
  export interface DeliveryBook {
92
93
  time: number;
@@ -141,6 +141,7 @@ export interface FuturesAccount {
141
141
  bonus_dnw: string;
142
142
  bonus_offset: string;
143
143
  };
144
+ enable_tiered_mm: boolean;
144
145
  }
145
146
  export interface FuturesAccountBookRecord {
146
147
  time: number;
@@ -444,3 +445,11 @@ export interface UpdateFuturesDualModeResp {
444
445
  bonus_offset: string;
445
446
  };
446
447
  }
448
+ export interface RiskLimitTableTier {
449
+ tier: number;
450
+ risk_limit: string;
451
+ initial_rate: string;
452
+ maintenance_rate: string;
453
+ leverage_max: string;
454
+ deduction: string;
455
+ }