@r2wa-org/eden 0.0.81 → 0.0.83

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.
@@ -11,247 +11,109 @@ export declare const tradeMarketListQuerySchema: import("@sinclair/typebox").TOb
11
11
  pageIndex: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
12
12
  }>;
13
13
  export type TradeMarketListQueryType = typeof tradeMarketListQuerySchema.static;
14
+ export declare const tradeMarketItemResponseSchema: import("@sinclair/typebox").TObject<{
15
+ id: import("@sinclair/typebox").TString;
16
+ name: import("@sinclair/typebox").TString;
17
+ status: import("@sinclair/typebox").TEnum<{
18
+ active: "active";
19
+ draft: "draft";
20
+ paused: "paused";
21
+ ended: "ended";
22
+ }>;
23
+ baseAssetId: import("@sinclair/typebox").TString;
24
+ quoteAssetId: import("@sinclair/typebox").TString;
25
+ isBuyEnabled: import("@sinclair/typebox").TBoolean;
26
+ isSellEnabled: import("@sinclair/typebox").TBoolean;
27
+ minBaseAmount: import("@sinclair/typebox").TString;
28
+ maxBaseAmount: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
29
+ dailyUserBuyBaseLimit: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
30
+ dailyUserSellBaseLimit: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
31
+ maxSlippageBps: import("@sinclair/typebox").TString;
32
+ baseAsset: import("@sinclair/typebox").TObject<{
33
+ symbol: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
34
+ id: import("@sinclair/typebox").TString;
35
+ name: import("@sinclair/typebox").TString;
36
+ code: import("@sinclair/typebox").TString;
37
+ category: import("@sinclair/typebox").TEnum<{
38
+ FIAT: "FIAT";
39
+ CRYPTO: "CRYPTO";
40
+ POINT: "POINT";
41
+ RWA: "RWA";
42
+ }>;
43
+ isActive: import("@sinclair/typebox").TBoolean;
44
+ precision: import("@sinclair/typebox").TInteger;
45
+ }>;
46
+ quoteAsset: import("@sinclair/typebox").TObject<{
47
+ symbol: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
48
+ id: import("@sinclair/typebox").TString;
49
+ name: import("@sinclair/typebox").TString;
50
+ code: import("@sinclair/typebox").TString;
51
+ category: import("@sinclair/typebox").TEnum<{
52
+ FIAT: "FIAT";
53
+ CRYPTO: "CRYPTO";
54
+ POINT: "POINT";
55
+ RWA: "RWA";
56
+ }>;
57
+ isActive: import("@sinclair/typebox").TBoolean;
58
+ precision: import("@sinclair/typebox").TInteger;
59
+ }>;
60
+ latestPrice: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
61
+ price: import("@sinclair/typebox").TString;
62
+ effectiveAt: import("@sinclair/typebox").TDate;
63
+ }>, import("@sinclair/typebox").TNull]>;
64
+ }>;
14
65
  export declare const tradeMarketListResponseSchema: import("@sinclair/typebox").TObject<{
15
- data: import("@sinclair/typebox").TArray<import("drizzle-typebox").BuildSchema<"select", {
16
- createdAt: import("drizzle-orm/pg-core").PgColumn<{
17
- name: "created_at";
18
- tableName: "trade_market";
19
- dataType: "date";
20
- columnType: "PgTimestamp";
21
- data: Date;
22
- driverParam: string;
23
- notNull: true;
24
- hasDefault: true;
25
- isPrimaryKey: false;
26
- isAutoincrement: false;
27
- hasRuntimeDefault: false;
28
- enumValues: undefined;
29
- baseColumn: never;
30
- identity: undefined;
31
- generated: undefined;
32
- }, {}, {}>;
33
- updatedAt: import("drizzle-orm/pg-core").PgColumn<{
34
- name: "updated_at";
35
- tableName: "trade_market";
36
- dataType: "date";
37
- columnType: "PgTimestamp";
38
- data: Date;
39
- driverParam: string;
40
- notNull: true;
41
- hasDefault: true;
42
- isPrimaryKey: false;
43
- isAutoincrement: false;
44
- hasRuntimeDefault: false;
45
- enumValues: undefined;
46
- baseColumn: never;
47
- identity: undefined;
48
- generated: undefined;
49
- }, {}, {}>;
50
- id: import("drizzle-orm/pg-core").PgColumn<{
51
- name: "id";
52
- tableName: "trade_market";
53
- dataType: "string";
54
- columnType: "PgUUID";
55
- data: string;
56
- driverParam: string;
57
- notNull: true;
58
- hasDefault: true;
59
- isPrimaryKey: true;
60
- isAutoincrement: false;
61
- hasRuntimeDefault: false;
62
- enumValues: undefined;
63
- baseColumn: never;
64
- identity: undefined;
65
- generated: undefined;
66
- }, {}, {}>;
67
- name: import("drizzle-orm/pg-core").PgColumn<{
68
- name: "name";
69
- tableName: "trade_market";
70
- dataType: "string";
71
- columnType: "PgText";
72
- data: string;
73
- driverParam: string;
74
- notNull: true;
75
- hasDefault: false;
76
- isPrimaryKey: false;
77
- isAutoincrement: false;
78
- hasRuntimeDefault: false;
79
- enumValues: [string, ...string[]];
80
- baseColumn: never;
81
- identity: undefined;
82
- generated: undefined;
83
- }, {}, {}>;
84
- baseAssetId: import("drizzle-orm/pg-core").PgColumn<{
85
- name: "base_asset_id";
86
- tableName: "trade_market";
87
- dataType: "string";
88
- columnType: "PgUUID";
89
- data: string;
90
- driverParam: string;
91
- notNull: true;
92
- hasDefault: false;
93
- isPrimaryKey: false;
94
- isAutoincrement: false;
95
- hasRuntimeDefault: false;
96
- enumValues: undefined;
97
- baseColumn: never;
98
- identity: undefined;
99
- generated: undefined;
100
- }, {}, {}>;
101
- quoteAssetId: import("drizzle-orm/pg-core").PgColumn<{
102
- name: "quote_asset_id";
103
- tableName: "trade_market";
104
- dataType: "string";
105
- columnType: "PgUUID";
106
- data: string;
107
- driverParam: string;
108
- notNull: true;
109
- hasDefault: false;
110
- isPrimaryKey: false;
111
- isAutoincrement: false;
112
- hasRuntimeDefault: false;
113
- enumValues: undefined;
114
- baseColumn: never;
115
- identity: undefined;
116
- generated: undefined;
117
- }, {}, {}>;
118
- isBuyEnabled: import("drizzle-orm/pg-core").PgColumn<{
119
- name: "is_buy_enabled";
120
- tableName: "trade_market";
121
- dataType: "boolean";
122
- columnType: "PgBoolean";
123
- data: boolean;
124
- driverParam: boolean;
125
- notNull: true;
126
- hasDefault: true;
127
- isPrimaryKey: false;
128
- isAutoincrement: false;
129
- hasRuntimeDefault: false;
130
- enumValues: undefined;
131
- baseColumn: never;
132
- identity: undefined;
133
- generated: undefined;
134
- }, {}, {}>;
135
- isSellEnabled: import("drizzle-orm/pg-core").PgColumn<{
136
- name: "is_sell_enabled";
137
- tableName: "trade_market";
138
- dataType: "boolean";
139
- columnType: "PgBoolean";
140
- data: boolean;
141
- driverParam: boolean;
142
- notNull: true;
143
- hasDefault: true;
144
- isPrimaryKey: false;
145
- isAutoincrement: false;
146
- hasRuntimeDefault: false;
147
- enumValues: undefined;
148
- baseColumn: never;
149
- identity: undefined;
150
- generated: undefined;
151
- }, {}, {}>;
152
- minBaseAmount: import("drizzle-orm/pg-core").PgColumn<{
153
- name: "min_base_amount";
154
- tableName: "trade_market";
155
- dataType: "string";
156
- columnType: "PgNumeric";
157
- data: string;
158
- driverParam: string;
159
- notNull: true;
160
- hasDefault: true;
161
- isPrimaryKey: false;
162
- isAutoincrement: false;
163
- hasRuntimeDefault: false;
164
- enumValues: undefined;
165
- baseColumn: never;
166
- identity: undefined;
167
- generated: undefined;
168
- }, {}, {}>;
169
- maxBaseAmount: import("drizzle-orm/pg-core").PgColumn<{
170
- name: "max_base_amount";
171
- tableName: "trade_market";
172
- dataType: "string";
173
- columnType: "PgNumeric";
174
- data: string;
175
- driverParam: string;
176
- notNull: false;
177
- hasDefault: false;
178
- isPrimaryKey: false;
179
- isAutoincrement: false;
180
- hasRuntimeDefault: false;
181
- enumValues: undefined;
182
- baseColumn: never;
183
- identity: undefined;
184
- generated: undefined;
185
- }, {}, {}>;
186
- dailyUserBuyBaseLimit: import("drizzle-orm/pg-core").PgColumn<{
187
- name: "daily_user_buy_base_limit";
188
- tableName: "trade_market";
189
- dataType: "string";
190
- columnType: "PgNumeric";
191
- data: string;
192
- driverParam: string;
193
- notNull: false;
194
- hasDefault: false;
195
- isPrimaryKey: false;
196
- isAutoincrement: false;
197
- hasRuntimeDefault: false;
198
- enumValues: undefined;
199
- baseColumn: never;
200
- identity: undefined;
201
- generated: undefined;
202
- }, {}, {}>;
203
- dailyUserSellBaseLimit: import("drizzle-orm/pg-core").PgColumn<{
204
- name: "daily_user_sell_base_limit";
205
- tableName: "trade_market";
206
- dataType: "string";
207
- columnType: "PgNumeric";
208
- data: string;
209
- driverParam: string;
210
- notNull: false;
211
- hasDefault: false;
212
- isPrimaryKey: false;
213
- isAutoincrement: false;
214
- hasRuntimeDefault: false;
215
- enumValues: undefined;
216
- baseColumn: never;
217
- identity: undefined;
218
- generated: undefined;
219
- }, {}, {}>;
220
- maxSlippageBps: import("drizzle-orm/pg-core").PgColumn<{
221
- name: "max_slippage_bps";
222
- tableName: "trade_market";
223
- dataType: "string";
224
- columnType: "PgNumeric";
225
- data: string;
226
- driverParam: string;
227
- notNull: true;
228
- hasDefault: true;
229
- isPrimaryKey: false;
230
- isAutoincrement: false;
231
- hasRuntimeDefault: false;
232
- enumValues: undefined;
233
- baseColumn: never;
234
- identity: undefined;
235
- generated: undefined;
236
- }, {}, {}>;
237
- status: import("drizzle-orm/pg-core").PgColumn<{
238
- name: "status";
239
- tableName: "trade_market";
240
- dataType: "string";
241
- columnType: "PgEnumColumn";
242
- data: "active" | "draft" | "paused" | "ended";
243
- driverParam: string;
244
- notNull: true;
245
- hasDefault: true;
246
- isPrimaryKey: false;
247
- isAutoincrement: false;
248
- hasRuntimeDefault: false;
249
- enumValues: ["draft", "active", "paused", "ended"];
250
- baseColumn: never;
251
- identity: undefined;
252
- generated: undefined;
253
- }, {}, {}>;
254
- }, undefined>>;
66
+ data: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
67
+ id: import("@sinclair/typebox").TString;
68
+ name: import("@sinclair/typebox").TString;
69
+ status: import("@sinclair/typebox").TEnum<{
70
+ active: "active";
71
+ draft: "draft";
72
+ paused: "paused";
73
+ ended: "ended";
74
+ }>;
75
+ baseAssetId: import("@sinclair/typebox").TString;
76
+ quoteAssetId: import("@sinclair/typebox").TString;
77
+ isBuyEnabled: import("@sinclair/typebox").TBoolean;
78
+ isSellEnabled: import("@sinclair/typebox").TBoolean;
79
+ minBaseAmount: import("@sinclair/typebox").TString;
80
+ maxBaseAmount: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
81
+ dailyUserBuyBaseLimit: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
82
+ dailyUserSellBaseLimit: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
83
+ maxSlippageBps: import("@sinclair/typebox").TString;
84
+ baseAsset: import("@sinclair/typebox").TObject<{
85
+ symbol: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
86
+ id: import("@sinclair/typebox").TString;
87
+ name: import("@sinclair/typebox").TString;
88
+ code: import("@sinclair/typebox").TString;
89
+ category: import("@sinclair/typebox").TEnum<{
90
+ FIAT: "FIAT";
91
+ CRYPTO: "CRYPTO";
92
+ POINT: "POINT";
93
+ RWA: "RWA";
94
+ }>;
95
+ isActive: import("@sinclair/typebox").TBoolean;
96
+ precision: import("@sinclair/typebox").TInteger;
97
+ }>;
98
+ quoteAsset: import("@sinclair/typebox").TObject<{
99
+ symbol: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
100
+ id: import("@sinclair/typebox").TString;
101
+ name: import("@sinclair/typebox").TString;
102
+ code: import("@sinclair/typebox").TString;
103
+ category: import("@sinclair/typebox").TEnum<{
104
+ FIAT: "FIAT";
105
+ CRYPTO: "CRYPTO";
106
+ POINT: "POINT";
107
+ RWA: "RWA";
108
+ }>;
109
+ isActive: import("@sinclair/typebox").TBoolean;
110
+ precision: import("@sinclair/typebox").TInteger;
111
+ }>;
112
+ latestPrice: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
113
+ price: import("@sinclair/typebox").TString;
114
+ effectiveAt: import("@sinclair/typebox").TDate;
115
+ }>, import("@sinclair/typebox").TNull]>;
116
+ }>>;
255
117
  pagination: import("@sinclair/typebox").TObject<{
256
118
  pageSize: import("@sinclair/typebox").TNumber;
257
119
  pageIndex: import("@sinclair/typebox").TNumber;
@@ -261,246 +123,57 @@ export declare const tradeMarketListResponseSchema: import("@sinclair/typebox").
261
123
  }>;
262
124
  }>;
263
125
  export type TradeMarketListResponseType = typeof tradeMarketListResponseSchema.static;
264
- export declare const tradeMarketResponseSchema: import("drizzle-typebox").BuildSchema<"select", {
265
- createdAt: import("drizzle-orm/pg-core").PgColumn<{
266
- name: "created_at";
267
- tableName: "trade_market";
268
- dataType: "date";
269
- columnType: "PgTimestamp";
270
- data: Date;
271
- driverParam: string;
272
- notNull: true;
273
- hasDefault: true;
274
- isPrimaryKey: false;
275
- isAutoincrement: false;
276
- hasRuntimeDefault: false;
277
- enumValues: undefined;
278
- baseColumn: never;
279
- identity: undefined;
280
- generated: undefined;
281
- }, {}, {}>;
282
- updatedAt: import("drizzle-orm/pg-core").PgColumn<{
283
- name: "updated_at";
284
- tableName: "trade_market";
285
- dataType: "date";
286
- columnType: "PgTimestamp";
287
- data: Date;
288
- driverParam: string;
289
- notNull: true;
290
- hasDefault: true;
291
- isPrimaryKey: false;
292
- isAutoincrement: false;
293
- hasRuntimeDefault: false;
294
- enumValues: undefined;
295
- baseColumn: never;
296
- identity: undefined;
297
- generated: undefined;
298
- }, {}, {}>;
299
- id: import("drizzle-orm/pg-core").PgColumn<{
300
- name: "id";
301
- tableName: "trade_market";
302
- dataType: "string";
303
- columnType: "PgUUID";
304
- data: string;
305
- driverParam: string;
306
- notNull: true;
307
- hasDefault: true;
308
- isPrimaryKey: true;
309
- isAutoincrement: false;
310
- hasRuntimeDefault: false;
311
- enumValues: undefined;
312
- baseColumn: never;
313
- identity: undefined;
314
- generated: undefined;
315
- }, {}, {}>;
316
- name: import("drizzle-orm/pg-core").PgColumn<{
317
- name: "name";
318
- tableName: "trade_market";
319
- dataType: "string";
320
- columnType: "PgText";
321
- data: string;
322
- driverParam: string;
323
- notNull: true;
324
- hasDefault: false;
325
- isPrimaryKey: false;
326
- isAutoincrement: false;
327
- hasRuntimeDefault: false;
328
- enumValues: [string, ...string[]];
329
- baseColumn: never;
330
- identity: undefined;
331
- generated: undefined;
332
- }, {}, {}>;
333
- baseAssetId: import("drizzle-orm/pg-core").PgColumn<{
334
- name: "base_asset_id";
335
- tableName: "trade_market";
336
- dataType: "string";
337
- columnType: "PgUUID";
338
- data: string;
339
- driverParam: string;
340
- notNull: true;
341
- hasDefault: false;
342
- isPrimaryKey: false;
343
- isAutoincrement: false;
344
- hasRuntimeDefault: false;
345
- enumValues: undefined;
346
- baseColumn: never;
347
- identity: undefined;
348
- generated: undefined;
349
- }, {}, {}>;
350
- quoteAssetId: import("drizzle-orm/pg-core").PgColumn<{
351
- name: "quote_asset_id";
352
- tableName: "trade_market";
353
- dataType: "string";
354
- columnType: "PgUUID";
355
- data: string;
356
- driverParam: string;
357
- notNull: true;
358
- hasDefault: false;
359
- isPrimaryKey: false;
360
- isAutoincrement: false;
361
- hasRuntimeDefault: false;
362
- enumValues: undefined;
363
- baseColumn: never;
364
- identity: undefined;
365
- generated: undefined;
366
- }, {}, {}>;
367
- isBuyEnabled: import("drizzle-orm/pg-core").PgColumn<{
368
- name: "is_buy_enabled";
369
- tableName: "trade_market";
370
- dataType: "boolean";
371
- columnType: "PgBoolean";
372
- data: boolean;
373
- driverParam: boolean;
374
- notNull: true;
375
- hasDefault: true;
376
- isPrimaryKey: false;
377
- isAutoincrement: false;
378
- hasRuntimeDefault: false;
379
- enumValues: undefined;
380
- baseColumn: never;
381
- identity: undefined;
382
- generated: undefined;
383
- }, {}, {}>;
384
- isSellEnabled: import("drizzle-orm/pg-core").PgColumn<{
385
- name: "is_sell_enabled";
386
- tableName: "trade_market";
387
- dataType: "boolean";
388
- columnType: "PgBoolean";
389
- data: boolean;
390
- driverParam: boolean;
391
- notNull: true;
392
- hasDefault: true;
393
- isPrimaryKey: false;
394
- isAutoincrement: false;
395
- hasRuntimeDefault: false;
396
- enumValues: undefined;
397
- baseColumn: never;
398
- identity: undefined;
399
- generated: undefined;
400
- }, {}, {}>;
401
- minBaseAmount: import("drizzle-orm/pg-core").PgColumn<{
402
- name: "min_base_amount";
403
- tableName: "trade_market";
404
- dataType: "string";
405
- columnType: "PgNumeric";
406
- data: string;
407
- driverParam: string;
408
- notNull: true;
409
- hasDefault: true;
410
- isPrimaryKey: false;
411
- isAutoincrement: false;
412
- hasRuntimeDefault: false;
413
- enumValues: undefined;
414
- baseColumn: never;
415
- identity: undefined;
416
- generated: undefined;
417
- }, {}, {}>;
418
- maxBaseAmount: import("drizzle-orm/pg-core").PgColumn<{
419
- name: "max_base_amount";
420
- tableName: "trade_market";
421
- dataType: "string";
422
- columnType: "PgNumeric";
423
- data: string;
424
- driverParam: string;
425
- notNull: false;
426
- hasDefault: false;
427
- isPrimaryKey: false;
428
- isAutoincrement: false;
429
- hasRuntimeDefault: false;
430
- enumValues: undefined;
431
- baseColumn: never;
432
- identity: undefined;
433
- generated: undefined;
434
- }, {}, {}>;
435
- dailyUserBuyBaseLimit: import("drizzle-orm/pg-core").PgColumn<{
436
- name: "daily_user_buy_base_limit";
437
- tableName: "trade_market";
438
- dataType: "string";
439
- columnType: "PgNumeric";
440
- data: string;
441
- driverParam: string;
442
- notNull: false;
443
- hasDefault: false;
444
- isPrimaryKey: false;
445
- isAutoincrement: false;
446
- hasRuntimeDefault: false;
447
- enumValues: undefined;
448
- baseColumn: never;
449
- identity: undefined;
450
- generated: undefined;
451
- }, {}, {}>;
452
- dailyUserSellBaseLimit: import("drizzle-orm/pg-core").PgColumn<{
453
- name: "daily_user_sell_base_limit";
454
- tableName: "trade_market";
455
- dataType: "string";
456
- columnType: "PgNumeric";
457
- data: string;
458
- driverParam: string;
459
- notNull: false;
460
- hasDefault: false;
461
- isPrimaryKey: false;
462
- isAutoincrement: false;
463
- hasRuntimeDefault: false;
464
- enumValues: undefined;
465
- baseColumn: never;
466
- identity: undefined;
467
- generated: undefined;
468
- }, {}, {}>;
469
- maxSlippageBps: import("drizzle-orm/pg-core").PgColumn<{
470
- name: "max_slippage_bps";
471
- tableName: "trade_market";
472
- dataType: "string";
473
- columnType: "PgNumeric";
474
- data: string;
475
- driverParam: string;
476
- notNull: true;
477
- hasDefault: true;
478
- isPrimaryKey: false;
479
- isAutoincrement: false;
480
- hasRuntimeDefault: false;
481
- enumValues: undefined;
482
- baseColumn: never;
483
- identity: undefined;
484
- generated: undefined;
485
- }, {}, {}>;
486
- status: import("drizzle-orm/pg-core").PgColumn<{
487
- name: "status";
488
- tableName: "trade_market";
489
- dataType: "string";
490
- columnType: "PgEnumColumn";
491
- data: "active" | "draft" | "paused" | "ended";
492
- driverParam: string;
493
- notNull: true;
494
- hasDefault: true;
495
- isPrimaryKey: false;
496
- isAutoincrement: false;
497
- hasRuntimeDefault: false;
498
- enumValues: ["draft", "active", "paused", "ended"];
499
- baseColumn: never;
500
- identity: undefined;
501
- generated: undefined;
502
- }, {}, {}>;
503
- }, undefined>;
126
+ export declare const tradeMarketResponseSchema: import("@sinclair/typebox").TObject<{
127
+ id: import("@sinclair/typebox").TString;
128
+ name: import("@sinclair/typebox").TString;
129
+ status: import("@sinclair/typebox").TEnum<{
130
+ active: "active";
131
+ draft: "draft";
132
+ paused: "paused";
133
+ ended: "ended";
134
+ }>;
135
+ baseAssetId: import("@sinclair/typebox").TString;
136
+ quoteAssetId: import("@sinclair/typebox").TString;
137
+ isBuyEnabled: import("@sinclair/typebox").TBoolean;
138
+ isSellEnabled: import("@sinclair/typebox").TBoolean;
139
+ minBaseAmount: import("@sinclair/typebox").TString;
140
+ maxBaseAmount: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
141
+ dailyUserBuyBaseLimit: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
142
+ dailyUserSellBaseLimit: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
143
+ maxSlippageBps: import("@sinclair/typebox").TString;
144
+ baseAsset: import("@sinclair/typebox").TObject<{
145
+ symbol: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
146
+ id: import("@sinclair/typebox").TString;
147
+ name: import("@sinclair/typebox").TString;
148
+ code: import("@sinclair/typebox").TString;
149
+ category: import("@sinclair/typebox").TEnum<{
150
+ FIAT: "FIAT";
151
+ CRYPTO: "CRYPTO";
152
+ POINT: "POINT";
153
+ RWA: "RWA";
154
+ }>;
155
+ isActive: import("@sinclair/typebox").TBoolean;
156
+ precision: import("@sinclair/typebox").TInteger;
157
+ }>;
158
+ quoteAsset: import("@sinclair/typebox").TObject<{
159
+ symbol: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
160
+ id: import("@sinclair/typebox").TString;
161
+ name: import("@sinclair/typebox").TString;
162
+ code: import("@sinclair/typebox").TString;
163
+ category: import("@sinclair/typebox").TEnum<{
164
+ FIAT: "FIAT";
165
+ CRYPTO: "CRYPTO";
166
+ POINT: "POINT";
167
+ RWA: "RWA";
168
+ }>;
169
+ isActive: import("@sinclair/typebox").TBoolean;
170
+ precision: import("@sinclair/typebox").TInteger;
171
+ }>;
172
+ latestPrice: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
173
+ price: import("@sinclair/typebox").TString;
174
+ effectiveAt: import("@sinclair/typebox").TDate;
175
+ }>, import("@sinclair/typebox").TNull]>;
176
+ }>;
504
177
  export type TradeMarketResponseType = typeof tradeMarketResponseSchema.static;
505
178
  export declare const tradeMarketOrderCreateSchema: import("@sinclair/typebox").TObject<{
506
179
  marketId: import("@sinclair/typebox").TString;