zklighter-perps 1.0.179 → 1.0.181

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.
@@ -25,8 +25,26 @@ export interface ReqGetOrderBooks {
25
25
  * @memberof ReqGetOrderBooks
26
26
  */
27
27
  market_id?: number;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof ReqGetOrderBooks
32
+ */
33
+ filter?: ReqGetOrderBooksFilterEnum;
28
34
  }
29
35
 
36
+
37
+ /**
38
+ * @export
39
+ */
40
+ export const ReqGetOrderBooksFilterEnum = {
41
+ All: 'all',
42
+ Spot: 'spot',
43
+ Perp: 'perp'
44
+ } as const;
45
+ export type ReqGetOrderBooksFilterEnum = typeof ReqGetOrderBooksFilterEnum[keyof typeof ReqGetOrderBooksFilterEnum];
46
+
47
+
30
48
  /**
31
49
  * Check if a given object implements the ReqGetOrderBooks interface.
32
50
  */
@@ -45,6 +63,7 @@ export function ReqGetOrderBooksFromJSONTyped(json: any, ignoreDiscriminator: bo
45
63
  return {
46
64
 
47
65
  'market_id': json['market_id'] == null ? undefined : json['market_id'],
66
+ 'filter': json['filter'] == null ? undefined : json['filter'],
48
67
  };
49
68
  }
50
69
 
@@ -55,6 +74,7 @@ export function ReqGetOrderBooksToJSON(value?: ReqGetOrderBooks | null): any {
55
74
  return {
56
75
 
57
76
  'market_id': value['market_id'],
77
+ 'filter': value['filter'],
58
78
  };
59
79
  }
60
80
 
@@ -0,0 +1,142 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ *
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document:
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface SpotMarketStats
20
+ */
21
+ export interface SpotMarketStats {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof SpotMarketStats
26
+ */
27
+ symbol: string;
28
+ /**
29
+ *
30
+ * @type {number}
31
+ * @memberof SpotMarketStats
32
+ */
33
+ market_id: number;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof SpotMarketStats
38
+ */
39
+ index_price: string;
40
+ /**
41
+ *
42
+ * @type {string}
43
+ * @memberof SpotMarketStats
44
+ */
45
+ mid_price: string;
46
+ /**
47
+ *
48
+ * @type {string}
49
+ * @memberof SpotMarketStats
50
+ */
51
+ last_trade_price: string;
52
+ /**
53
+ *
54
+ * @type {number}
55
+ * @memberof SpotMarketStats
56
+ */
57
+ daily_base_token_volume: number;
58
+ /**
59
+ *
60
+ * @type {number}
61
+ * @memberof SpotMarketStats
62
+ */
63
+ daily_quote_token_volume: number;
64
+ /**
65
+ *
66
+ * @type {number}
67
+ * @memberof SpotMarketStats
68
+ */
69
+ daily_price_low: number;
70
+ /**
71
+ *
72
+ * @type {number}
73
+ * @memberof SpotMarketStats
74
+ */
75
+ daily_price_high: number;
76
+ /**
77
+ *
78
+ * @type {number}
79
+ * @memberof SpotMarketStats
80
+ */
81
+ daily_price_change: number;
82
+ }
83
+
84
+ /**
85
+ * Check if a given object implements the SpotMarketStats interface.
86
+ */
87
+ export function instanceOfSpotMarketStats(value: object): value is SpotMarketStats {
88
+ if (!('symbol' in value) || value['symbol'] === undefined) return false;
89
+ if (!('market_id' in value) || value['market_id'] === undefined) return false;
90
+ if (!('index_price' in value) || value['index_price'] === undefined) return false;
91
+ if (!('mid_price' in value) || value['mid_price'] === undefined) return false;
92
+ if (!('last_trade_price' in value) || value['last_trade_price'] === undefined) return false;
93
+ if (!('daily_base_token_volume' in value) || value['daily_base_token_volume'] === undefined) return false;
94
+ if (!('daily_quote_token_volume' in value) || value['daily_quote_token_volume'] === undefined) return false;
95
+ if (!('daily_price_low' in value) || value['daily_price_low'] === undefined) return false;
96
+ if (!('daily_price_high' in value) || value['daily_price_high'] === undefined) return false;
97
+ if (!('daily_price_change' in value) || value['daily_price_change'] === undefined) return false;
98
+ return true;
99
+ }
100
+
101
+ export function SpotMarketStatsFromJSON(json: any): SpotMarketStats {
102
+ return SpotMarketStatsFromJSONTyped(json, false);
103
+ }
104
+
105
+ export function SpotMarketStatsFromJSONTyped(json: any, ignoreDiscriminator: boolean): SpotMarketStats {
106
+ if (json == null) {
107
+ return json;
108
+ }
109
+ return {
110
+
111
+ 'symbol': json['symbol'],
112
+ 'market_id': json['market_id'],
113
+ 'index_price': json['index_price'],
114
+ 'mid_price': json['mid_price'],
115
+ 'last_trade_price': json['last_trade_price'],
116
+ 'daily_base_token_volume': json['daily_base_token_volume'],
117
+ 'daily_quote_token_volume': json['daily_quote_token_volume'],
118
+ 'daily_price_low': json['daily_price_low'],
119
+ 'daily_price_high': json['daily_price_high'],
120
+ 'daily_price_change': json['daily_price_change'],
121
+ };
122
+ }
123
+
124
+ export function SpotMarketStatsToJSON(value?: SpotMarketStats | null): any {
125
+ if (value == null) {
126
+ return value;
127
+ }
128
+ return {
129
+
130
+ 'symbol': value['symbol'],
131
+ 'market_id': value['market_id'],
132
+ 'index_price': value['index_price'],
133
+ 'mid_price': value['mid_price'],
134
+ 'last_trade_price': value['last_trade_price'],
135
+ 'daily_base_token_volume': value['daily_base_token_volume'],
136
+ 'daily_quote_token_volume': value['daily_quote_token_volume'],
137
+ 'daily_price_low': value['daily_price_low'],
138
+ 'daily_price_high': value['daily_price_high'],
139
+ 'daily_price_change': value['daily_price_change'],
140
+ };
141
+ }
142
+
@@ -0,0 +1,313 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ *
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document:
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ import type { MarketConfig } from './MarketConfig';
17
+ import {
18
+ MarketConfigFromJSON,
19
+ MarketConfigFromJSONTyped,
20
+ MarketConfigToJSON,
21
+ } from './MarketConfig';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface SpotOrderBookDetail
27
+ */
28
+ export interface SpotOrderBookDetail {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof SpotOrderBookDetail
33
+ */
34
+ symbol: string;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof SpotOrderBookDetail
39
+ */
40
+ market_id: number;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof SpotOrderBookDetail
45
+ */
46
+ market_type: SpotOrderBookDetailMarketTypeEnum;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof SpotOrderBookDetail
51
+ */
52
+ base_asset_id: number;
53
+ /**
54
+ *
55
+ * @type {number}
56
+ * @memberof SpotOrderBookDetail
57
+ */
58
+ quote_asset_id: number;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof SpotOrderBookDetail
63
+ */
64
+ status: SpotOrderBookDetailStatusEnum;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof SpotOrderBookDetail
69
+ */
70
+ taker_fee: string;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof SpotOrderBookDetail
75
+ */
76
+ maker_fee: string;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof SpotOrderBookDetail
81
+ */
82
+ liquidation_fee: string;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof SpotOrderBookDetail
87
+ */
88
+ min_base_amount: string;
89
+ /**
90
+ *
91
+ * @type {string}
92
+ * @memberof SpotOrderBookDetail
93
+ */
94
+ min_quote_amount: string;
95
+ /**
96
+ *
97
+ * @type {string}
98
+ * @memberof SpotOrderBookDetail
99
+ */
100
+ order_quote_limit: string;
101
+ /**
102
+ *
103
+ * @type {number}
104
+ * @memberof SpotOrderBookDetail
105
+ */
106
+ supported_size_decimals: number;
107
+ /**
108
+ *
109
+ * @type {number}
110
+ * @memberof SpotOrderBookDetail
111
+ */
112
+ supported_price_decimals: number;
113
+ /**
114
+ *
115
+ * @type {number}
116
+ * @memberof SpotOrderBookDetail
117
+ */
118
+ supported_quote_decimals: number;
119
+ /**
120
+ *
121
+ * @type {number}
122
+ * @memberof SpotOrderBookDetail
123
+ */
124
+ size_decimals: number;
125
+ /**
126
+ *
127
+ * @type {number}
128
+ * @memberof SpotOrderBookDetail
129
+ */
130
+ price_decimals: number;
131
+ /**
132
+ *
133
+ * @type {number}
134
+ * @memberof SpotOrderBookDetail
135
+ */
136
+ last_trade_price: number;
137
+ /**
138
+ *
139
+ * @type {number}
140
+ * @memberof SpotOrderBookDetail
141
+ */
142
+ daily_trades_count: number;
143
+ /**
144
+ *
145
+ * @type {number}
146
+ * @memberof SpotOrderBookDetail
147
+ */
148
+ daily_base_token_volume: number;
149
+ /**
150
+ *
151
+ * @type {number}
152
+ * @memberof SpotOrderBookDetail
153
+ */
154
+ daily_quote_token_volume: number;
155
+ /**
156
+ *
157
+ * @type {number}
158
+ * @memberof SpotOrderBookDetail
159
+ */
160
+ daily_price_low: number;
161
+ /**
162
+ *
163
+ * @type {number}
164
+ * @memberof SpotOrderBookDetail
165
+ */
166
+ daily_price_high: number;
167
+ /**
168
+ *
169
+ * @type {number}
170
+ * @memberof SpotOrderBookDetail
171
+ */
172
+ daily_price_change: number;
173
+ /**
174
+ *
175
+ * @type {{ [key: string]: number; }}
176
+ * @memberof SpotOrderBookDetail
177
+ */
178
+ daily_chart: { [key: string]: number; };
179
+ /**
180
+ *
181
+ * @type {MarketConfig}
182
+ * @memberof SpotOrderBookDetail
183
+ */
184
+ market_config: MarketConfig;
185
+ }
186
+
187
+
188
+ /**
189
+ * @export
190
+ */
191
+ export const SpotOrderBookDetailMarketTypeEnum = {
192
+ Perp: 'perp',
193
+ Spot: 'spot'
194
+ } as const;
195
+ export type SpotOrderBookDetailMarketTypeEnum = typeof SpotOrderBookDetailMarketTypeEnum[keyof typeof SpotOrderBookDetailMarketTypeEnum];
196
+
197
+ /**
198
+ * @export
199
+ */
200
+ export const SpotOrderBookDetailStatusEnum = {
201
+ Inactive: 'inactive',
202
+ Active: 'active'
203
+ } as const;
204
+ export type SpotOrderBookDetailStatusEnum = typeof SpotOrderBookDetailStatusEnum[keyof typeof SpotOrderBookDetailStatusEnum];
205
+
206
+
207
+ /**
208
+ * Check if a given object implements the SpotOrderBookDetail interface.
209
+ */
210
+ export function instanceOfSpotOrderBookDetail(value: object): value is SpotOrderBookDetail {
211
+ if (!('symbol' in value) || value['symbol'] === undefined) return false;
212
+ if (!('market_id' in value) || value['market_id'] === undefined) return false;
213
+ if (!('market_type' in value) || value['market_type'] === undefined) return false;
214
+ if (!('base_asset_id' in value) || value['base_asset_id'] === undefined) return false;
215
+ if (!('quote_asset_id' in value) || value['quote_asset_id'] === undefined) return false;
216
+ if (!('status' in value) || value['status'] === undefined) return false;
217
+ if (!('taker_fee' in value) || value['taker_fee'] === undefined) return false;
218
+ if (!('maker_fee' in value) || value['maker_fee'] === undefined) return false;
219
+ if (!('liquidation_fee' in value) || value['liquidation_fee'] === undefined) return false;
220
+ if (!('min_base_amount' in value) || value['min_base_amount'] === undefined) return false;
221
+ if (!('min_quote_amount' in value) || value['min_quote_amount'] === undefined) return false;
222
+ if (!('order_quote_limit' in value) || value['order_quote_limit'] === undefined) return false;
223
+ if (!('supported_size_decimals' in value) || value['supported_size_decimals'] === undefined) return false;
224
+ if (!('supported_price_decimals' in value) || value['supported_price_decimals'] === undefined) return false;
225
+ if (!('supported_quote_decimals' in value) || value['supported_quote_decimals'] === undefined) return false;
226
+ if (!('size_decimals' in value) || value['size_decimals'] === undefined) return false;
227
+ if (!('price_decimals' in value) || value['price_decimals'] === undefined) return false;
228
+ if (!('last_trade_price' in value) || value['last_trade_price'] === undefined) return false;
229
+ if (!('daily_trades_count' in value) || value['daily_trades_count'] === undefined) return false;
230
+ if (!('daily_base_token_volume' in value) || value['daily_base_token_volume'] === undefined) return false;
231
+ if (!('daily_quote_token_volume' in value) || value['daily_quote_token_volume'] === undefined) return false;
232
+ if (!('daily_price_low' in value) || value['daily_price_low'] === undefined) return false;
233
+ if (!('daily_price_high' in value) || value['daily_price_high'] === undefined) return false;
234
+ if (!('daily_price_change' in value) || value['daily_price_change'] === undefined) return false;
235
+ if (!('daily_chart' in value) || value['daily_chart'] === undefined) return false;
236
+ if (!('market_config' in value) || value['market_config'] === undefined) return false;
237
+ return true;
238
+ }
239
+
240
+ export function SpotOrderBookDetailFromJSON(json: any): SpotOrderBookDetail {
241
+ return SpotOrderBookDetailFromJSONTyped(json, false);
242
+ }
243
+
244
+ export function SpotOrderBookDetailFromJSONTyped(json: any, ignoreDiscriminator: boolean): SpotOrderBookDetail {
245
+ if (json == null) {
246
+ return json;
247
+ }
248
+ return {
249
+
250
+ 'symbol': json['symbol'],
251
+ 'market_id': json['market_id'],
252
+ 'market_type': json['market_type'],
253
+ 'base_asset_id': json['base_asset_id'],
254
+ 'quote_asset_id': json['quote_asset_id'],
255
+ 'status': json['status'],
256
+ 'taker_fee': json['taker_fee'],
257
+ 'maker_fee': json['maker_fee'],
258
+ 'liquidation_fee': json['liquidation_fee'],
259
+ 'min_base_amount': json['min_base_amount'],
260
+ 'min_quote_amount': json['min_quote_amount'],
261
+ 'order_quote_limit': json['order_quote_limit'],
262
+ 'supported_size_decimals': json['supported_size_decimals'],
263
+ 'supported_price_decimals': json['supported_price_decimals'],
264
+ 'supported_quote_decimals': json['supported_quote_decimals'],
265
+ 'size_decimals': json['size_decimals'],
266
+ 'price_decimals': json['price_decimals'],
267
+ 'last_trade_price': json['last_trade_price'],
268
+ 'daily_trades_count': json['daily_trades_count'],
269
+ 'daily_base_token_volume': json['daily_base_token_volume'],
270
+ 'daily_quote_token_volume': json['daily_quote_token_volume'],
271
+ 'daily_price_low': json['daily_price_low'],
272
+ 'daily_price_high': json['daily_price_high'],
273
+ 'daily_price_change': json['daily_price_change'],
274
+ 'daily_chart': json['daily_chart'],
275
+ 'market_config': MarketConfigFromJSON(json['market_config']),
276
+ };
277
+ }
278
+
279
+ export function SpotOrderBookDetailToJSON(value?: SpotOrderBookDetail | null): any {
280
+ if (value == null) {
281
+ return value;
282
+ }
283
+ return {
284
+
285
+ 'symbol': value['symbol'],
286
+ 'market_id': value['market_id'],
287
+ 'market_type': value['market_type'],
288
+ 'base_asset_id': value['base_asset_id'],
289
+ 'quote_asset_id': value['quote_asset_id'],
290
+ 'status': value['status'],
291
+ 'taker_fee': value['taker_fee'],
292
+ 'maker_fee': value['maker_fee'],
293
+ 'liquidation_fee': value['liquidation_fee'],
294
+ 'min_base_amount': value['min_base_amount'],
295
+ 'min_quote_amount': value['min_quote_amount'],
296
+ 'order_quote_limit': value['order_quote_limit'],
297
+ 'supported_size_decimals': value['supported_size_decimals'],
298
+ 'supported_price_decimals': value['supported_price_decimals'],
299
+ 'supported_quote_decimals': value['supported_quote_decimals'],
300
+ 'size_decimals': value['size_decimals'],
301
+ 'price_decimals': value['price_decimals'],
302
+ 'last_trade_price': value['last_trade_price'],
303
+ 'daily_trades_count': value['daily_trades_count'],
304
+ 'daily_base_token_volume': value['daily_base_token_volume'],
305
+ 'daily_quote_token_volume': value['daily_quote_token_volume'],
306
+ 'daily_price_low': value['daily_price_low'],
307
+ 'daily_price_high': value['daily_price_high'],
308
+ 'daily_price_change': value['daily_price_change'],
309
+ 'daily_chart': value['daily_chart'],
310
+ 'market_config': MarketConfigToJSON(value['market_config']),
311
+ };
312
+ }
313
+
@@ -25,6 +25,12 @@ export interface TransferHistoryItem {
25
25
  * @memberof TransferHistoryItem
26
26
  */
27
27
  id: string;
28
+ /**
29
+ *
30
+ * @type {number}
31
+ * @memberof TransferHistoryItem
32
+ */
33
+ asset_index: number;
28
34
  /**
29
35
  *
30
36
  * @type {string}
@@ -95,6 +101,7 @@ export type TransferHistoryItemTypeEnum = typeof TransferHistoryItemTypeEnum[key
95
101
  */
96
102
  export function instanceOfTransferHistoryItem(value: object): value is TransferHistoryItem {
97
103
  if (!('id' in value) || value['id'] === undefined) return false;
104
+ if (!('asset_index' in value) || value['asset_index'] === undefined) return false;
98
105
  if (!('amount' in value) || value['amount'] === undefined) return false;
99
106
  if (!('timestamp' in value) || value['timestamp'] === undefined) return false;
100
107
  if (!('type' in value) || value['type'] === undefined) return false;
@@ -117,6 +124,7 @@ export function TransferHistoryItemFromJSONTyped(json: any, ignoreDiscriminator:
117
124
  return {
118
125
 
119
126
  'id': json['id'],
127
+ 'asset_index': json['asset_index'],
120
128
  'amount': json['amount'],
121
129
  'timestamp': json['timestamp'],
122
130
  'type': json['type'],
@@ -135,6 +143,7 @@ export function TransferHistoryItemToJSON(value?: TransferHistoryItem | null): a
135
143
  return {
136
144
 
137
145
  'id': value['id'],
146
+ 'asset_index': value['asset_index'],
138
147
  'amount': value['amount'],
139
148
  'timestamp': value['timestamp'],
140
149
  'type': value['type'],
@@ -25,6 +25,12 @@ export interface WithdrawHistoryItem {
25
25
  * @memberof WithdrawHistoryItem
26
26
  */
27
27
  id: string;
28
+ /**
29
+ *
30
+ * @type {number}
31
+ * @memberof WithdrawHistoryItem
32
+ */
33
+ asset_index: number;
28
34
  /**
29
35
  *
30
36
  * @type {string}
@@ -85,6 +91,7 @@ export type WithdrawHistoryItemTypeEnum = typeof WithdrawHistoryItemTypeEnum[key
85
91
  */
86
92
  export function instanceOfWithdrawHistoryItem(value: object): value is WithdrawHistoryItem {
87
93
  if (!('id' in value) || value['id'] === undefined) return false;
94
+ if (!('asset_index' in value) || value['asset_index'] === undefined) return false;
88
95
  if (!('amount' in value) || value['amount'] === undefined) return false;
89
96
  if (!('timestamp' in value) || value['timestamp'] === undefined) return false;
90
97
  if (!('status' in value) || value['status'] === undefined) return false;
@@ -104,6 +111,7 @@ export function WithdrawHistoryItemFromJSONTyped(json: any, ignoreDiscriminator:
104
111
  return {
105
112
 
106
113
  'id': json['id'],
114
+ 'asset_index': json['asset_index'],
107
115
  'amount': json['amount'],
108
116
  'timestamp': json['timestamp'],
109
117
  'status': json['status'],
@@ -119,6 +127,7 @@ export function WithdrawHistoryItemToJSON(value?: WithdrawHistoryItem | null): a
119
127
  return {
120
128
 
121
129
  'id': value['id'],
130
+ 'asset_index': value['asset_index'],
122
131
  'amount': value['amount'],
123
132
  'timestamp': value['timestamp'],
124
133
  'status': value['status'],
package/models/index.ts CHANGED
@@ -2,6 +2,7 @@
2
2
  /* eslint-disable */
3
3
  export * from './Account';
4
4
  export * from './AccountApiKeys';
5
+ export * from './AccountAsset';
5
6
  export * from './AccountLimits';
6
7
  export * from './AccountMarginStats';
7
8
  export * from './AccountMarketStats';
@@ -14,6 +15,8 @@ export * from './AccountTradeStats';
14
15
  export * from './Announcement';
15
16
  export * from './Announcements';
16
17
  export * from './ApiKey';
18
+ export * from './Asset';
19
+ export * from './AssetDetails';
17
20
  export * from './Block';
18
21
  export * from './Blocks';
19
22
  export * from './Bridge';
@@ -53,17 +56,17 @@ export * from './Liquidation';
53
56
  export * from './LiquidationInfo';
54
57
  export * from './LiquidationInfos';
55
58
  export * from './MarketConfig';
56
- export * from './MarketInfo';
57
59
  export * from './NextNonce';
58
60
  export * from './Order';
59
61
  export * from './OrderBook';
60
62
  export * from './OrderBookDepth';
61
- export * from './OrderBookDetail';
62
63
  export * from './OrderBookDetails';
63
64
  export * from './OrderBookOrders';
64
65
  export * from './OrderBookStats';
65
66
  export * from './OrderBooks';
66
67
  export * from './Orders';
68
+ export * from './PerpsMarketStats';
69
+ export * from './PerpsOrderBookDetail';
67
70
  export * from './PnLEntry';
68
71
  export * from './PositionFunding';
69
72
  export * from './PositionFundings';
@@ -85,6 +88,7 @@ export * from './ReqGetAccountLimits';
85
88
  export * from './ReqGetAccountMetadata';
86
89
  export * from './ReqGetAccountPnL';
87
90
  export * from './ReqGetAccountTxs';
91
+ export * from './ReqGetAssetDetails';
88
92
  export * from './ReqGetBlock';
89
93
  export * from './ReqGetBlockTxs';
90
94
  export * from './ReqGetBridgesByL1Addr';
@@ -133,6 +137,8 @@ export * from './RiskInfo';
133
137
  export * from './RiskParameters';
134
138
  export * from './SharePrice';
135
139
  export * from './SimpleOrder';
140
+ export * from './SpotMarketStats';
141
+ export * from './SpotOrderBookDetail';
136
142
  export * from './Status';
137
143
  export * from './SubAccounts';
138
144
  export * from './Ticker';