@r2wa-org/eden 0.0.69 → 0.0.71
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.
- package/dist/src/admin/index.d.ts +178 -4
- package/dist/src/asset-convert-product/admin/dto.schemas.d.ts +235 -0
- package/dist/src/asset-convert-product/admin/router.d.ts +174 -0
- package/dist/src/asset-convert-product/admin/service.d.ts +170 -0
- package/dist/src/asset-convert-product/db.schemas.d.ts +34 -0
- package/dist/src/asset-convert-product/schema.d.ts +17 -0
- package/dist/src/asset-convert-product/user/dto.schemas.d.ts +4 -0
- package/dist/src/asset-convert-product/user/router.d.ts +3 -0
- package/dist/src/asset-convert-product/user/service.d.ts +3 -0
- package/dist/src/index.d.ts +184 -7
- package/dist/src/news/admin/dto.schemas.d.ts +5 -5
- package/dist/src/news/admin/router.d.ts +4 -4
- package/dist/src/news/admin/service.d.ts +3 -3
- package/dist/src/news/user/dto.schemas.d.ts +5 -5
- package/dist/src/news/user/router.d.ts +3 -3
- package/dist/src/news/user/service.d.ts +4 -4
- package/package.json +1 -1
|
@@ -15,6 +15,12 @@ export declare const assetConvertAssetSnapshotSchema: import("@sinclair/typebox"
|
|
|
15
15
|
id: import("@sinclair/typebox").TString;
|
|
16
16
|
name: import("@sinclair/typebox").TString;
|
|
17
17
|
code: import("@sinclair/typebox").TString;
|
|
18
|
+
category: import("@sinclair/typebox").TEnum<{
|
|
19
|
+
FIAT: "FIAT";
|
|
20
|
+
CRYPTO: "CRYPTO";
|
|
21
|
+
POINT: "POINT";
|
|
22
|
+
RWA: "RWA";
|
|
23
|
+
}>;
|
|
18
24
|
isActive: import("@sinclair/typebox").TBoolean;
|
|
19
25
|
precision: import("@sinclair/typebox").TInteger;
|
|
20
26
|
}>;
|
|
@@ -54,11 +60,18 @@ export declare const assetConvertProductAdminResponseSchema: import("@sinclair/t
|
|
|
54
60
|
locked: "locked";
|
|
55
61
|
}>;
|
|
56
62
|
allowPurchase: import("@sinclair/typebox").TBoolean;
|
|
63
|
+
isHot: import("@sinclair/typebox").TBoolean;
|
|
57
64
|
targetAsset: import("@sinclair/typebox").TObject<{
|
|
58
65
|
symbol: import("@sinclair/typebox").TString;
|
|
59
66
|
id: import("@sinclair/typebox").TString;
|
|
60
67
|
name: import("@sinclair/typebox").TString;
|
|
61
68
|
code: import("@sinclair/typebox").TString;
|
|
69
|
+
category: import("@sinclair/typebox").TEnum<{
|
|
70
|
+
FIAT: "FIAT";
|
|
71
|
+
CRYPTO: "CRYPTO";
|
|
72
|
+
POINT: "POINT";
|
|
73
|
+
RWA: "RWA";
|
|
74
|
+
}>;
|
|
62
75
|
isActive: import("@sinclair/typebox").TBoolean;
|
|
63
76
|
precision: import("@sinclair/typebox").TInteger;
|
|
64
77
|
}>;
|
|
@@ -67,6 +80,12 @@ export declare const assetConvertProductAdminResponseSchema: import("@sinclair/t
|
|
|
67
80
|
id: import("@sinclair/typebox").TString;
|
|
68
81
|
name: import("@sinclair/typebox").TString;
|
|
69
82
|
code: import("@sinclair/typebox").TString;
|
|
83
|
+
category: import("@sinclair/typebox").TEnum<{
|
|
84
|
+
FIAT: "FIAT";
|
|
85
|
+
CRYPTO: "CRYPTO";
|
|
86
|
+
POINT: "POINT";
|
|
87
|
+
RWA: "RWA";
|
|
88
|
+
}>;
|
|
70
89
|
isActive: import("@sinclair/typebox").TBoolean;
|
|
71
90
|
precision: import("@sinclair/typebox").TInteger;
|
|
72
91
|
}>;
|
|
@@ -122,6 +141,9 @@ export declare const assetConvertOrderAdminResponseSchema: import("@sinclair/typ
|
|
|
122
141
|
banned: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TBoolean, import("@sinclair/typebox").TNull]>;
|
|
123
142
|
}>;
|
|
124
143
|
product: import("@sinclair/typebox").TObject<{
|
|
144
|
+
createdAt: import("@sinclair/typebox").TDate;
|
|
145
|
+
updatedAt: import("@sinclair/typebox").TDate;
|
|
146
|
+
description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
125
147
|
id: import("@sinclair/typebox").TString;
|
|
126
148
|
name: import("@sinclair/typebox").TString;
|
|
127
149
|
status: import("@sinclair/typebox").TEnum<{
|
|
@@ -136,12 +158,69 @@ export declare const assetConvertOrderAdminResponseSchema: import("@sinclair/typ
|
|
|
136
158
|
real_estate: "real_estate";
|
|
137
159
|
corporate_credit: "corporate_credit";
|
|
138
160
|
}>;
|
|
161
|
+
targetAssetId: import("@sinclair/typebox").TString;
|
|
162
|
+
payAssetId: import("@sinclair/typebox").TString;
|
|
163
|
+
payAccountTypeId: import("@sinclair/typebox").TString;
|
|
164
|
+
receiveAccountTypeId: import("@sinclair/typebox").TString;
|
|
165
|
+
minPayAmount: import("@sinclair/typebox").TString;
|
|
166
|
+
settlementMode: import("@sinclair/typebox").TEnum<{
|
|
167
|
+
available: "available";
|
|
168
|
+
locked: "locked";
|
|
169
|
+
}>;
|
|
170
|
+
allowPurchase: import("@sinclair/typebox").TBoolean;
|
|
171
|
+
isHot: import("@sinclair/typebox").TBoolean;
|
|
172
|
+
targetAsset: import("@sinclair/typebox").TObject<{
|
|
173
|
+
symbol: import("@sinclair/typebox").TString;
|
|
174
|
+
id: import("@sinclair/typebox").TString;
|
|
175
|
+
name: import("@sinclair/typebox").TString;
|
|
176
|
+
code: import("@sinclair/typebox").TString;
|
|
177
|
+
category: import("@sinclair/typebox").TEnum<{
|
|
178
|
+
FIAT: "FIAT";
|
|
179
|
+
CRYPTO: "CRYPTO";
|
|
180
|
+
POINT: "POINT";
|
|
181
|
+
RWA: "RWA";
|
|
182
|
+
}>;
|
|
183
|
+
isActive: import("@sinclair/typebox").TBoolean;
|
|
184
|
+
precision: import("@sinclair/typebox").TInteger;
|
|
185
|
+
}>;
|
|
186
|
+
payAsset: import("@sinclair/typebox").TObject<{
|
|
187
|
+
symbol: import("@sinclair/typebox").TString;
|
|
188
|
+
id: import("@sinclair/typebox").TString;
|
|
189
|
+
name: import("@sinclair/typebox").TString;
|
|
190
|
+
code: import("@sinclair/typebox").TString;
|
|
191
|
+
category: import("@sinclair/typebox").TEnum<{
|
|
192
|
+
FIAT: "FIAT";
|
|
193
|
+
CRYPTO: "CRYPTO";
|
|
194
|
+
POINT: "POINT";
|
|
195
|
+
RWA: "RWA";
|
|
196
|
+
}>;
|
|
197
|
+
isActive: import("@sinclair/typebox").TBoolean;
|
|
198
|
+
precision: import("@sinclair/typebox").TInteger;
|
|
199
|
+
}>;
|
|
200
|
+
payAccountType: import("@sinclair/typebox").TObject<{
|
|
201
|
+
id: import("@sinclair/typebox").TString;
|
|
202
|
+
name: import("@sinclair/typebox").TString;
|
|
203
|
+
key: import("@sinclair/typebox").TString;
|
|
204
|
+
isActive: import("@sinclair/typebox").TBoolean;
|
|
205
|
+
}>;
|
|
206
|
+
receiveAccountType: import("@sinclair/typebox").TObject<{
|
|
207
|
+
id: import("@sinclair/typebox").TString;
|
|
208
|
+
name: import("@sinclair/typebox").TString;
|
|
209
|
+
key: import("@sinclair/typebox").TString;
|
|
210
|
+
isActive: import("@sinclair/typebox").TBoolean;
|
|
211
|
+
}>;
|
|
139
212
|
}>;
|
|
140
213
|
payAssetSnapshot: import("@sinclair/typebox").TObject<{
|
|
141
214
|
symbol: import("@sinclair/typebox").TString;
|
|
142
215
|
id: import("@sinclair/typebox").TString;
|
|
143
216
|
name: import("@sinclair/typebox").TString;
|
|
144
217
|
code: import("@sinclair/typebox").TString;
|
|
218
|
+
category: import("@sinclair/typebox").TEnum<{
|
|
219
|
+
FIAT: "FIAT";
|
|
220
|
+
CRYPTO: "CRYPTO";
|
|
221
|
+
POINT: "POINT";
|
|
222
|
+
RWA: "RWA";
|
|
223
|
+
}>;
|
|
145
224
|
isActive: import("@sinclair/typebox").TBoolean;
|
|
146
225
|
precision: import("@sinclair/typebox").TInteger;
|
|
147
226
|
}>;
|
|
@@ -150,6 +229,12 @@ export declare const assetConvertOrderAdminResponseSchema: import("@sinclair/typ
|
|
|
150
229
|
id: import("@sinclair/typebox").TString;
|
|
151
230
|
name: import("@sinclair/typebox").TString;
|
|
152
231
|
code: import("@sinclair/typebox").TString;
|
|
232
|
+
category: import("@sinclair/typebox").TEnum<{
|
|
233
|
+
FIAT: "FIAT";
|
|
234
|
+
CRYPTO: "CRYPTO";
|
|
235
|
+
POINT: "POINT";
|
|
236
|
+
RWA: "RWA";
|
|
237
|
+
}>;
|
|
153
238
|
isActive: import("@sinclair/typebox").TBoolean;
|
|
154
239
|
precision: import("@sinclair/typebox").TInteger;
|
|
155
240
|
}>;
|
|
@@ -158,11 +243,18 @@ export declare const assetConvertOrderAdminResponseSchema: import("@sinclair/typ
|
|
|
158
243
|
id: import("@sinclair/typebox").TString;
|
|
159
244
|
name: import("@sinclair/typebox").TString;
|
|
160
245
|
code: import("@sinclair/typebox").TString;
|
|
246
|
+
category: import("@sinclair/typebox").TEnum<{
|
|
247
|
+
FIAT: "FIAT";
|
|
248
|
+
CRYPTO: "CRYPTO";
|
|
249
|
+
POINT: "POINT";
|
|
250
|
+
RWA: "RWA";
|
|
251
|
+
}>;
|
|
161
252
|
isActive: import("@sinclair/typebox").TBoolean;
|
|
162
253
|
precision: import("@sinclair/typebox").TInteger;
|
|
163
254
|
}>;
|
|
164
255
|
sourcePayAccount: import("@sinclair/typebox").TObject<{
|
|
165
256
|
id: import("@sinclair/typebox").TString;
|
|
257
|
+
userId: import("@sinclair/typebox").TString;
|
|
166
258
|
status: import("@sinclair/typebox").TEnum<{
|
|
167
259
|
active: "active";
|
|
168
260
|
frozen: "frozen";
|
|
@@ -173,6 +265,7 @@ export declare const assetConvertOrderAdminResponseSchema: import("@sinclair/typ
|
|
|
173
265
|
}>;
|
|
174
266
|
receiveAccount: import("@sinclair/typebox").TObject<{
|
|
175
267
|
id: import("@sinclair/typebox").TString;
|
|
268
|
+
userId: import("@sinclair/typebox").TString;
|
|
176
269
|
status: import("@sinclair/typebox").TEnum<{
|
|
177
270
|
active: "active";
|
|
178
271
|
frozen: "frozen";
|
|
@@ -207,6 +300,19 @@ export declare const assetConvertOrderAdminResponseSchema: import("@sinclair/typ
|
|
|
207
300
|
trade_market_sell_quote_transfer: "trade_market_sell_quote_transfer";
|
|
208
301
|
}>;
|
|
209
302
|
amount: import("@sinclair/typebox").TString;
|
|
303
|
+
referenceId: import("@sinclair/typebox").TString;
|
|
304
|
+
referenceType: import("@sinclair/typebox").TEnum<{
|
|
305
|
+
deposit_order: "deposit_order";
|
|
306
|
+
withdraw_order: "withdraw_order";
|
|
307
|
+
transfer_order: "transfer_order";
|
|
308
|
+
internal_transfer_order: "internal_transfer_order";
|
|
309
|
+
manual_adjustment: "manual_adjustment";
|
|
310
|
+
welfare_cycle_subscription: "welfare_cycle_subscription";
|
|
311
|
+
welfare_cycle_daily_payout: "welfare_cycle_daily_payout";
|
|
312
|
+
welfare_cycle_maturity_settlement: "welfare_cycle_maturity_settlement";
|
|
313
|
+
asset_convert_order: "asset_convert_order";
|
|
314
|
+
trade_market_order: "trade_market_order";
|
|
315
|
+
}>;
|
|
210
316
|
}>>;
|
|
211
317
|
creditLedgerEntry: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
212
318
|
id: import("@sinclair/typebox").TString;
|
|
@@ -234,6 +340,19 @@ export declare const assetConvertOrderAdminResponseSchema: import("@sinclair/typ
|
|
|
234
340
|
trade_market_sell_quote_transfer: "trade_market_sell_quote_transfer";
|
|
235
341
|
}>;
|
|
236
342
|
amount: import("@sinclair/typebox").TString;
|
|
343
|
+
referenceId: import("@sinclair/typebox").TString;
|
|
344
|
+
referenceType: import("@sinclair/typebox").TEnum<{
|
|
345
|
+
deposit_order: "deposit_order";
|
|
346
|
+
withdraw_order: "withdraw_order";
|
|
347
|
+
transfer_order: "transfer_order";
|
|
348
|
+
internal_transfer_order: "internal_transfer_order";
|
|
349
|
+
manual_adjustment: "manual_adjustment";
|
|
350
|
+
welfare_cycle_subscription: "welfare_cycle_subscription";
|
|
351
|
+
welfare_cycle_daily_payout: "welfare_cycle_daily_payout";
|
|
352
|
+
welfare_cycle_maturity_settlement: "welfare_cycle_maturity_settlement";
|
|
353
|
+
asset_convert_order: "asset_convert_order";
|
|
354
|
+
trade_market_order: "trade_market_order";
|
|
355
|
+
}>;
|
|
237
356
|
}>>;
|
|
238
357
|
}>;
|
|
239
358
|
export type AssetConvertOrderAdminResponseType = typeof assetConvertOrderAdminResponseSchema.static;
|
|
@@ -262,6 +381,7 @@ export declare const assetConvertProductCreateSchema: import("@sinclair/typebox"
|
|
|
262
381
|
ended: "ended";
|
|
263
382
|
}>>;
|
|
264
383
|
allowPurchase: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
384
|
+
isHot: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
265
385
|
}>;
|
|
266
386
|
export type AssetConvertProductCreateInputType = typeof assetConvertProductCreateSchema.static;
|
|
267
387
|
export declare const assetConvertProductUpdateSchema: import("@sinclair/typebox").TObject<{
|
|
@@ -289,6 +409,7 @@ export declare const assetConvertProductUpdateSchema: import("@sinclair/typebox"
|
|
|
289
409
|
ended: "ended";
|
|
290
410
|
}>>;
|
|
291
411
|
allowPurchase: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
412
|
+
isHot: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
292
413
|
}>;
|
|
293
414
|
export type AssetConvertProductUpdateInputType = typeof assetConvertProductUpdateSchema.static;
|
|
294
415
|
export declare const assetConvertProductListQuerySchema: import("@sinclair/typebox").TObject<{
|
|
@@ -315,6 +436,7 @@ export declare const assetConvertProductListQuerySchema: import("@sinclair/typeb
|
|
|
315
436
|
locked: "locked";
|
|
316
437
|
}>>;
|
|
317
438
|
allowPurchase: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
439
|
+
isHot: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
318
440
|
createdAtStart: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TDate>;
|
|
319
441
|
createdAtEnd: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TDate>;
|
|
320
442
|
updatedAtStart: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TDate>;
|
|
@@ -354,11 +476,18 @@ export declare const assetConvertProductListResponseSchema: import("@sinclair/ty
|
|
|
354
476
|
locked: "locked";
|
|
355
477
|
}>;
|
|
356
478
|
allowPurchase: import("@sinclair/typebox").TBoolean;
|
|
479
|
+
isHot: import("@sinclair/typebox").TBoolean;
|
|
357
480
|
targetAsset: import("@sinclair/typebox").TObject<{
|
|
358
481
|
symbol: import("@sinclair/typebox").TString;
|
|
359
482
|
id: import("@sinclair/typebox").TString;
|
|
360
483
|
name: import("@sinclair/typebox").TString;
|
|
361
484
|
code: import("@sinclair/typebox").TString;
|
|
485
|
+
category: import("@sinclair/typebox").TEnum<{
|
|
486
|
+
FIAT: "FIAT";
|
|
487
|
+
CRYPTO: "CRYPTO";
|
|
488
|
+
POINT: "POINT";
|
|
489
|
+
RWA: "RWA";
|
|
490
|
+
}>;
|
|
362
491
|
isActive: import("@sinclair/typebox").TBoolean;
|
|
363
492
|
precision: import("@sinclair/typebox").TInteger;
|
|
364
493
|
}>;
|
|
@@ -367,6 +496,12 @@ export declare const assetConvertProductListResponseSchema: import("@sinclair/ty
|
|
|
367
496
|
id: import("@sinclair/typebox").TString;
|
|
368
497
|
name: import("@sinclair/typebox").TString;
|
|
369
498
|
code: import("@sinclair/typebox").TString;
|
|
499
|
+
category: import("@sinclair/typebox").TEnum<{
|
|
500
|
+
FIAT: "FIAT";
|
|
501
|
+
CRYPTO: "CRYPTO";
|
|
502
|
+
POINT: "POINT";
|
|
503
|
+
RWA: "RWA";
|
|
504
|
+
}>;
|
|
370
505
|
isActive: import("@sinclair/typebox").TBoolean;
|
|
371
506
|
precision: import("@sinclair/typebox").TInteger;
|
|
372
507
|
}>;
|
|
@@ -450,6 +585,9 @@ export declare const assetConvertOrderListResponseSchema: import("@sinclair/type
|
|
|
450
585
|
banned: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TBoolean, import("@sinclair/typebox").TNull]>;
|
|
451
586
|
}>;
|
|
452
587
|
product: import("@sinclair/typebox").TObject<{
|
|
588
|
+
createdAt: import("@sinclair/typebox").TDate;
|
|
589
|
+
updatedAt: import("@sinclair/typebox").TDate;
|
|
590
|
+
description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
453
591
|
id: import("@sinclair/typebox").TString;
|
|
454
592
|
name: import("@sinclair/typebox").TString;
|
|
455
593
|
status: import("@sinclair/typebox").TEnum<{
|
|
@@ -464,12 +602,69 @@ export declare const assetConvertOrderListResponseSchema: import("@sinclair/type
|
|
|
464
602
|
real_estate: "real_estate";
|
|
465
603
|
corporate_credit: "corporate_credit";
|
|
466
604
|
}>;
|
|
605
|
+
targetAssetId: import("@sinclair/typebox").TString;
|
|
606
|
+
payAssetId: import("@sinclair/typebox").TString;
|
|
607
|
+
payAccountTypeId: import("@sinclair/typebox").TString;
|
|
608
|
+
receiveAccountTypeId: import("@sinclair/typebox").TString;
|
|
609
|
+
minPayAmount: import("@sinclair/typebox").TString;
|
|
610
|
+
settlementMode: import("@sinclair/typebox").TEnum<{
|
|
611
|
+
available: "available";
|
|
612
|
+
locked: "locked";
|
|
613
|
+
}>;
|
|
614
|
+
allowPurchase: import("@sinclair/typebox").TBoolean;
|
|
615
|
+
isHot: import("@sinclair/typebox").TBoolean;
|
|
616
|
+
targetAsset: import("@sinclair/typebox").TObject<{
|
|
617
|
+
symbol: import("@sinclair/typebox").TString;
|
|
618
|
+
id: import("@sinclair/typebox").TString;
|
|
619
|
+
name: import("@sinclair/typebox").TString;
|
|
620
|
+
code: import("@sinclair/typebox").TString;
|
|
621
|
+
category: import("@sinclair/typebox").TEnum<{
|
|
622
|
+
FIAT: "FIAT";
|
|
623
|
+
CRYPTO: "CRYPTO";
|
|
624
|
+
POINT: "POINT";
|
|
625
|
+
RWA: "RWA";
|
|
626
|
+
}>;
|
|
627
|
+
isActive: import("@sinclair/typebox").TBoolean;
|
|
628
|
+
precision: import("@sinclair/typebox").TInteger;
|
|
629
|
+
}>;
|
|
630
|
+
payAsset: import("@sinclair/typebox").TObject<{
|
|
631
|
+
symbol: import("@sinclair/typebox").TString;
|
|
632
|
+
id: import("@sinclair/typebox").TString;
|
|
633
|
+
name: import("@sinclair/typebox").TString;
|
|
634
|
+
code: import("@sinclair/typebox").TString;
|
|
635
|
+
category: import("@sinclair/typebox").TEnum<{
|
|
636
|
+
FIAT: "FIAT";
|
|
637
|
+
CRYPTO: "CRYPTO";
|
|
638
|
+
POINT: "POINT";
|
|
639
|
+
RWA: "RWA";
|
|
640
|
+
}>;
|
|
641
|
+
isActive: import("@sinclair/typebox").TBoolean;
|
|
642
|
+
precision: import("@sinclair/typebox").TInteger;
|
|
643
|
+
}>;
|
|
644
|
+
payAccountType: import("@sinclair/typebox").TObject<{
|
|
645
|
+
id: import("@sinclair/typebox").TString;
|
|
646
|
+
name: import("@sinclair/typebox").TString;
|
|
647
|
+
key: import("@sinclair/typebox").TString;
|
|
648
|
+
isActive: import("@sinclair/typebox").TBoolean;
|
|
649
|
+
}>;
|
|
650
|
+
receiveAccountType: import("@sinclair/typebox").TObject<{
|
|
651
|
+
id: import("@sinclair/typebox").TString;
|
|
652
|
+
name: import("@sinclair/typebox").TString;
|
|
653
|
+
key: import("@sinclair/typebox").TString;
|
|
654
|
+
isActive: import("@sinclair/typebox").TBoolean;
|
|
655
|
+
}>;
|
|
467
656
|
}>;
|
|
468
657
|
payAssetSnapshot: import("@sinclair/typebox").TObject<{
|
|
469
658
|
symbol: import("@sinclair/typebox").TString;
|
|
470
659
|
id: import("@sinclair/typebox").TString;
|
|
471
660
|
name: import("@sinclair/typebox").TString;
|
|
472
661
|
code: import("@sinclair/typebox").TString;
|
|
662
|
+
category: import("@sinclair/typebox").TEnum<{
|
|
663
|
+
FIAT: "FIAT";
|
|
664
|
+
CRYPTO: "CRYPTO";
|
|
665
|
+
POINT: "POINT";
|
|
666
|
+
RWA: "RWA";
|
|
667
|
+
}>;
|
|
473
668
|
isActive: import("@sinclair/typebox").TBoolean;
|
|
474
669
|
precision: import("@sinclair/typebox").TInteger;
|
|
475
670
|
}>;
|
|
@@ -478,6 +673,12 @@ export declare const assetConvertOrderListResponseSchema: import("@sinclair/type
|
|
|
478
673
|
id: import("@sinclair/typebox").TString;
|
|
479
674
|
name: import("@sinclair/typebox").TString;
|
|
480
675
|
code: import("@sinclair/typebox").TString;
|
|
676
|
+
category: import("@sinclair/typebox").TEnum<{
|
|
677
|
+
FIAT: "FIAT";
|
|
678
|
+
CRYPTO: "CRYPTO";
|
|
679
|
+
POINT: "POINT";
|
|
680
|
+
RWA: "RWA";
|
|
681
|
+
}>;
|
|
481
682
|
isActive: import("@sinclair/typebox").TBoolean;
|
|
482
683
|
precision: import("@sinclair/typebox").TInteger;
|
|
483
684
|
}>;
|
|
@@ -486,11 +687,18 @@ export declare const assetConvertOrderListResponseSchema: import("@sinclair/type
|
|
|
486
687
|
id: import("@sinclair/typebox").TString;
|
|
487
688
|
name: import("@sinclair/typebox").TString;
|
|
488
689
|
code: import("@sinclair/typebox").TString;
|
|
690
|
+
category: import("@sinclair/typebox").TEnum<{
|
|
691
|
+
FIAT: "FIAT";
|
|
692
|
+
CRYPTO: "CRYPTO";
|
|
693
|
+
POINT: "POINT";
|
|
694
|
+
RWA: "RWA";
|
|
695
|
+
}>;
|
|
489
696
|
isActive: import("@sinclair/typebox").TBoolean;
|
|
490
697
|
precision: import("@sinclair/typebox").TInteger;
|
|
491
698
|
}>;
|
|
492
699
|
sourcePayAccount: import("@sinclair/typebox").TObject<{
|
|
493
700
|
id: import("@sinclair/typebox").TString;
|
|
701
|
+
userId: import("@sinclair/typebox").TString;
|
|
494
702
|
status: import("@sinclair/typebox").TEnum<{
|
|
495
703
|
active: "active";
|
|
496
704
|
frozen: "frozen";
|
|
@@ -501,6 +709,7 @@ export declare const assetConvertOrderListResponseSchema: import("@sinclair/type
|
|
|
501
709
|
}>;
|
|
502
710
|
receiveAccount: import("@sinclair/typebox").TObject<{
|
|
503
711
|
id: import("@sinclair/typebox").TString;
|
|
712
|
+
userId: import("@sinclair/typebox").TString;
|
|
504
713
|
status: import("@sinclair/typebox").TEnum<{
|
|
505
714
|
active: "active";
|
|
506
715
|
frozen: "frozen";
|
|
@@ -535,6 +744,19 @@ export declare const assetConvertOrderListResponseSchema: import("@sinclair/type
|
|
|
535
744
|
trade_market_sell_quote_transfer: "trade_market_sell_quote_transfer";
|
|
536
745
|
}>;
|
|
537
746
|
amount: import("@sinclair/typebox").TString;
|
|
747
|
+
referenceId: import("@sinclair/typebox").TString;
|
|
748
|
+
referenceType: import("@sinclair/typebox").TEnum<{
|
|
749
|
+
deposit_order: "deposit_order";
|
|
750
|
+
withdraw_order: "withdraw_order";
|
|
751
|
+
transfer_order: "transfer_order";
|
|
752
|
+
internal_transfer_order: "internal_transfer_order";
|
|
753
|
+
manual_adjustment: "manual_adjustment";
|
|
754
|
+
welfare_cycle_subscription: "welfare_cycle_subscription";
|
|
755
|
+
welfare_cycle_daily_payout: "welfare_cycle_daily_payout";
|
|
756
|
+
welfare_cycle_maturity_settlement: "welfare_cycle_maturity_settlement";
|
|
757
|
+
asset_convert_order: "asset_convert_order";
|
|
758
|
+
trade_market_order: "trade_market_order";
|
|
759
|
+
}>;
|
|
538
760
|
}>>;
|
|
539
761
|
creditLedgerEntry: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
540
762
|
id: import("@sinclair/typebox").TString;
|
|
@@ -562,6 +784,19 @@ export declare const assetConvertOrderListResponseSchema: import("@sinclair/type
|
|
|
562
784
|
trade_market_sell_quote_transfer: "trade_market_sell_quote_transfer";
|
|
563
785
|
}>;
|
|
564
786
|
amount: import("@sinclair/typebox").TString;
|
|
787
|
+
referenceId: import("@sinclair/typebox").TString;
|
|
788
|
+
referenceType: import("@sinclair/typebox").TEnum<{
|
|
789
|
+
deposit_order: "deposit_order";
|
|
790
|
+
withdraw_order: "withdraw_order";
|
|
791
|
+
transfer_order: "transfer_order";
|
|
792
|
+
internal_transfer_order: "internal_transfer_order";
|
|
793
|
+
manual_adjustment: "manual_adjustment";
|
|
794
|
+
welfare_cycle_subscription: "welfare_cycle_subscription";
|
|
795
|
+
welfare_cycle_daily_payout: "welfare_cycle_daily_payout";
|
|
796
|
+
welfare_cycle_maturity_settlement: "welfare_cycle_maturity_settlement";
|
|
797
|
+
asset_convert_order: "asset_convert_order";
|
|
798
|
+
trade_market_order: "trade_market_order";
|
|
799
|
+
}>;
|
|
565
800
|
}>>;
|
|
566
801
|
}>>;
|
|
567
802
|
pagination: import("@sinclair/typebox").TObject<{
|