@longdotxyz/shared 0.0.49 → 0.0.51
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/contracts/asset.contract.d.ts +121 -2
- package/dist/contracts/asset.contract.js +11 -6
- package/dist/contracts/asset.contract.js.map +1 -1
- package/dist/contracts/auction-template.contract.d.ts +5 -3
- package/dist/contracts/auction-template.contract.js +7 -7
- package/dist/contracts/auction-template.contract.js.map +1 -1
- package/dist/contracts/auction.contract.d.ts +3 -2
- package/dist/contracts/auction.contract.js +5 -5
- package/dist/contracts/auction.contract.js.map +1 -1
- package/dist/contracts/community.contract.d.ts +3 -2
- package/dist/contracts/community.contract.js +5 -5
- package/dist/contracts/community.contract.js.map +1 -1
- package/dist/contracts/index.d.ts +93 -0
- package/dist/graphql/generated.d.ts +25 -0
- package/dist/graphql/generated.js +2 -0
- package/dist/graphql/generated.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import z from "zod";
|
|
2
2
|
import { AssetStatus, AssetStatusQuery } from "../types";
|
|
3
|
-
declare const
|
|
3
|
+
declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
4
4
|
asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
5
5
|
asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
6
6
|
asset_creation_timestamp: z.ZodDate;
|
|
@@ -22,6 +22,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
22
22
|
pool_current_sale_progress_percentage: z.ZodNumber;
|
|
23
23
|
pool_config_max_proceeds: z.ZodString;
|
|
24
24
|
pool_config_min_proceeds: z.ZodString;
|
|
25
|
+
pool_config_num_tokens_to_sell: z.ZodString;
|
|
25
26
|
pool_id: z.ZodString;
|
|
26
27
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
27
28
|
pool_config_starting_time: z.ZodString;
|
|
@@ -33,6 +34,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
33
34
|
token_name: z.ZodString;
|
|
34
35
|
token_description: z.ZodNullable<z.ZodString>;
|
|
35
36
|
token_symbol: z.ZodString;
|
|
37
|
+
token_decimals: z.ZodNumber;
|
|
36
38
|
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
37
39
|
name: z.ZodOptional<z.ZodString>;
|
|
38
40
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -90,6 +92,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
90
92
|
token_name: string;
|
|
91
93
|
token_description: string | null;
|
|
92
94
|
token_symbol: string;
|
|
95
|
+
token_decimals: number;
|
|
93
96
|
token_uri_data: {
|
|
94
97
|
name?: string | undefined;
|
|
95
98
|
description?: string | undefined;
|
|
@@ -110,6 +113,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
110
113
|
token_name: string;
|
|
111
114
|
token_description: string | null;
|
|
112
115
|
token_symbol: string;
|
|
116
|
+
token_decimals: number;
|
|
113
117
|
token_uri_data: {
|
|
114
118
|
name?: string | undefined;
|
|
115
119
|
description?: string | undefined;
|
|
@@ -142,6 +146,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
142
146
|
pool_current_sale_progress_percentage: number;
|
|
143
147
|
pool_config_max_proceeds: string;
|
|
144
148
|
pool_config_min_proceeds: string;
|
|
149
|
+
pool_config_num_tokens_to_sell: string;
|
|
145
150
|
pool_id: string;
|
|
146
151
|
pool_address: `0x${string}`;
|
|
147
152
|
pool_config_starting_time: string;
|
|
@@ -153,6 +158,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
153
158
|
token_name: string;
|
|
154
159
|
token_description: string | null;
|
|
155
160
|
token_symbol: string;
|
|
161
|
+
token_decimals: number;
|
|
156
162
|
token_uri_data: {
|
|
157
163
|
name?: string | undefined;
|
|
158
164
|
description?: string | undefined;
|
|
@@ -184,6 +190,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
184
190
|
pool_current_sale_progress_percentage: number;
|
|
185
191
|
pool_config_max_proceeds: string;
|
|
186
192
|
pool_config_min_proceeds: string;
|
|
193
|
+
pool_config_num_tokens_to_sell: string;
|
|
187
194
|
pool_id: string;
|
|
188
195
|
pool_address: string;
|
|
189
196
|
pool_config_starting_time: string;
|
|
@@ -195,6 +202,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
195
202
|
token_name: string;
|
|
196
203
|
token_description: string | null;
|
|
197
204
|
token_symbol: string;
|
|
205
|
+
token_decimals: number;
|
|
198
206
|
token_uri_data: {
|
|
199
207
|
name?: string | undefined;
|
|
200
208
|
description?: string | undefined;
|
|
@@ -228,6 +236,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
228
236
|
token_name: z.ZodString;
|
|
229
237
|
token_description: z.ZodNullable<z.ZodString>;
|
|
230
238
|
token_symbol: z.ZodString;
|
|
239
|
+
token_decimals: z.ZodNumber;
|
|
231
240
|
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
232
241
|
name: z.ZodOptional<z.ZodString>;
|
|
233
242
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -286,6 +295,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
286
295
|
token_name: string;
|
|
287
296
|
token_description: string | null;
|
|
288
297
|
token_symbol: string;
|
|
298
|
+
token_decimals: number;
|
|
289
299
|
token_uri_data: {
|
|
290
300
|
name?: string | undefined;
|
|
291
301
|
description?: string | undefined;
|
|
@@ -307,6 +317,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
307
317
|
token_name: string;
|
|
308
318
|
token_description: string | null;
|
|
309
319
|
token_symbol: string;
|
|
320
|
+
token_decimals: number;
|
|
310
321
|
token_uri_data: {
|
|
311
322
|
name?: string | undefined;
|
|
312
323
|
description?: string | undefined;
|
|
@@ -340,6 +351,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
340
351
|
token_name: string;
|
|
341
352
|
token_description: string | null;
|
|
342
353
|
token_symbol: string;
|
|
354
|
+
token_decimals: number;
|
|
343
355
|
token_uri_data: {
|
|
344
356
|
name?: string | undefined;
|
|
345
357
|
description?: string | undefined;
|
|
@@ -372,6 +384,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
372
384
|
token_name: string;
|
|
373
385
|
token_description: string | null;
|
|
374
386
|
token_symbol: string;
|
|
387
|
+
token_decimals: number;
|
|
375
388
|
token_uri_data: {
|
|
376
389
|
name?: string | undefined;
|
|
377
390
|
description?: string | undefined;
|
|
@@ -413,6 +426,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
413
426
|
pool_current_sale_progress_percentage: number;
|
|
414
427
|
pool_config_max_proceeds: string;
|
|
415
428
|
pool_config_min_proceeds: string;
|
|
429
|
+
pool_config_num_tokens_to_sell: string;
|
|
416
430
|
pool_id: string;
|
|
417
431
|
pool_address: `0x${string}`;
|
|
418
432
|
pool_config_starting_time: string;
|
|
@@ -424,6 +438,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
424
438
|
token_name: string;
|
|
425
439
|
token_description: string | null;
|
|
426
440
|
token_symbol: string;
|
|
441
|
+
token_decimals: number;
|
|
427
442
|
token_uri_data: {
|
|
428
443
|
name?: string | undefined;
|
|
429
444
|
description?: string | undefined;
|
|
@@ -456,6 +471,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
456
471
|
token_name: string;
|
|
457
472
|
token_description: string | null;
|
|
458
473
|
token_symbol: string;
|
|
474
|
+
token_decimals: number;
|
|
459
475
|
token_uri_data: {
|
|
460
476
|
name?: string | undefined;
|
|
461
477
|
description?: string | undefined;
|
|
@@ -495,6 +511,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
495
511
|
pool_current_sale_progress_percentage: number;
|
|
496
512
|
pool_config_max_proceeds: string;
|
|
497
513
|
pool_config_min_proceeds: string;
|
|
514
|
+
pool_config_num_tokens_to_sell: string;
|
|
498
515
|
pool_id: string;
|
|
499
516
|
pool_address: string;
|
|
500
517
|
pool_config_starting_time: string;
|
|
@@ -506,6 +523,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
506
523
|
token_name: string;
|
|
507
524
|
token_description: string | null;
|
|
508
525
|
token_symbol: string;
|
|
526
|
+
token_decimals: number;
|
|
509
527
|
token_uri_data: {
|
|
510
528
|
name?: string | undefined;
|
|
511
529
|
description?: string | undefined;
|
|
@@ -539,6 +557,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
539
557
|
token_name: string;
|
|
540
558
|
token_description: string | null;
|
|
541
559
|
token_symbol: string;
|
|
560
|
+
token_decimals: number;
|
|
542
561
|
token_uri_data: {
|
|
543
562
|
name?: string | undefined;
|
|
544
563
|
description?: string | undefined;
|
|
@@ -581,6 +600,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
581
600
|
pool_current_sale_progress_percentage: number;
|
|
582
601
|
pool_config_max_proceeds: string;
|
|
583
602
|
pool_config_min_proceeds: string;
|
|
603
|
+
pool_config_num_tokens_to_sell: string;
|
|
584
604
|
pool_id: string;
|
|
585
605
|
pool_address: `0x${string}`;
|
|
586
606
|
pool_config_starting_time: string;
|
|
@@ -592,6 +612,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
592
612
|
token_name: string;
|
|
593
613
|
token_description: string | null;
|
|
594
614
|
token_symbol: string;
|
|
615
|
+
token_decimals: number;
|
|
595
616
|
token_uri_data: {
|
|
596
617
|
name?: string | undefined;
|
|
597
618
|
description?: string | undefined;
|
|
@@ -624,6 +645,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
624
645
|
token_name: string;
|
|
625
646
|
token_description: string | null;
|
|
626
647
|
token_symbol: string;
|
|
648
|
+
token_decimals: number;
|
|
627
649
|
token_uri_data: {
|
|
628
650
|
name?: string | undefined;
|
|
629
651
|
description?: string | undefined;
|
|
@@ -663,6 +685,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
663
685
|
pool_current_sale_progress_percentage: number;
|
|
664
686
|
pool_config_max_proceeds: string;
|
|
665
687
|
pool_config_min_proceeds: string;
|
|
688
|
+
pool_config_num_tokens_to_sell: string;
|
|
666
689
|
pool_id: string;
|
|
667
690
|
pool_address: string;
|
|
668
691
|
pool_config_starting_time: string;
|
|
@@ -674,6 +697,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
674
697
|
token_name: string;
|
|
675
698
|
token_description: string | null;
|
|
676
699
|
token_symbol: string;
|
|
700
|
+
token_decimals: number;
|
|
677
701
|
token_uri_data: {
|
|
678
702
|
name?: string | undefined;
|
|
679
703
|
description?: string | undefined;
|
|
@@ -707,6 +731,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
707
731
|
token_name: string;
|
|
708
732
|
token_description: string | null;
|
|
709
733
|
token_symbol: string;
|
|
734
|
+
token_decimals: number;
|
|
710
735
|
token_uri_data: {
|
|
711
736
|
name?: string | undefined;
|
|
712
737
|
description?: string | undefined;
|
|
@@ -728,6 +753,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
728
753
|
};
|
|
729
754
|
asset_status?: AssetStatus | undefined;
|
|
730
755
|
}>;
|
|
756
|
+
type AssetResponse = z.output<typeof AssetResponseSchema>;
|
|
731
757
|
declare const assetContract: {
|
|
732
758
|
listAssets: {
|
|
733
759
|
description: "List all assets for an integrator, with optional status filtering, pagination and default ordering by creation timestamp";
|
|
@@ -773,6 +799,7 @@ declare const assetContract: {
|
|
|
773
799
|
pool_current_sale_progress_percentage: z.ZodNumber;
|
|
774
800
|
pool_config_max_proceeds: z.ZodString;
|
|
775
801
|
pool_config_min_proceeds: z.ZodString;
|
|
802
|
+
pool_config_num_tokens_to_sell: z.ZodString;
|
|
776
803
|
pool_id: z.ZodString;
|
|
777
804
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
778
805
|
pool_config_starting_time: z.ZodString;
|
|
@@ -784,6 +811,7 @@ declare const assetContract: {
|
|
|
784
811
|
token_name: z.ZodString;
|
|
785
812
|
token_description: z.ZodNullable<z.ZodString>;
|
|
786
813
|
token_symbol: z.ZodString;
|
|
814
|
+
token_decimals: z.ZodNumber;
|
|
787
815
|
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
788
816
|
name: z.ZodOptional<z.ZodString>;
|
|
789
817
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -841,6 +869,7 @@ declare const assetContract: {
|
|
|
841
869
|
token_name: string;
|
|
842
870
|
token_description: string | null;
|
|
843
871
|
token_symbol: string;
|
|
872
|
+
token_decimals: number;
|
|
844
873
|
token_uri_data: {
|
|
845
874
|
name?: string | undefined;
|
|
846
875
|
description?: string | undefined;
|
|
@@ -861,6 +890,7 @@ declare const assetContract: {
|
|
|
861
890
|
token_name: string;
|
|
862
891
|
token_description: string | null;
|
|
863
892
|
token_symbol: string;
|
|
893
|
+
token_decimals: number;
|
|
864
894
|
token_uri_data: {
|
|
865
895
|
name?: string | undefined;
|
|
866
896
|
description?: string | undefined;
|
|
@@ -893,6 +923,7 @@ declare const assetContract: {
|
|
|
893
923
|
pool_current_sale_progress_percentage: number;
|
|
894
924
|
pool_config_max_proceeds: string;
|
|
895
925
|
pool_config_min_proceeds: string;
|
|
926
|
+
pool_config_num_tokens_to_sell: string;
|
|
896
927
|
pool_id: string;
|
|
897
928
|
pool_address: `0x${string}`;
|
|
898
929
|
pool_config_starting_time: string;
|
|
@@ -904,6 +935,7 @@ declare const assetContract: {
|
|
|
904
935
|
token_name: string;
|
|
905
936
|
token_description: string | null;
|
|
906
937
|
token_symbol: string;
|
|
938
|
+
token_decimals: number;
|
|
907
939
|
token_uri_data: {
|
|
908
940
|
name?: string | undefined;
|
|
909
941
|
description?: string | undefined;
|
|
@@ -935,6 +967,7 @@ declare const assetContract: {
|
|
|
935
967
|
pool_current_sale_progress_percentage: number;
|
|
936
968
|
pool_config_max_proceeds: string;
|
|
937
969
|
pool_config_min_proceeds: string;
|
|
970
|
+
pool_config_num_tokens_to_sell: string;
|
|
938
971
|
pool_id: string;
|
|
939
972
|
pool_address: string;
|
|
940
973
|
pool_config_starting_time: string;
|
|
@@ -946,6 +979,7 @@ declare const assetContract: {
|
|
|
946
979
|
token_name: string;
|
|
947
980
|
token_description: string | null;
|
|
948
981
|
token_symbol: string;
|
|
982
|
+
token_decimals: number;
|
|
949
983
|
token_uri_data: {
|
|
950
984
|
name?: string | undefined;
|
|
951
985
|
description?: string | undefined;
|
|
@@ -979,6 +1013,7 @@ declare const assetContract: {
|
|
|
979
1013
|
token_name: z.ZodString;
|
|
980
1014
|
token_description: z.ZodNullable<z.ZodString>;
|
|
981
1015
|
token_symbol: z.ZodString;
|
|
1016
|
+
token_decimals: z.ZodNumber;
|
|
982
1017
|
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
983
1018
|
name: z.ZodOptional<z.ZodString>;
|
|
984
1019
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1037,6 +1072,7 @@ declare const assetContract: {
|
|
|
1037
1072
|
token_name: string;
|
|
1038
1073
|
token_description: string | null;
|
|
1039
1074
|
token_symbol: string;
|
|
1075
|
+
token_decimals: number;
|
|
1040
1076
|
token_uri_data: {
|
|
1041
1077
|
name?: string | undefined;
|
|
1042
1078
|
description?: string | undefined;
|
|
@@ -1058,6 +1094,7 @@ declare const assetContract: {
|
|
|
1058
1094
|
token_name: string;
|
|
1059
1095
|
token_description: string | null;
|
|
1060
1096
|
token_symbol: string;
|
|
1097
|
+
token_decimals: number;
|
|
1061
1098
|
token_uri_data: {
|
|
1062
1099
|
name?: string | undefined;
|
|
1063
1100
|
description?: string | undefined;
|
|
@@ -1091,6 +1128,7 @@ declare const assetContract: {
|
|
|
1091
1128
|
token_name: string;
|
|
1092
1129
|
token_description: string | null;
|
|
1093
1130
|
token_symbol: string;
|
|
1131
|
+
token_decimals: number;
|
|
1094
1132
|
token_uri_data: {
|
|
1095
1133
|
name?: string | undefined;
|
|
1096
1134
|
description?: string | undefined;
|
|
@@ -1123,6 +1161,7 @@ declare const assetContract: {
|
|
|
1123
1161
|
token_name: string;
|
|
1124
1162
|
token_description: string | null;
|
|
1125
1163
|
token_symbol: string;
|
|
1164
|
+
token_decimals: number;
|
|
1126
1165
|
token_uri_data: {
|
|
1127
1166
|
name?: string | undefined;
|
|
1128
1167
|
description?: string | undefined;
|
|
@@ -1164,6 +1203,7 @@ declare const assetContract: {
|
|
|
1164
1203
|
pool_current_sale_progress_percentage: number;
|
|
1165
1204
|
pool_config_max_proceeds: string;
|
|
1166
1205
|
pool_config_min_proceeds: string;
|
|
1206
|
+
pool_config_num_tokens_to_sell: string;
|
|
1167
1207
|
pool_id: string;
|
|
1168
1208
|
pool_address: `0x${string}`;
|
|
1169
1209
|
pool_config_starting_time: string;
|
|
@@ -1175,6 +1215,7 @@ declare const assetContract: {
|
|
|
1175
1215
|
token_name: string;
|
|
1176
1216
|
token_description: string | null;
|
|
1177
1217
|
token_symbol: string;
|
|
1218
|
+
token_decimals: number;
|
|
1178
1219
|
token_uri_data: {
|
|
1179
1220
|
name?: string | undefined;
|
|
1180
1221
|
description?: string | undefined;
|
|
@@ -1207,6 +1248,7 @@ declare const assetContract: {
|
|
|
1207
1248
|
token_name: string;
|
|
1208
1249
|
token_description: string | null;
|
|
1209
1250
|
token_symbol: string;
|
|
1251
|
+
token_decimals: number;
|
|
1210
1252
|
token_uri_data: {
|
|
1211
1253
|
name?: string | undefined;
|
|
1212
1254
|
description?: string | undefined;
|
|
@@ -1246,6 +1288,7 @@ declare const assetContract: {
|
|
|
1246
1288
|
pool_current_sale_progress_percentage: number;
|
|
1247
1289
|
pool_config_max_proceeds: string;
|
|
1248
1290
|
pool_config_min_proceeds: string;
|
|
1291
|
+
pool_config_num_tokens_to_sell: string;
|
|
1249
1292
|
pool_id: string;
|
|
1250
1293
|
pool_address: string;
|
|
1251
1294
|
pool_config_starting_time: string;
|
|
@@ -1257,6 +1300,7 @@ declare const assetContract: {
|
|
|
1257
1300
|
token_name: string;
|
|
1258
1301
|
token_description: string | null;
|
|
1259
1302
|
token_symbol: string;
|
|
1303
|
+
token_decimals: number;
|
|
1260
1304
|
token_uri_data: {
|
|
1261
1305
|
name?: string | undefined;
|
|
1262
1306
|
description?: string | undefined;
|
|
@@ -1290,6 +1334,7 @@ declare const assetContract: {
|
|
|
1290
1334
|
token_name: string;
|
|
1291
1335
|
token_description: string | null;
|
|
1292
1336
|
token_symbol: string;
|
|
1337
|
+
token_decimals: number;
|
|
1293
1338
|
token_uri_data: {
|
|
1294
1339
|
name?: string | undefined;
|
|
1295
1340
|
description?: string | undefined;
|
|
@@ -1332,6 +1377,7 @@ declare const assetContract: {
|
|
|
1332
1377
|
pool_current_sale_progress_percentage: number;
|
|
1333
1378
|
pool_config_max_proceeds: string;
|
|
1334
1379
|
pool_config_min_proceeds: string;
|
|
1380
|
+
pool_config_num_tokens_to_sell: string;
|
|
1335
1381
|
pool_id: string;
|
|
1336
1382
|
pool_address: `0x${string}`;
|
|
1337
1383
|
pool_config_starting_time: string;
|
|
@@ -1343,6 +1389,7 @@ declare const assetContract: {
|
|
|
1343
1389
|
token_name: string;
|
|
1344
1390
|
token_description: string | null;
|
|
1345
1391
|
token_symbol: string;
|
|
1392
|
+
token_decimals: number;
|
|
1346
1393
|
token_uri_data: {
|
|
1347
1394
|
name?: string | undefined;
|
|
1348
1395
|
description?: string | undefined;
|
|
@@ -1375,6 +1422,7 @@ declare const assetContract: {
|
|
|
1375
1422
|
token_name: string;
|
|
1376
1423
|
token_description: string | null;
|
|
1377
1424
|
token_symbol: string;
|
|
1425
|
+
token_decimals: number;
|
|
1378
1426
|
token_uri_data: {
|
|
1379
1427
|
name?: string | undefined;
|
|
1380
1428
|
description?: string | undefined;
|
|
@@ -1414,6 +1462,7 @@ declare const assetContract: {
|
|
|
1414
1462
|
pool_current_sale_progress_percentage: number;
|
|
1415
1463
|
pool_config_max_proceeds: string;
|
|
1416
1464
|
pool_config_min_proceeds: string;
|
|
1465
|
+
pool_config_num_tokens_to_sell: string;
|
|
1417
1466
|
pool_id: string;
|
|
1418
1467
|
pool_address: string;
|
|
1419
1468
|
pool_config_starting_time: string;
|
|
@@ -1425,6 +1474,7 @@ declare const assetContract: {
|
|
|
1425
1474
|
token_name: string;
|
|
1426
1475
|
token_description: string | null;
|
|
1427
1476
|
token_symbol: string;
|
|
1477
|
+
token_decimals: number;
|
|
1428
1478
|
token_uri_data: {
|
|
1429
1479
|
name?: string | undefined;
|
|
1430
1480
|
description?: string | undefined;
|
|
@@ -1458,6 +1508,7 @@ declare const assetContract: {
|
|
|
1458
1508
|
token_name: string;
|
|
1459
1509
|
token_description: string | null;
|
|
1460
1510
|
token_symbol: string;
|
|
1511
|
+
token_decimals: number;
|
|
1461
1512
|
token_uri_data: {
|
|
1462
1513
|
name?: string | undefined;
|
|
1463
1514
|
description?: string | undefined;
|
|
@@ -1502,6 +1553,7 @@ declare const assetContract: {
|
|
|
1502
1553
|
pool_current_sale_progress_percentage: number;
|
|
1503
1554
|
pool_config_max_proceeds: string;
|
|
1504
1555
|
pool_config_min_proceeds: string;
|
|
1556
|
+
pool_config_num_tokens_to_sell: string;
|
|
1505
1557
|
pool_id: string;
|
|
1506
1558
|
pool_address: `0x${string}`;
|
|
1507
1559
|
pool_config_starting_time: string;
|
|
@@ -1513,6 +1565,7 @@ declare const assetContract: {
|
|
|
1513
1565
|
token_name: string;
|
|
1514
1566
|
token_description: string | null;
|
|
1515
1567
|
token_symbol: string;
|
|
1568
|
+
token_decimals: number;
|
|
1516
1569
|
token_uri_data: {
|
|
1517
1570
|
name?: string | undefined;
|
|
1518
1571
|
description?: string | undefined;
|
|
@@ -1545,6 +1598,7 @@ declare const assetContract: {
|
|
|
1545
1598
|
token_name: string;
|
|
1546
1599
|
token_description: string | null;
|
|
1547
1600
|
token_symbol: string;
|
|
1601
|
+
token_decimals: number;
|
|
1548
1602
|
token_uri_data: {
|
|
1549
1603
|
name?: string | undefined;
|
|
1550
1604
|
description?: string | undefined;
|
|
@@ -1586,6 +1640,7 @@ declare const assetContract: {
|
|
|
1586
1640
|
pool_current_sale_progress_percentage: number;
|
|
1587
1641
|
pool_config_max_proceeds: string;
|
|
1588
1642
|
pool_config_min_proceeds: string;
|
|
1643
|
+
pool_config_num_tokens_to_sell: string;
|
|
1589
1644
|
pool_id: string;
|
|
1590
1645
|
pool_address: string;
|
|
1591
1646
|
pool_config_starting_time: string;
|
|
@@ -1597,6 +1652,7 @@ declare const assetContract: {
|
|
|
1597
1652
|
token_name: string;
|
|
1598
1653
|
token_description: string | null;
|
|
1599
1654
|
token_symbol: string;
|
|
1655
|
+
token_decimals: number;
|
|
1600
1656
|
token_uri_data: {
|
|
1601
1657
|
name?: string | undefined;
|
|
1602
1658
|
description?: string | undefined;
|
|
@@ -1630,6 +1686,7 @@ declare const assetContract: {
|
|
|
1630
1686
|
token_name: string;
|
|
1631
1687
|
token_description: string | null;
|
|
1632
1688
|
token_symbol: string;
|
|
1689
|
+
token_decimals: number;
|
|
1633
1690
|
token_uri_data: {
|
|
1634
1691
|
name?: string | undefined;
|
|
1635
1692
|
description?: string | undefined;
|
|
@@ -1695,6 +1752,7 @@ declare const assetContract: {
|
|
|
1695
1752
|
pool_current_sale_progress_percentage: z.ZodNumber;
|
|
1696
1753
|
pool_config_max_proceeds: z.ZodString;
|
|
1697
1754
|
pool_config_min_proceeds: z.ZodString;
|
|
1755
|
+
pool_config_num_tokens_to_sell: z.ZodString;
|
|
1698
1756
|
pool_id: z.ZodString;
|
|
1699
1757
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1700
1758
|
pool_config_starting_time: z.ZodString;
|
|
@@ -1706,6 +1764,7 @@ declare const assetContract: {
|
|
|
1706
1764
|
token_name: z.ZodString;
|
|
1707
1765
|
token_description: z.ZodNullable<z.ZodString>;
|
|
1708
1766
|
token_symbol: z.ZodString;
|
|
1767
|
+
token_decimals: z.ZodNumber;
|
|
1709
1768
|
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
1710
1769
|
name: z.ZodOptional<z.ZodString>;
|
|
1711
1770
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1763,6 +1822,7 @@ declare const assetContract: {
|
|
|
1763
1822
|
token_name: string;
|
|
1764
1823
|
token_description: string | null;
|
|
1765
1824
|
token_symbol: string;
|
|
1825
|
+
token_decimals: number;
|
|
1766
1826
|
token_uri_data: {
|
|
1767
1827
|
name?: string | undefined;
|
|
1768
1828
|
description?: string | undefined;
|
|
@@ -1783,6 +1843,7 @@ declare const assetContract: {
|
|
|
1783
1843
|
token_name: string;
|
|
1784
1844
|
token_description: string | null;
|
|
1785
1845
|
token_symbol: string;
|
|
1846
|
+
token_decimals: number;
|
|
1786
1847
|
token_uri_data: {
|
|
1787
1848
|
name?: string | undefined;
|
|
1788
1849
|
description?: string | undefined;
|
|
@@ -1815,6 +1876,7 @@ declare const assetContract: {
|
|
|
1815
1876
|
pool_current_sale_progress_percentage: number;
|
|
1816
1877
|
pool_config_max_proceeds: string;
|
|
1817
1878
|
pool_config_min_proceeds: string;
|
|
1879
|
+
pool_config_num_tokens_to_sell: string;
|
|
1818
1880
|
pool_id: string;
|
|
1819
1881
|
pool_address: `0x${string}`;
|
|
1820
1882
|
pool_config_starting_time: string;
|
|
@@ -1826,6 +1888,7 @@ declare const assetContract: {
|
|
|
1826
1888
|
token_name: string;
|
|
1827
1889
|
token_description: string | null;
|
|
1828
1890
|
token_symbol: string;
|
|
1891
|
+
token_decimals: number;
|
|
1829
1892
|
token_uri_data: {
|
|
1830
1893
|
name?: string | undefined;
|
|
1831
1894
|
description?: string | undefined;
|
|
@@ -1857,6 +1920,7 @@ declare const assetContract: {
|
|
|
1857
1920
|
pool_current_sale_progress_percentage: number;
|
|
1858
1921
|
pool_config_max_proceeds: string;
|
|
1859
1922
|
pool_config_min_proceeds: string;
|
|
1923
|
+
pool_config_num_tokens_to_sell: string;
|
|
1860
1924
|
pool_id: string;
|
|
1861
1925
|
pool_address: string;
|
|
1862
1926
|
pool_config_starting_time: string;
|
|
@@ -1868,6 +1932,7 @@ declare const assetContract: {
|
|
|
1868
1932
|
token_name: string;
|
|
1869
1933
|
token_description: string | null;
|
|
1870
1934
|
token_symbol: string;
|
|
1935
|
+
token_decimals: number;
|
|
1871
1936
|
token_uri_data: {
|
|
1872
1937
|
name?: string | undefined;
|
|
1873
1938
|
description?: string | undefined;
|
|
@@ -1901,6 +1966,7 @@ declare const assetContract: {
|
|
|
1901
1966
|
token_name: z.ZodString;
|
|
1902
1967
|
token_description: z.ZodNullable<z.ZodString>;
|
|
1903
1968
|
token_symbol: z.ZodString;
|
|
1969
|
+
token_decimals: z.ZodNumber;
|
|
1904
1970
|
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
1905
1971
|
name: z.ZodOptional<z.ZodString>;
|
|
1906
1972
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1959,6 +2025,7 @@ declare const assetContract: {
|
|
|
1959
2025
|
token_name: string;
|
|
1960
2026
|
token_description: string | null;
|
|
1961
2027
|
token_symbol: string;
|
|
2028
|
+
token_decimals: number;
|
|
1962
2029
|
token_uri_data: {
|
|
1963
2030
|
name?: string | undefined;
|
|
1964
2031
|
description?: string | undefined;
|
|
@@ -1980,6 +2047,7 @@ declare const assetContract: {
|
|
|
1980
2047
|
token_name: string;
|
|
1981
2048
|
token_description: string | null;
|
|
1982
2049
|
token_symbol: string;
|
|
2050
|
+
token_decimals: number;
|
|
1983
2051
|
token_uri_data: {
|
|
1984
2052
|
name?: string | undefined;
|
|
1985
2053
|
description?: string | undefined;
|
|
@@ -2013,6 +2081,7 @@ declare const assetContract: {
|
|
|
2013
2081
|
token_name: string;
|
|
2014
2082
|
token_description: string | null;
|
|
2015
2083
|
token_symbol: string;
|
|
2084
|
+
token_decimals: number;
|
|
2016
2085
|
token_uri_data: {
|
|
2017
2086
|
name?: string | undefined;
|
|
2018
2087
|
description?: string | undefined;
|
|
@@ -2045,6 +2114,7 @@ declare const assetContract: {
|
|
|
2045
2114
|
token_name: string;
|
|
2046
2115
|
token_description: string | null;
|
|
2047
2116
|
token_symbol: string;
|
|
2117
|
+
token_decimals: number;
|
|
2048
2118
|
token_uri_data: {
|
|
2049
2119
|
name?: string | undefined;
|
|
2050
2120
|
description?: string | undefined;
|
|
@@ -2086,6 +2156,7 @@ declare const assetContract: {
|
|
|
2086
2156
|
pool_current_sale_progress_percentage: number;
|
|
2087
2157
|
pool_config_max_proceeds: string;
|
|
2088
2158
|
pool_config_min_proceeds: string;
|
|
2159
|
+
pool_config_num_tokens_to_sell: string;
|
|
2089
2160
|
pool_id: string;
|
|
2090
2161
|
pool_address: `0x${string}`;
|
|
2091
2162
|
pool_config_starting_time: string;
|
|
@@ -2097,6 +2168,7 @@ declare const assetContract: {
|
|
|
2097
2168
|
token_name: string;
|
|
2098
2169
|
token_description: string | null;
|
|
2099
2170
|
token_symbol: string;
|
|
2171
|
+
token_decimals: number;
|
|
2100
2172
|
token_uri_data: {
|
|
2101
2173
|
name?: string | undefined;
|
|
2102
2174
|
description?: string | undefined;
|
|
@@ -2129,6 +2201,7 @@ declare const assetContract: {
|
|
|
2129
2201
|
token_name: string;
|
|
2130
2202
|
token_description: string | null;
|
|
2131
2203
|
token_symbol: string;
|
|
2204
|
+
token_decimals: number;
|
|
2132
2205
|
token_uri_data: {
|
|
2133
2206
|
name?: string | undefined;
|
|
2134
2207
|
description?: string | undefined;
|
|
@@ -2168,6 +2241,7 @@ declare const assetContract: {
|
|
|
2168
2241
|
pool_current_sale_progress_percentage: number;
|
|
2169
2242
|
pool_config_max_proceeds: string;
|
|
2170
2243
|
pool_config_min_proceeds: string;
|
|
2244
|
+
pool_config_num_tokens_to_sell: string;
|
|
2171
2245
|
pool_id: string;
|
|
2172
2246
|
pool_address: string;
|
|
2173
2247
|
pool_config_starting_time: string;
|
|
@@ -2179,6 +2253,7 @@ declare const assetContract: {
|
|
|
2179
2253
|
token_name: string;
|
|
2180
2254
|
token_description: string | null;
|
|
2181
2255
|
token_symbol: string;
|
|
2256
|
+
token_decimals: number;
|
|
2182
2257
|
token_uri_data: {
|
|
2183
2258
|
name?: string | undefined;
|
|
2184
2259
|
description?: string | undefined;
|
|
@@ -2212,6 +2287,7 @@ declare const assetContract: {
|
|
|
2212
2287
|
token_name: string;
|
|
2213
2288
|
token_description: string | null;
|
|
2214
2289
|
token_symbol: string;
|
|
2290
|
+
token_decimals: number;
|
|
2215
2291
|
token_uri_data: {
|
|
2216
2292
|
name?: string | undefined;
|
|
2217
2293
|
description?: string | undefined;
|
|
@@ -2254,6 +2330,7 @@ declare const assetContract: {
|
|
|
2254
2330
|
pool_current_sale_progress_percentage: number;
|
|
2255
2331
|
pool_config_max_proceeds: string;
|
|
2256
2332
|
pool_config_min_proceeds: string;
|
|
2333
|
+
pool_config_num_tokens_to_sell: string;
|
|
2257
2334
|
pool_id: string;
|
|
2258
2335
|
pool_address: `0x${string}`;
|
|
2259
2336
|
pool_config_starting_time: string;
|
|
@@ -2265,6 +2342,7 @@ declare const assetContract: {
|
|
|
2265
2342
|
token_name: string;
|
|
2266
2343
|
token_description: string | null;
|
|
2267
2344
|
token_symbol: string;
|
|
2345
|
+
token_decimals: number;
|
|
2268
2346
|
token_uri_data: {
|
|
2269
2347
|
name?: string | undefined;
|
|
2270
2348
|
description?: string | undefined;
|
|
@@ -2297,6 +2375,7 @@ declare const assetContract: {
|
|
|
2297
2375
|
token_name: string;
|
|
2298
2376
|
token_description: string | null;
|
|
2299
2377
|
token_symbol: string;
|
|
2378
|
+
token_decimals: number;
|
|
2300
2379
|
token_uri_data: {
|
|
2301
2380
|
name?: string | undefined;
|
|
2302
2381
|
description?: string | undefined;
|
|
@@ -2336,6 +2415,7 @@ declare const assetContract: {
|
|
|
2336
2415
|
pool_current_sale_progress_percentage: number;
|
|
2337
2416
|
pool_config_max_proceeds: string;
|
|
2338
2417
|
pool_config_min_proceeds: string;
|
|
2418
|
+
pool_config_num_tokens_to_sell: string;
|
|
2339
2419
|
pool_id: string;
|
|
2340
2420
|
pool_address: string;
|
|
2341
2421
|
pool_config_starting_time: string;
|
|
@@ -2347,6 +2427,7 @@ declare const assetContract: {
|
|
|
2347
2427
|
token_name: string;
|
|
2348
2428
|
token_description: string | null;
|
|
2349
2429
|
token_symbol: string;
|
|
2430
|
+
token_decimals: number;
|
|
2350
2431
|
token_uri_data: {
|
|
2351
2432
|
name?: string | undefined;
|
|
2352
2433
|
description?: string | undefined;
|
|
@@ -2380,6 +2461,7 @@ declare const assetContract: {
|
|
|
2380
2461
|
token_name: string;
|
|
2381
2462
|
token_description: string | null;
|
|
2382
2463
|
token_symbol: string;
|
|
2464
|
+
token_decimals: number;
|
|
2383
2465
|
token_uri_data: {
|
|
2384
2466
|
name?: string | undefined;
|
|
2385
2467
|
description?: string | undefined;
|
|
@@ -2424,6 +2506,7 @@ declare const assetContract: {
|
|
|
2424
2506
|
pool_current_sale_progress_percentage: number;
|
|
2425
2507
|
pool_config_max_proceeds: string;
|
|
2426
2508
|
pool_config_min_proceeds: string;
|
|
2509
|
+
pool_config_num_tokens_to_sell: string;
|
|
2427
2510
|
pool_id: string;
|
|
2428
2511
|
pool_address: `0x${string}`;
|
|
2429
2512
|
pool_config_starting_time: string;
|
|
@@ -2435,6 +2518,7 @@ declare const assetContract: {
|
|
|
2435
2518
|
token_name: string;
|
|
2436
2519
|
token_description: string | null;
|
|
2437
2520
|
token_symbol: string;
|
|
2521
|
+
token_decimals: number;
|
|
2438
2522
|
token_uri_data: {
|
|
2439
2523
|
name?: string | undefined;
|
|
2440
2524
|
description?: string | undefined;
|
|
@@ -2467,6 +2551,7 @@ declare const assetContract: {
|
|
|
2467
2551
|
token_name: string;
|
|
2468
2552
|
token_description: string | null;
|
|
2469
2553
|
token_symbol: string;
|
|
2554
|
+
token_decimals: number;
|
|
2470
2555
|
token_uri_data: {
|
|
2471
2556
|
name?: string | undefined;
|
|
2472
2557
|
description?: string | undefined;
|
|
@@ -2508,6 +2593,7 @@ declare const assetContract: {
|
|
|
2508
2593
|
pool_current_sale_progress_percentage: number;
|
|
2509
2594
|
pool_config_max_proceeds: string;
|
|
2510
2595
|
pool_config_min_proceeds: string;
|
|
2596
|
+
pool_config_num_tokens_to_sell: string;
|
|
2511
2597
|
pool_id: string;
|
|
2512
2598
|
pool_address: string;
|
|
2513
2599
|
pool_config_starting_time: string;
|
|
@@ -2519,6 +2605,7 @@ declare const assetContract: {
|
|
|
2519
2605
|
token_name: string;
|
|
2520
2606
|
token_description: string | null;
|
|
2521
2607
|
token_symbol: string;
|
|
2608
|
+
token_decimals: number;
|
|
2522
2609
|
token_uri_data: {
|
|
2523
2610
|
name?: string | undefined;
|
|
2524
2611
|
description?: string | undefined;
|
|
@@ -2552,6 +2639,7 @@ declare const assetContract: {
|
|
|
2552
2639
|
token_name: string;
|
|
2553
2640
|
token_description: string | null;
|
|
2554
2641
|
token_symbol: string;
|
|
2642
|
+
token_decimals: number;
|
|
2555
2643
|
token_uri_data: {
|
|
2556
2644
|
name?: string | undefined;
|
|
2557
2645
|
description?: string | undefined;
|
|
@@ -2618,6 +2706,7 @@ declare const assetContract: {
|
|
|
2618
2706
|
pool_current_sale_progress_percentage: z.ZodNumber;
|
|
2619
2707
|
pool_config_max_proceeds: z.ZodString;
|
|
2620
2708
|
pool_config_min_proceeds: z.ZodString;
|
|
2709
|
+
pool_config_num_tokens_to_sell: z.ZodString;
|
|
2621
2710
|
pool_id: z.ZodString;
|
|
2622
2711
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
2623
2712
|
pool_config_starting_time: z.ZodString;
|
|
@@ -2629,6 +2718,7 @@ declare const assetContract: {
|
|
|
2629
2718
|
token_name: z.ZodString;
|
|
2630
2719
|
token_description: z.ZodNullable<z.ZodString>;
|
|
2631
2720
|
token_symbol: z.ZodString;
|
|
2721
|
+
token_decimals: z.ZodNumber;
|
|
2632
2722
|
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
2633
2723
|
name: z.ZodOptional<z.ZodString>;
|
|
2634
2724
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2686,6 +2776,7 @@ declare const assetContract: {
|
|
|
2686
2776
|
token_name: string;
|
|
2687
2777
|
token_description: string | null;
|
|
2688
2778
|
token_symbol: string;
|
|
2779
|
+
token_decimals: number;
|
|
2689
2780
|
token_uri_data: {
|
|
2690
2781
|
name?: string | undefined;
|
|
2691
2782
|
description?: string | undefined;
|
|
@@ -2706,6 +2797,7 @@ declare const assetContract: {
|
|
|
2706
2797
|
token_name: string;
|
|
2707
2798
|
token_description: string | null;
|
|
2708
2799
|
token_symbol: string;
|
|
2800
|
+
token_decimals: number;
|
|
2709
2801
|
token_uri_data: {
|
|
2710
2802
|
name?: string | undefined;
|
|
2711
2803
|
description?: string | undefined;
|
|
@@ -2738,6 +2830,7 @@ declare const assetContract: {
|
|
|
2738
2830
|
pool_current_sale_progress_percentage: number;
|
|
2739
2831
|
pool_config_max_proceeds: string;
|
|
2740
2832
|
pool_config_min_proceeds: string;
|
|
2833
|
+
pool_config_num_tokens_to_sell: string;
|
|
2741
2834
|
pool_id: string;
|
|
2742
2835
|
pool_address: `0x${string}`;
|
|
2743
2836
|
pool_config_starting_time: string;
|
|
@@ -2749,6 +2842,7 @@ declare const assetContract: {
|
|
|
2749
2842
|
token_name: string;
|
|
2750
2843
|
token_description: string | null;
|
|
2751
2844
|
token_symbol: string;
|
|
2845
|
+
token_decimals: number;
|
|
2752
2846
|
token_uri_data: {
|
|
2753
2847
|
name?: string | undefined;
|
|
2754
2848
|
description?: string | undefined;
|
|
@@ -2780,6 +2874,7 @@ declare const assetContract: {
|
|
|
2780
2874
|
pool_current_sale_progress_percentage: number;
|
|
2781
2875
|
pool_config_max_proceeds: string;
|
|
2782
2876
|
pool_config_min_proceeds: string;
|
|
2877
|
+
pool_config_num_tokens_to_sell: string;
|
|
2783
2878
|
pool_id: string;
|
|
2784
2879
|
pool_address: string;
|
|
2785
2880
|
pool_config_starting_time: string;
|
|
@@ -2791,6 +2886,7 @@ declare const assetContract: {
|
|
|
2791
2886
|
token_name: string;
|
|
2792
2887
|
token_description: string | null;
|
|
2793
2888
|
token_symbol: string;
|
|
2889
|
+
token_decimals: number;
|
|
2794
2890
|
token_uri_data: {
|
|
2795
2891
|
name?: string | undefined;
|
|
2796
2892
|
description?: string | undefined;
|
|
@@ -2824,6 +2920,7 @@ declare const assetContract: {
|
|
|
2824
2920
|
token_name: z.ZodString;
|
|
2825
2921
|
token_description: z.ZodNullable<z.ZodString>;
|
|
2826
2922
|
token_symbol: z.ZodString;
|
|
2923
|
+
token_decimals: z.ZodNumber;
|
|
2827
2924
|
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
2828
2925
|
name: z.ZodOptional<z.ZodString>;
|
|
2829
2926
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2882,6 +2979,7 @@ declare const assetContract: {
|
|
|
2882
2979
|
token_name: string;
|
|
2883
2980
|
token_description: string | null;
|
|
2884
2981
|
token_symbol: string;
|
|
2982
|
+
token_decimals: number;
|
|
2885
2983
|
token_uri_data: {
|
|
2886
2984
|
name?: string | undefined;
|
|
2887
2985
|
description?: string | undefined;
|
|
@@ -2903,6 +3001,7 @@ declare const assetContract: {
|
|
|
2903
3001
|
token_name: string;
|
|
2904
3002
|
token_description: string | null;
|
|
2905
3003
|
token_symbol: string;
|
|
3004
|
+
token_decimals: number;
|
|
2906
3005
|
token_uri_data: {
|
|
2907
3006
|
name?: string | undefined;
|
|
2908
3007
|
description?: string | undefined;
|
|
@@ -2936,6 +3035,7 @@ declare const assetContract: {
|
|
|
2936
3035
|
token_name: string;
|
|
2937
3036
|
token_description: string | null;
|
|
2938
3037
|
token_symbol: string;
|
|
3038
|
+
token_decimals: number;
|
|
2939
3039
|
token_uri_data: {
|
|
2940
3040
|
name?: string | undefined;
|
|
2941
3041
|
description?: string | undefined;
|
|
@@ -2968,6 +3068,7 @@ declare const assetContract: {
|
|
|
2968
3068
|
token_name: string;
|
|
2969
3069
|
token_description: string | null;
|
|
2970
3070
|
token_symbol: string;
|
|
3071
|
+
token_decimals: number;
|
|
2971
3072
|
token_uri_data: {
|
|
2972
3073
|
name?: string | undefined;
|
|
2973
3074
|
description?: string | undefined;
|
|
@@ -3009,6 +3110,7 @@ declare const assetContract: {
|
|
|
3009
3110
|
pool_current_sale_progress_percentage: number;
|
|
3010
3111
|
pool_config_max_proceeds: string;
|
|
3011
3112
|
pool_config_min_proceeds: string;
|
|
3113
|
+
pool_config_num_tokens_to_sell: string;
|
|
3012
3114
|
pool_id: string;
|
|
3013
3115
|
pool_address: `0x${string}`;
|
|
3014
3116
|
pool_config_starting_time: string;
|
|
@@ -3020,6 +3122,7 @@ declare const assetContract: {
|
|
|
3020
3122
|
token_name: string;
|
|
3021
3123
|
token_description: string | null;
|
|
3022
3124
|
token_symbol: string;
|
|
3125
|
+
token_decimals: number;
|
|
3023
3126
|
token_uri_data: {
|
|
3024
3127
|
name?: string | undefined;
|
|
3025
3128
|
description?: string | undefined;
|
|
@@ -3052,6 +3155,7 @@ declare const assetContract: {
|
|
|
3052
3155
|
token_name: string;
|
|
3053
3156
|
token_description: string | null;
|
|
3054
3157
|
token_symbol: string;
|
|
3158
|
+
token_decimals: number;
|
|
3055
3159
|
token_uri_data: {
|
|
3056
3160
|
name?: string | undefined;
|
|
3057
3161
|
description?: string | undefined;
|
|
@@ -3091,6 +3195,7 @@ declare const assetContract: {
|
|
|
3091
3195
|
pool_current_sale_progress_percentage: number;
|
|
3092
3196
|
pool_config_max_proceeds: string;
|
|
3093
3197
|
pool_config_min_proceeds: string;
|
|
3198
|
+
pool_config_num_tokens_to_sell: string;
|
|
3094
3199
|
pool_id: string;
|
|
3095
3200
|
pool_address: string;
|
|
3096
3201
|
pool_config_starting_time: string;
|
|
@@ -3102,6 +3207,7 @@ declare const assetContract: {
|
|
|
3102
3207
|
token_name: string;
|
|
3103
3208
|
token_description: string | null;
|
|
3104
3209
|
token_symbol: string;
|
|
3210
|
+
token_decimals: number;
|
|
3105
3211
|
token_uri_data: {
|
|
3106
3212
|
name?: string | undefined;
|
|
3107
3213
|
description?: string | undefined;
|
|
@@ -3135,6 +3241,7 @@ declare const assetContract: {
|
|
|
3135
3241
|
token_name: string;
|
|
3136
3242
|
token_description: string | null;
|
|
3137
3243
|
token_symbol: string;
|
|
3244
|
+
token_decimals: number;
|
|
3138
3245
|
token_uri_data: {
|
|
3139
3246
|
name?: string | undefined;
|
|
3140
3247
|
description?: string | undefined;
|
|
@@ -3177,6 +3284,7 @@ declare const assetContract: {
|
|
|
3177
3284
|
pool_current_sale_progress_percentage: number;
|
|
3178
3285
|
pool_config_max_proceeds: string;
|
|
3179
3286
|
pool_config_min_proceeds: string;
|
|
3287
|
+
pool_config_num_tokens_to_sell: string;
|
|
3180
3288
|
pool_id: string;
|
|
3181
3289
|
pool_address: `0x${string}`;
|
|
3182
3290
|
pool_config_starting_time: string;
|
|
@@ -3188,6 +3296,7 @@ declare const assetContract: {
|
|
|
3188
3296
|
token_name: string;
|
|
3189
3297
|
token_description: string | null;
|
|
3190
3298
|
token_symbol: string;
|
|
3299
|
+
token_decimals: number;
|
|
3191
3300
|
token_uri_data: {
|
|
3192
3301
|
name?: string | undefined;
|
|
3193
3302
|
description?: string | undefined;
|
|
@@ -3220,6 +3329,7 @@ declare const assetContract: {
|
|
|
3220
3329
|
token_name: string;
|
|
3221
3330
|
token_description: string | null;
|
|
3222
3331
|
token_symbol: string;
|
|
3332
|
+
token_decimals: number;
|
|
3223
3333
|
token_uri_data: {
|
|
3224
3334
|
name?: string | undefined;
|
|
3225
3335
|
description?: string | undefined;
|
|
@@ -3259,6 +3369,7 @@ declare const assetContract: {
|
|
|
3259
3369
|
pool_current_sale_progress_percentage: number;
|
|
3260
3370
|
pool_config_max_proceeds: string;
|
|
3261
3371
|
pool_config_min_proceeds: string;
|
|
3372
|
+
pool_config_num_tokens_to_sell: string;
|
|
3262
3373
|
pool_id: string;
|
|
3263
3374
|
pool_address: string;
|
|
3264
3375
|
pool_config_starting_time: string;
|
|
@@ -3270,6 +3381,7 @@ declare const assetContract: {
|
|
|
3270
3381
|
token_name: string;
|
|
3271
3382
|
token_description: string | null;
|
|
3272
3383
|
token_symbol: string;
|
|
3384
|
+
token_decimals: number;
|
|
3273
3385
|
token_uri_data: {
|
|
3274
3386
|
name?: string | undefined;
|
|
3275
3387
|
description?: string | undefined;
|
|
@@ -3303,6 +3415,7 @@ declare const assetContract: {
|
|
|
3303
3415
|
token_name: string;
|
|
3304
3416
|
token_description: string | null;
|
|
3305
3417
|
token_symbol: string;
|
|
3418
|
+
token_decimals: number;
|
|
3306
3419
|
token_uri_data: {
|
|
3307
3420
|
name?: string | undefined;
|
|
3308
3421
|
description?: string | undefined;
|
|
@@ -3347,6 +3460,7 @@ declare const assetContract: {
|
|
|
3347
3460
|
pool_current_sale_progress_percentage: number;
|
|
3348
3461
|
pool_config_max_proceeds: string;
|
|
3349
3462
|
pool_config_min_proceeds: string;
|
|
3463
|
+
pool_config_num_tokens_to_sell: string;
|
|
3350
3464
|
pool_id: string;
|
|
3351
3465
|
pool_address: `0x${string}`;
|
|
3352
3466
|
pool_config_starting_time: string;
|
|
@@ -3358,6 +3472,7 @@ declare const assetContract: {
|
|
|
3358
3472
|
token_name: string;
|
|
3359
3473
|
token_description: string | null;
|
|
3360
3474
|
token_symbol: string;
|
|
3475
|
+
token_decimals: number;
|
|
3361
3476
|
token_uri_data: {
|
|
3362
3477
|
name?: string | undefined;
|
|
3363
3478
|
description?: string | undefined;
|
|
@@ -3390,6 +3505,7 @@ declare const assetContract: {
|
|
|
3390
3505
|
token_name: string;
|
|
3391
3506
|
token_description: string | null;
|
|
3392
3507
|
token_symbol: string;
|
|
3508
|
+
token_decimals: number;
|
|
3393
3509
|
token_uri_data: {
|
|
3394
3510
|
name?: string | undefined;
|
|
3395
3511
|
description?: string | undefined;
|
|
@@ -3431,6 +3547,7 @@ declare const assetContract: {
|
|
|
3431
3547
|
pool_current_sale_progress_percentage: number;
|
|
3432
3548
|
pool_config_max_proceeds: string;
|
|
3433
3549
|
pool_config_min_proceeds: string;
|
|
3550
|
+
pool_config_num_tokens_to_sell: string;
|
|
3434
3551
|
pool_id: string;
|
|
3435
3552
|
pool_address: string;
|
|
3436
3553
|
pool_config_starting_time: string;
|
|
@@ -3442,6 +3559,7 @@ declare const assetContract: {
|
|
|
3442
3559
|
token_name: string;
|
|
3443
3560
|
token_description: string | null;
|
|
3444
3561
|
token_symbol: string;
|
|
3562
|
+
token_decimals: number;
|
|
3445
3563
|
token_uri_data: {
|
|
3446
3564
|
name?: string | undefined;
|
|
3447
3565
|
description?: string | undefined;
|
|
@@ -3475,6 +3593,7 @@ declare const assetContract: {
|
|
|
3475
3593
|
token_name: string;
|
|
3476
3594
|
token_description: string | null;
|
|
3477
3595
|
token_symbol: string;
|
|
3596
|
+
token_decimals: number;
|
|
3478
3597
|
token_uri_data: {
|
|
3479
3598
|
name?: string | undefined;
|
|
3480
3599
|
description?: string | undefined;
|
|
@@ -3500,4 +3619,4 @@ declare const assetContract: {
|
|
|
3500
3619
|
};
|
|
3501
3620
|
};
|
|
3502
3621
|
};
|
|
3503
|
-
export { assetContract, AssetResponse };
|
|
3622
|
+
export { assetContract, AssetResponseSchema, AssetResponse };
|