@longdotxyz/shared 0.0.50 → 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 +118 -0
- package/dist/contracts/asset.contract.js +5 -0
- package/dist/contracts/asset.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
|
@@ -22,6 +22,7 @@ declare const AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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 AssetResponseSchema: 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;
|
|
@@ -774,6 +799,7 @@ declare const assetContract: {
|
|
|
774
799
|
pool_current_sale_progress_percentage: z.ZodNumber;
|
|
775
800
|
pool_config_max_proceeds: z.ZodString;
|
|
776
801
|
pool_config_min_proceeds: z.ZodString;
|
|
802
|
+
pool_config_num_tokens_to_sell: z.ZodString;
|
|
777
803
|
pool_id: z.ZodString;
|
|
778
804
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
779
805
|
pool_config_starting_time: z.ZodString;
|
|
@@ -785,6 +811,7 @@ declare const assetContract: {
|
|
|
785
811
|
token_name: z.ZodString;
|
|
786
812
|
token_description: z.ZodNullable<z.ZodString>;
|
|
787
813
|
token_symbol: z.ZodString;
|
|
814
|
+
token_decimals: z.ZodNumber;
|
|
788
815
|
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
789
816
|
name: z.ZodOptional<z.ZodString>;
|
|
790
817
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -842,6 +869,7 @@ declare const assetContract: {
|
|
|
842
869
|
token_name: string;
|
|
843
870
|
token_description: string | null;
|
|
844
871
|
token_symbol: string;
|
|
872
|
+
token_decimals: number;
|
|
845
873
|
token_uri_data: {
|
|
846
874
|
name?: string | undefined;
|
|
847
875
|
description?: string | undefined;
|
|
@@ -862,6 +890,7 @@ declare const assetContract: {
|
|
|
862
890
|
token_name: string;
|
|
863
891
|
token_description: string | null;
|
|
864
892
|
token_symbol: string;
|
|
893
|
+
token_decimals: number;
|
|
865
894
|
token_uri_data: {
|
|
866
895
|
name?: string | undefined;
|
|
867
896
|
description?: string | undefined;
|
|
@@ -894,6 +923,7 @@ declare const assetContract: {
|
|
|
894
923
|
pool_current_sale_progress_percentage: number;
|
|
895
924
|
pool_config_max_proceeds: string;
|
|
896
925
|
pool_config_min_proceeds: string;
|
|
926
|
+
pool_config_num_tokens_to_sell: string;
|
|
897
927
|
pool_id: string;
|
|
898
928
|
pool_address: `0x${string}`;
|
|
899
929
|
pool_config_starting_time: string;
|
|
@@ -905,6 +935,7 @@ declare const assetContract: {
|
|
|
905
935
|
token_name: string;
|
|
906
936
|
token_description: string | null;
|
|
907
937
|
token_symbol: string;
|
|
938
|
+
token_decimals: number;
|
|
908
939
|
token_uri_data: {
|
|
909
940
|
name?: string | undefined;
|
|
910
941
|
description?: string | undefined;
|
|
@@ -936,6 +967,7 @@ declare const assetContract: {
|
|
|
936
967
|
pool_current_sale_progress_percentage: number;
|
|
937
968
|
pool_config_max_proceeds: string;
|
|
938
969
|
pool_config_min_proceeds: string;
|
|
970
|
+
pool_config_num_tokens_to_sell: string;
|
|
939
971
|
pool_id: string;
|
|
940
972
|
pool_address: string;
|
|
941
973
|
pool_config_starting_time: string;
|
|
@@ -947,6 +979,7 @@ declare const assetContract: {
|
|
|
947
979
|
token_name: string;
|
|
948
980
|
token_description: string | null;
|
|
949
981
|
token_symbol: string;
|
|
982
|
+
token_decimals: number;
|
|
950
983
|
token_uri_data: {
|
|
951
984
|
name?: string | undefined;
|
|
952
985
|
description?: string | undefined;
|
|
@@ -980,6 +1013,7 @@ declare const assetContract: {
|
|
|
980
1013
|
token_name: z.ZodString;
|
|
981
1014
|
token_description: z.ZodNullable<z.ZodString>;
|
|
982
1015
|
token_symbol: z.ZodString;
|
|
1016
|
+
token_decimals: z.ZodNumber;
|
|
983
1017
|
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
984
1018
|
name: z.ZodOptional<z.ZodString>;
|
|
985
1019
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1038,6 +1072,7 @@ declare const assetContract: {
|
|
|
1038
1072
|
token_name: string;
|
|
1039
1073
|
token_description: string | null;
|
|
1040
1074
|
token_symbol: string;
|
|
1075
|
+
token_decimals: number;
|
|
1041
1076
|
token_uri_data: {
|
|
1042
1077
|
name?: string | undefined;
|
|
1043
1078
|
description?: string | undefined;
|
|
@@ -1059,6 +1094,7 @@ declare const assetContract: {
|
|
|
1059
1094
|
token_name: string;
|
|
1060
1095
|
token_description: string | null;
|
|
1061
1096
|
token_symbol: string;
|
|
1097
|
+
token_decimals: number;
|
|
1062
1098
|
token_uri_data: {
|
|
1063
1099
|
name?: string | undefined;
|
|
1064
1100
|
description?: string | undefined;
|
|
@@ -1092,6 +1128,7 @@ declare const assetContract: {
|
|
|
1092
1128
|
token_name: string;
|
|
1093
1129
|
token_description: string | null;
|
|
1094
1130
|
token_symbol: string;
|
|
1131
|
+
token_decimals: number;
|
|
1095
1132
|
token_uri_data: {
|
|
1096
1133
|
name?: string | undefined;
|
|
1097
1134
|
description?: string | undefined;
|
|
@@ -1124,6 +1161,7 @@ declare const assetContract: {
|
|
|
1124
1161
|
token_name: string;
|
|
1125
1162
|
token_description: string | null;
|
|
1126
1163
|
token_symbol: string;
|
|
1164
|
+
token_decimals: number;
|
|
1127
1165
|
token_uri_data: {
|
|
1128
1166
|
name?: string | undefined;
|
|
1129
1167
|
description?: string | undefined;
|
|
@@ -1165,6 +1203,7 @@ declare const assetContract: {
|
|
|
1165
1203
|
pool_current_sale_progress_percentage: number;
|
|
1166
1204
|
pool_config_max_proceeds: string;
|
|
1167
1205
|
pool_config_min_proceeds: string;
|
|
1206
|
+
pool_config_num_tokens_to_sell: string;
|
|
1168
1207
|
pool_id: string;
|
|
1169
1208
|
pool_address: `0x${string}`;
|
|
1170
1209
|
pool_config_starting_time: string;
|
|
@@ -1176,6 +1215,7 @@ declare const assetContract: {
|
|
|
1176
1215
|
token_name: string;
|
|
1177
1216
|
token_description: string | null;
|
|
1178
1217
|
token_symbol: string;
|
|
1218
|
+
token_decimals: number;
|
|
1179
1219
|
token_uri_data: {
|
|
1180
1220
|
name?: string | undefined;
|
|
1181
1221
|
description?: string | undefined;
|
|
@@ -1208,6 +1248,7 @@ declare const assetContract: {
|
|
|
1208
1248
|
token_name: string;
|
|
1209
1249
|
token_description: string | null;
|
|
1210
1250
|
token_symbol: string;
|
|
1251
|
+
token_decimals: number;
|
|
1211
1252
|
token_uri_data: {
|
|
1212
1253
|
name?: string | undefined;
|
|
1213
1254
|
description?: string | undefined;
|
|
@@ -1247,6 +1288,7 @@ declare const assetContract: {
|
|
|
1247
1288
|
pool_current_sale_progress_percentage: number;
|
|
1248
1289
|
pool_config_max_proceeds: string;
|
|
1249
1290
|
pool_config_min_proceeds: string;
|
|
1291
|
+
pool_config_num_tokens_to_sell: string;
|
|
1250
1292
|
pool_id: string;
|
|
1251
1293
|
pool_address: string;
|
|
1252
1294
|
pool_config_starting_time: string;
|
|
@@ -1258,6 +1300,7 @@ declare const assetContract: {
|
|
|
1258
1300
|
token_name: string;
|
|
1259
1301
|
token_description: string | null;
|
|
1260
1302
|
token_symbol: string;
|
|
1303
|
+
token_decimals: number;
|
|
1261
1304
|
token_uri_data: {
|
|
1262
1305
|
name?: string | undefined;
|
|
1263
1306
|
description?: string | undefined;
|
|
@@ -1291,6 +1334,7 @@ declare const assetContract: {
|
|
|
1291
1334
|
token_name: string;
|
|
1292
1335
|
token_description: string | null;
|
|
1293
1336
|
token_symbol: string;
|
|
1337
|
+
token_decimals: number;
|
|
1294
1338
|
token_uri_data: {
|
|
1295
1339
|
name?: string | undefined;
|
|
1296
1340
|
description?: string | undefined;
|
|
@@ -1333,6 +1377,7 @@ declare const assetContract: {
|
|
|
1333
1377
|
pool_current_sale_progress_percentage: number;
|
|
1334
1378
|
pool_config_max_proceeds: string;
|
|
1335
1379
|
pool_config_min_proceeds: string;
|
|
1380
|
+
pool_config_num_tokens_to_sell: string;
|
|
1336
1381
|
pool_id: string;
|
|
1337
1382
|
pool_address: `0x${string}`;
|
|
1338
1383
|
pool_config_starting_time: string;
|
|
@@ -1344,6 +1389,7 @@ declare const assetContract: {
|
|
|
1344
1389
|
token_name: string;
|
|
1345
1390
|
token_description: string | null;
|
|
1346
1391
|
token_symbol: string;
|
|
1392
|
+
token_decimals: number;
|
|
1347
1393
|
token_uri_data: {
|
|
1348
1394
|
name?: string | undefined;
|
|
1349
1395
|
description?: string | undefined;
|
|
@@ -1376,6 +1422,7 @@ declare const assetContract: {
|
|
|
1376
1422
|
token_name: string;
|
|
1377
1423
|
token_description: string | null;
|
|
1378
1424
|
token_symbol: string;
|
|
1425
|
+
token_decimals: number;
|
|
1379
1426
|
token_uri_data: {
|
|
1380
1427
|
name?: string | undefined;
|
|
1381
1428
|
description?: string | undefined;
|
|
@@ -1415,6 +1462,7 @@ declare const assetContract: {
|
|
|
1415
1462
|
pool_current_sale_progress_percentage: number;
|
|
1416
1463
|
pool_config_max_proceeds: string;
|
|
1417
1464
|
pool_config_min_proceeds: string;
|
|
1465
|
+
pool_config_num_tokens_to_sell: string;
|
|
1418
1466
|
pool_id: string;
|
|
1419
1467
|
pool_address: string;
|
|
1420
1468
|
pool_config_starting_time: string;
|
|
@@ -1426,6 +1474,7 @@ declare const assetContract: {
|
|
|
1426
1474
|
token_name: string;
|
|
1427
1475
|
token_description: string | null;
|
|
1428
1476
|
token_symbol: string;
|
|
1477
|
+
token_decimals: number;
|
|
1429
1478
|
token_uri_data: {
|
|
1430
1479
|
name?: string | undefined;
|
|
1431
1480
|
description?: string | undefined;
|
|
@@ -1459,6 +1508,7 @@ declare const assetContract: {
|
|
|
1459
1508
|
token_name: string;
|
|
1460
1509
|
token_description: string | null;
|
|
1461
1510
|
token_symbol: string;
|
|
1511
|
+
token_decimals: number;
|
|
1462
1512
|
token_uri_data: {
|
|
1463
1513
|
name?: string | undefined;
|
|
1464
1514
|
description?: string | undefined;
|
|
@@ -1503,6 +1553,7 @@ declare const assetContract: {
|
|
|
1503
1553
|
pool_current_sale_progress_percentage: number;
|
|
1504
1554
|
pool_config_max_proceeds: string;
|
|
1505
1555
|
pool_config_min_proceeds: string;
|
|
1556
|
+
pool_config_num_tokens_to_sell: string;
|
|
1506
1557
|
pool_id: string;
|
|
1507
1558
|
pool_address: `0x${string}`;
|
|
1508
1559
|
pool_config_starting_time: string;
|
|
@@ -1514,6 +1565,7 @@ declare const assetContract: {
|
|
|
1514
1565
|
token_name: string;
|
|
1515
1566
|
token_description: string | null;
|
|
1516
1567
|
token_symbol: string;
|
|
1568
|
+
token_decimals: number;
|
|
1517
1569
|
token_uri_data: {
|
|
1518
1570
|
name?: string | undefined;
|
|
1519
1571
|
description?: string | undefined;
|
|
@@ -1546,6 +1598,7 @@ declare const assetContract: {
|
|
|
1546
1598
|
token_name: string;
|
|
1547
1599
|
token_description: string | null;
|
|
1548
1600
|
token_symbol: string;
|
|
1601
|
+
token_decimals: number;
|
|
1549
1602
|
token_uri_data: {
|
|
1550
1603
|
name?: string | undefined;
|
|
1551
1604
|
description?: string | undefined;
|
|
@@ -1587,6 +1640,7 @@ declare const assetContract: {
|
|
|
1587
1640
|
pool_current_sale_progress_percentage: number;
|
|
1588
1641
|
pool_config_max_proceeds: string;
|
|
1589
1642
|
pool_config_min_proceeds: string;
|
|
1643
|
+
pool_config_num_tokens_to_sell: string;
|
|
1590
1644
|
pool_id: string;
|
|
1591
1645
|
pool_address: string;
|
|
1592
1646
|
pool_config_starting_time: string;
|
|
@@ -1598,6 +1652,7 @@ declare const assetContract: {
|
|
|
1598
1652
|
token_name: string;
|
|
1599
1653
|
token_description: string | null;
|
|
1600
1654
|
token_symbol: string;
|
|
1655
|
+
token_decimals: number;
|
|
1601
1656
|
token_uri_data: {
|
|
1602
1657
|
name?: string | undefined;
|
|
1603
1658
|
description?: string | undefined;
|
|
@@ -1631,6 +1686,7 @@ declare const assetContract: {
|
|
|
1631
1686
|
token_name: string;
|
|
1632
1687
|
token_description: string | null;
|
|
1633
1688
|
token_symbol: string;
|
|
1689
|
+
token_decimals: number;
|
|
1634
1690
|
token_uri_data: {
|
|
1635
1691
|
name?: string | undefined;
|
|
1636
1692
|
description?: string | undefined;
|
|
@@ -1696,6 +1752,7 @@ declare const assetContract: {
|
|
|
1696
1752
|
pool_current_sale_progress_percentage: z.ZodNumber;
|
|
1697
1753
|
pool_config_max_proceeds: z.ZodString;
|
|
1698
1754
|
pool_config_min_proceeds: z.ZodString;
|
|
1755
|
+
pool_config_num_tokens_to_sell: z.ZodString;
|
|
1699
1756
|
pool_id: z.ZodString;
|
|
1700
1757
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1701
1758
|
pool_config_starting_time: z.ZodString;
|
|
@@ -1707,6 +1764,7 @@ declare const assetContract: {
|
|
|
1707
1764
|
token_name: z.ZodString;
|
|
1708
1765
|
token_description: z.ZodNullable<z.ZodString>;
|
|
1709
1766
|
token_symbol: z.ZodString;
|
|
1767
|
+
token_decimals: z.ZodNumber;
|
|
1710
1768
|
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
1711
1769
|
name: z.ZodOptional<z.ZodString>;
|
|
1712
1770
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1764,6 +1822,7 @@ declare const assetContract: {
|
|
|
1764
1822
|
token_name: string;
|
|
1765
1823
|
token_description: string | null;
|
|
1766
1824
|
token_symbol: string;
|
|
1825
|
+
token_decimals: number;
|
|
1767
1826
|
token_uri_data: {
|
|
1768
1827
|
name?: string | undefined;
|
|
1769
1828
|
description?: string | undefined;
|
|
@@ -1784,6 +1843,7 @@ declare const assetContract: {
|
|
|
1784
1843
|
token_name: string;
|
|
1785
1844
|
token_description: string | null;
|
|
1786
1845
|
token_symbol: string;
|
|
1846
|
+
token_decimals: number;
|
|
1787
1847
|
token_uri_data: {
|
|
1788
1848
|
name?: string | undefined;
|
|
1789
1849
|
description?: string | undefined;
|
|
@@ -1816,6 +1876,7 @@ declare const assetContract: {
|
|
|
1816
1876
|
pool_current_sale_progress_percentage: number;
|
|
1817
1877
|
pool_config_max_proceeds: string;
|
|
1818
1878
|
pool_config_min_proceeds: string;
|
|
1879
|
+
pool_config_num_tokens_to_sell: string;
|
|
1819
1880
|
pool_id: string;
|
|
1820
1881
|
pool_address: `0x${string}`;
|
|
1821
1882
|
pool_config_starting_time: string;
|
|
@@ -1827,6 +1888,7 @@ declare const assetContract: {
|
|
|
1827
1888
|
token_name: string;
|
|
1828
1889
|
token_description: string | null;
|
|
1829
1890
|
token_symbol: string;
|
|
1891
|
+
token_decimals: number;
|
|
1830
1892
|
token_uri_data: {
|
|
1831
1893
|
name?: string | undefined;
|
|
1832
1894
|
description?: string | undefined;
|
|
@@ -1858,6 +1920,7 @@ declare const assetContract: {
|
|
|
1858
1920
|
pool_current_sale_progress_percentage: number;
|
|
1859
1921
|
pool_config_max_proceeds: string;
|
|
1860
1922
|
pool_config_min_proceeds: string;
|
|
1923
|
+
pool_config_num_tokens_to_sell: string;
|
|
1861
1924
|
pool_id: string;
|
|
1862
1925
|
pool_address: string;
|
|
1863
1926
|
pool_config_starting_time: string;
|
|
@@ -1869,6 +1932,7 @@ declare const assetContract: {
|
|
|
1869
1932
|
token_name: string;
|
|
1870
1933
|
token_description: string | null;
|
|
1871
1934
|
token_symbol: string;
|
|
1935
|
+
token_decimals: number;
|
|
1872
1936
|
token_uri_data: {
|
|
1873
1937
|
name?: string | undefined;
|
|
1874
1938
|
description?: string | undefined;
|
|
@@ -1902,6 +1966,7 @@ declare const assetContract: {
|
|
|
1902
1966
|
token_name: z.ZodString;
|
|
1903
1967
|
token_description: z.ZodNullable<z.ZodString>;
|
|
1904
1968
|
token_symbol: z.ZodString;
|
|
1969
|
+
token_decimals: z.ZodNumber;
|
|
1905
1970
|
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
1906
1971
|
name: z.ZodOptional<z.ZodString>;
|
|
1907
1972
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1960,6 +2025,7 @@ declare const assetContract: {
|
|
|
1960
2025
|
token_name: string;
|
|
1961
2026
|
token_description: string | null;
|
|
1962
2027
|
token_symbol: string;
|
|
2028
|
+
token_decimals: number;
|
|
1963
2029
|
token_uri_data: {
|
|
1964
2030
|
name?: string | undefined;
|
|
1965
2031
|
description?: string | undefined;
|
|
@@ -1981,6 +2047,7 @@ declare const assetContract: {
|
|
|
1981
2047
|
token_name: string;
|
|
1982
2048
|
token_description: string | null;
|
|
1983
2049
|
token_symbol: string;
|
|
2050
|
+
token_decimals: number;
|
|
1984
2051
|
token_uri_data: {
|
|
1985
2052
|
name?: string | undefined;
|
|
1986
2053
|
description?: string | undefined;
|
|
@@ -2014,6 +2081,7 @@ declare const assetContract: {
|
|
|
2014
2081
|
token_name: string;
|
|
2015
2082
|
token_description: string | null;
|
|
2016
2083
|
token_symbol: string;
|
|
2084
|
+
token_decimals: number;
|
|
2017
2085
|
token_uri_data: {
|
|
2018
2086
|
name?: string | undefined;
|
|
2019
2087
|
description?: string | undefined;
|
|
@@ -2046,6 +2114,7 @@ declare const assetContract: {
|
|
|
2046
2114
|
token_name: string;
|
|
2047
2115
|
token_description: string | null;
|
|
2048
2116
|
token_symbol: string;
|
|
2117
|
+
token_decimals: number;
|
|
2049
2118
|
token_uri_data: {
|
|
2050
2119
|
name?: string | undefined;
|
|
2051
2120
|
description?: string | undefined;
|
|
@@ -2087,6 +2156,7 @@ declare const assetContract: {
|
|
|
2087
2156
|
pool_current_sale_progress_percentage: number;
|
|
2088
2157
|
pool_config_max_proceeds: string;
|
|
2089
2158
|
pool_config_min_proceeds: string;
|
|
2159
|
+
pool_config_num_tokens_to_sell: string;
|
|
2090
2160
|
pool_id: string;
|
|
2091
2161
|
pool_address: `0x${string}`;
|
|
2092
2162
|
pool_config_starting_time: string;
|
|
@@ -2098,6 +2168,7 @@ declare const assetContract: {
|
|
|
2098
2168
|
token_name: string;
|
|
2099
2169
|
token_description: string | null;
|
|
2100
2170
|
token_symbol: string;
|
|
2171
|
+
token_decimals: number;
|
|
2101
2172
|
token_uri_data: {
|
|
2102
2173
|
name?: string | undefined;
|
|
2103
2174
|
description?: string | undefined;
|
|
@@ -2130,6 +2201,7 @@ declare const assetContract: {
|
|
|
2130
2201
|
token_name: string;
|
|
2131
2202
|
token_description: string | null;
|
|
2132
2203
|
token_symbol: string;
|
|
2204
|
+
token_decimals: number;
|
|
2133
2205
|
token_uri_data: {
|
|
2134
2206
|
name?: string | undefined;
|
|
2135
2207
|
description?: string | undefined;
|
|
@@ -2169,6 +2241,7 @@ declare const assetContract: {
|
|
|
2169
2241
|
pool_current_sale_progress_percentage: number;
|
|
2170
2242
|
pool_config_max_proceeds: string;
|
|
2171
2243
|
pool_config_min_proceeds: string;
|
|
2244
|
+
pool_config_num_tokens_to_sell: string;
|
|
2172
2245
|
pool_id: string;
|
|
2173
2246
|
pool_address: string;
|
|
2174
2247
|
pool_config_starting_time: string;
|
|
@@ -2180,6 +2253,7 @@ declare const assetContract: {
|
|
|
2180
2253
|
token_name: string;
|
|
2181
2254
|
token_description: string | null;
|
|
2182
2255
|
token_symbol: string;
|
|
2256
|
+
token_decimals: number;
|
|
2183
2257
|
token_uri_data: {
|
|
2184
2258
|
name?: string | undefined;
|
|
2185
2259
|
description?: string | undefined;
|
|
@@ -2213,6 +2287,7 @@ declare const assetContract: {
|
|
|
2213
2287
|
token_name: string;
|
|
2214
2288
|
token_description: string | null;
|
|
2215
2289
|
token_symbol: string;
|
|
2290
|
+
token_decimals: number;
|
|
2216
2291
|
token_uri_data: {
|
|
2217
2292
|
name?: string | undefined;
|
|
2218
2293
|
description?: string | undefined;
|
|
@@ -2255,6 +2330,7 @@ declare const assetContract: {
|
|
|
2255
2330
|
pool_current_sale_progress_percentage: number;
|
|
2256
2331
|
pool_config_max_proceeds: string;
|
|
2257
2332
|
pool_config_min_proceeds: string;
|
|
2333
|
+
pool_config_num_tokens_to_sell: string;
|
|
2258
2334
|
pool_id: string;
|
|
2259
2335
|
pool_address: `0x${string}`;
|
|
2260
2336
|
pool_config_starting_time: string;
|
|
@@ -2266,6 +2342,7 @@ declare const assetContract: {
|
|
|
2266
2342
|
token_name: string;
|
|
2267
2343
|
token_description: string | null;
|
|
2268
2344
|
token_symbol: string;
|
|
2345
|
+
token_decimals: number;
|
|
2269
2346
|
token_uri_data: {
|
|
2270
2347
|
name?: string | undefined;
|
|
2271
2348
|
description?: string | undefined;
|
|
@@ -2298,6 +2375,7 @@ declare const assetContract: {
|
|
|
2298
2375
|
token_name: string;
|
|
2299
2376
|
token_description: string | null;
|
|
2300
2377
|
token_symbol: string;
|
|
2378
|
+
token_decimals: number;
|
|
2301
2379
|
token_uri_data: {
|
|
2302
2380
|
name?: string | undefined;
|
|
2303
2381
|
description?: string | undefined;
|
|
@@ -2337,6 +2415,7 @@ declare const assetContract: {
|
|
|
2337
2415
|
pool_current_sale_progress_percentage: number;
|
|
2338
2416
|
pool_config_max_proceeds: string;
|
|
2339
2417
|
pool_config_min_proceeds: string;
|
|
2418
|
+
pool_config_num_tokens_to_sell: string;
|
|
2340
2419
|
pool_id: string;
|
|
2341
2420
|
pool_address: string;
|
|
2342
2421
|
pool_config_starting_time: string;
|
|
@@ -2348,6 +2427,7 @@ declare const assetContract: {
|
|
|
2348
2427
|
token_name: string;
|
|
2349
2428
|
token_description: string | null;
|
|
2350
2429
|
token_symbol: string;
|
|
2430
|
+
token_decimals: number;
|
|
2351
2431
|
token_uri_data: {
|
|
2352
2432
|
name?: string | undefined;
|
|
2353
2433
|
description?: string | undefined;
|
|
@@ -2381,6 +2461,7 @@ declare const assetContract: {
|
|
|
2381
2461
|
token_name: string;
|
|
2382
2462
|
token_description: string | null;
|
|
2383
2463
|
token_symbol: string;
|
|
2464
|
+
token_decimals: number;
|
|
2384
2465
|
token_uri_data: {
|
|
2385
2466
|
name?: string | undefined;
|
|
2386
2467
|
description?: string | undefined;
|
|
@@ -2425,6 +2506,7 @@ declare const assetContract: {
|
|
|
2425
2506
|
pool_current_sale_progress_percentage: number;
|
|
2426
2507
|
pool_config_max_proceeds: string;
|
|
2427
2508
|
pool_config_min_proceeds: string;
|
|
2509
|
+
pool_config_num_tokens_to_sell: string;
|
|
2428
2510
|
pool_id: string;
|
|
2429
2511
|
pool_address: `0x${string}`;
|
|
2430
2512
|
pool_config_starting_time: string;
|
|
@@ -2436,6 +2518,7 @@ declare const assetContract: {
|
|
|
2436
2518
|
token_name: string;
|
|
2437
2519
|
token_description: string | null;
|
|
2438
2520
|
token_symbol: string;
|
|
2521
|
+
token_decimals: number;
|
|
2439
2522
|
token_uri_data: {
|
|
2440
2523
|
name?: string | undefined;
|
|
2441
2524
|
description?: string | undefined;
|
|
@@ -2468,6 +2551,7 @@ declare const assetContract: {
|
|
|
2468
2551
|
token_name: string;
|
|
2469
2552
|
token_description: string | null;
|
|
2470
2553
|
token_symbol: string;
|
|
2554
|
+
token_decimals: number;
|
|
2471
2555
|
token_uri_data: {
|
|
2472
2556
|
name?: string | undefined;
|
|
2473
2557
|
description?: string | undefined;
|
|
@@ -2509,6 +2593,7 @@ declare const assetContract: {
|
|
|
2509
2593
|
pool_current_sale_progress_percentage: number;
|
|
2510
2594
|
pool_config_max_proceeds: string;
|
|
2511
2595
|
pool_config_min_proceeds: string;
|
|
2596
|
+
pool_config_num_tokens_to_sell: string;
|
|
2512
2597
|
pool_id: string;
|
|
2513
2598
|
pool_address: string;
|
|
2514
2599
|
pool_config_starting_time: string;
|
|
@@ -2520,6 +2605,7 @@ declare const assetContract: {
|
|
|
2520
2605
|
token_name: string;
|
|
2521
2606
|
token_description: string | null;
|
|
2522
2607
|
token_symbol: string;
|
|
2608
|
+
token_decimals: number;
|
|
2523
2609
|
token_uri_data: {
|
|
2524
2610
|
name?: string | undefined;
|
|
2525
2611
|
description?: string | undefined;
|
|
@@ -2553,6 +2639,7 @@ declare const assetContract: {
|
|
|
2553
2639
|
token_name: string;
|
|
2554
2640
|
token_description: string | null;
|
|
2555
2641
|
token_symbol: string;
|
|
2642
|
+
token_decimals: number;
|
|
2556
2643
|
token_uri_data: {
|
|
2557
2644
|
name?: string | undefined;
|
|
2558
2645
|
description?: string | undefined;
|
|
@@ -2619,6 +2706,7 @@ declare const assetContract: {
|
|
|
2619
2706
|
pool_current_sale_progress_percentage: z.ZodNumber;
|
|
2620
2707
|
pool_config_max_proceeds: z.ZodString;
|
|
2621
2708
|
pool_config_min_proceeds: z.ZodString;
|
|
2709
|
+
pool_config_num_tokens_to_sell: z.ZodString;
|
|
2622
2710
|
pool_id: z.ZodString;
|
|
2623
2711
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
2624
2712
|
pool_config_starting_time: z.ZodString;
|
|
@@ -2630,6 +2718,7 @@ declare const assetContract: {
|
|
|
2630
2718
|
token_name: z.ZodString;
|
|
2631
2719
|
token_description: z.ZodNullable<z.ZodString>;
|
|
2632
2720
|
token_symbol: z.ZodString;
|
|
2721
|
+
token_decimals: z.ZodNumber;
|
|
2633
2722
|
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
2634
2723
|
name: z.ZodOptional<z.ZodString>;
|
|
2635
2724
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2687,6 +2776,7 @@ declare const assetContract: {
|
|
|
2687
2776
|
token_name: string;
|
|
2688
2777
|
token_description: string | null;
|
|
2689
2778
|
token_symbol: string;
|
|
2779
|
+
token_decimals: number;
|
|
2690
2780
|
token_uri_data: {
|
|
2691
2781
|
name?: string | undefined;
|
|
2692
2782
|
description?: string | undefined;
|
|
@@ -2707,6 +2797,7 @@ declare const assetContract: {
|
|
|
2707
2797
|
token_name: string;
|
|
2708
2798
|
token_description: string | null;
|
|
2709
2799
|
token_symbol: string;
|
|
2800
|
+
token_decimals: number;
|
|
2710
2801
|
token_uri_data: {
|
|
2711
2802
|
name?: string | undefined;
|
|
2712
2803
|
description?: string | undefined;
|
|
@@ -2739,6 +2830,7 @@ declare const assetContract: {
|
|
|
2739
2830
|
pool_current_sale_progress_percentage: number;
|
|
2740
2831
|
pool_config_max_proceeds: string;
|
|
2741
2832
|
pool_config_min_proceeds: string;
|
|
2833
|
+
pool_config_num_tokens_to_sell: string;
|
|
2742
2834
|
pool_id: string;
|
|
2743
2835
|
pool_address: `0x${string}`;
|
|
2744
2836
|
pool_config_starting_time: string;
|
|
@@ -2750,6 +2842,7 @@ declare const assetContract: {
|
|
|
2750
2842
|
token_name: string;
|
|
2751
2843
|
token_description: string | null;
|
|
2752
2844
|
token_symbol: string;
|
|
2845
|
+
token_decimals: number;
|
|
2753
2846
|
token_uri_data: {
|
|
2754
2847
|
name?: string | undefined;
|
|
2755
2848
|
description?: string | undefined;
|
|
@@ -2781,6 +2874,7 @@ declare const assetContract: {
|
|
|
2781
2874
|
pool_current_sale_progress_percentage: number;
|
|
2782
2875
|
pool_config_max_proceeds: string;
|
|
2783
2876
|
pool_config_min_proceeds: string;
|
|
2877
|
+
pool_config_num_tokens_to_sell: string;
|
|
2784
2878
|
pool_id: string;
|
|
2785
2879
|
pool_address: string;
|
|
2786
2880
|
pool_config_starting_time: string;
|
|
@@ -2792,6 +2886,7 @@ declare const assetContract: {
|
|
|
2792
2886
|
token_name: string;
|
|
2793
2887
|
token_description: string | null;
|
|
2794
2888
|
token_symbol: string;
|
|
2889
|
+
token_decimals: number;
|
|
2795
2890
|
token_uri_data: {
|
|
2796
2891
|
name?: string | undefined;
|
|
2797
2892
|
description?: string | undefined;
|
|
@@ -2825,6 +2920,7 @@ declare const assetContract: {
|
|
|
2825
2920
|
token_name: z.ZodString;
|
|
2826
2921
|
token_description: z.ZodNullable<z.ZodString>;
|
|
2827
2922
|
token_symbol: z.ZodString;
|
|
2923
|
+
token_decimals: z.ZodNumber;
|
|
2828
2924
|
token_uri_data: z.ZodNullable<z.ZodObject<{
|
|
2829
2925
|
name: z.ZodOptional<z.ZodString>;
|
|
2830
2926
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2883,6 +2979,7 @@ declare const assetContract: {
|
|
|
2883
2979
|
token_name: string;
|
|
2884
2980
|
token_description: string | null;
|
|
2885
2981
|
token_symbol: string;
|
|
2982
|
+
token_decimals: number;
|
|
2886
2983
|
token_uri_data: {
|
|
2887
2984
|
name?: string | undefined;
|
|
2888
2985
|
description?: string | undefined;
|
|
@@ -2904,6 +3001,7 @@ declare const assetContract: {
|
|
|
2904
3001
|
token_name: string;
|
|
2905
3002
|
token_description: string | null;
|
|
2906
3003
|
token_symbol: string;
|
|
3004
|
+
token_decimals: number;
|
|
2907
3005
|
token_uri_data: {
|
|
2908
3006
|
name?: string | undefined;
|
|
2909
3007
|
description?: string | undefined;
|
|
@@ -2937,6 +3035,7 @@ declare const assetContract: {
|
|
|
2937
3035
|
token_name: string;
|
|
2938
3036
|
token_description: string | null;
|
|
2939
3037
|
token_symbol: string;
|
|
3038
|
+
token_decimals: number;
|
|
2940
3039
|
token_uri_data: {
|
|
2941
3040
|
name?: string | undefined;
|
|
2942
3041
|
description?: string | undefined;
|
|
@@ -2969,6 +3068,7 @@ declare const assetContract: {
|
|
|
2969
3068
|
token_name: string;
|
|
2970
3069
|
token_description: string | null;
|
|
2971
3070
|
token_symbol: string;
|
|
3071
|
+
token_decimals: number;
|
|
2972
3072
|
token_uri_data: {
|
|
2973
3073
|
name?: string | undefined;
|
|
2974
3074
|
description?: string | undefined;
|
|
@@ -3010,6 +3110,7 @@ declare const assetContract: {
|
|
|
3010
3110
|
pool_current_sale_progress_percentage: number;
|
|
3011
3111
|
pool_config_max_proceeds: string;
|
|
3012
3112
|
pool_config_min_proceeds: string;
|
|
3113
|
+
pool_config_num_tokens_to_sell: string;
|
|
3013
3114
|
pool_id: string;
|
|
3014
3115
|
pool_address: `0x${string}`;
|
|
3015
3116
|
pool_config_starting_time: string;
|
|
@@ -3021,6 +3122,7 @@ declare const assetContract: {
|
|
|
3021
3122
|
token_name: string;
|
|
3022
3123
|
token_description: string | null;
|
|
3023
3124
|
token_symbol: string;
|
|
3125
|
+
token_decimals: number;
|
|
3024
3126
|
token_uri_data: {
|
|
3025
3127
|
name?: string | undefined;
|
|
3026
3128
|
description?: string | undefined;
|
|
@@ -3053,6 +3155,7 @@ declare const assetContract: {
|
|
|
3053
3155
|
token_name: string;
|
|
3054
3156
|
token_description: string | null;
|
|
3055
3157
|
token_symbol: string;
|
|
3158
|
+
token_decimals: number;
|
|
3056
3159
|
token_uri_data: {
|
|
3057
3160
|
name?: string | undefined;
|
|
3058
3161
|
description?: string | undefined;
|
|
@@ -3092,6 +3195,7 @@ declare const assetContract: {
|
|
|
3092
3195
|
pool_current_sale_progress_percentage: number;
|
|
3093
3196
|
pool_config_max_proceeds: string;
|
|
3094
3197
|
pool_config_min_proceeds: string;
|
|
3198
|
+
pool_config_num_tokens_to_sell: string;
|
|
3095
3199
|
pool_id: string;
|
|
3096
3200
|
pool_address: string;
|
|
3097
3201
|
pool_config_starting_time: string;
|
|
@@ -3103,6 +3207,7 @@ declare const assetContract: {
|
|
|
3103
3207
|
token_name: string;
|
|
3104
3208
|
token_description: string | null;
|
|
3105
3209
|
token_symbol: string;
|
|
3210
|
+
token_decimals: number;
|
|
3106
3211
|
token_uri_data: {
|
|
3107
3212
|
name?: string | undefined;
|
|
3108
3213
|
description?: string | undefined;
|
|
@@ -3136,6 +3241,7 @@ declare const assetContract: {
|
|
|
3136
3241
|
token_name: string;
|
|
3137
3242
|
token_description: string | null;
|
|
3138
3243
|
token_symbol: string;
|
|
3244
|
+
token_decimals: number;
|
|
3139
3245
|
token_uri_data: {
|
|
3140
3246
|
name?: string | undefined;
|
|
3141
3247
|
description?: string | undefined;
|
|
@@ -3178,6 +3284,7 @@ declare const assetContract: {
|
|
|
3178
3284
|
pool_current_sale_progress_percentage: number;
|
|
3179
3285
|
pool_config_max_proceeds: string;
|
|
3180
3286
|
pool_config_min_proceeds: string;
|
|
3287
|
+
pool_config_num_tokens_to_sell: string;
|
|
3181
3288
|
pool_id: string;
|
|
3182
3289
|
pool_address: `0x${string}`;
|
|
3183
3290
|
pool_config_starting_time: string;
|
|
@@ -3189,6 +3296,7 @@ declare const assetContract: {
|
|
|
3189
3296
|
token_name: string;
|
|
3190
3297
|
token_description: string | null;
|
|
3191
3298
|
token_symbol: string;
|
|
3299
|
+
token_decimals: number;
|
|
3192
3300
|
token_uri_data: {
|
|
3193
3301
|
name?: string | undefined;
|
|
3194
3302
|
description?: string | undefined;
|
|
@@ -3221,6 +3329,7 @@ declare const assetContract: {
|
|
|
3221
3329
|
token_name: string;
|
|
3222
3330
|
token_description: string | null;
|
|
3223
3331
|
token_symbol: string;
|
|
3332
|
+
token_decimals: number;
|
|
3224
3333
|
token_uri_data: {
|
|
3225
3334
|
name?: string | undefined;
|
|
3226
3335
|
description?: string | undefined;
|
|
@@ -3260,6 +3369,7 @@ declare const assetContract: {
|
|
|
3260
3369
|
pool_current_sale_progress_percentage: number;
|
|
3261
3370
|
pool_config_max_proceeds: string;
|
|
3262
3371
|
pool_config_min_proceeds: string;
|
|
3372
|
+
pool_config_num_tokens_to_sell: string;
|
|
3263
3373
|
pool_id: string;
|
|
3264
3374
|
pool_address: string;
|
|
3265
3375
|
pool_config_starting_time: string;
|
|
@@ -3271,6 +3381,7 @@ declare const assetContract: {
|
|
|
3271
3381
|
token_name: string;
|
|
3272
3382
|
token_description: string | null;
|
|
3273
3383
|
token_symbol: string;
|
|
3384
|
+
token_decimals: number;
|
|
3274
3385
|
token_uri_data: {
|
|
3275
3386
|
name?: string | undefined;
|
|
3276
3387
|
description?: string | undefined;
|
|
@@ -3304,6 +3415,7 @@ declare const assetContract: {
|
|
|
3304
3415
|
token_name: string;
|
|
3305
3416
|
token_description: string | null;
|
|
3306
3417
|
token_symbol: string;
|
|
3418
|
+
token_decimals: number;
|
|
3307
3419
|
token_uri_data: {
|
|
3308
3420
|
name?: string | undefined;
|
|
3309
3421
|
description?: string | undefined;
|
|
@@ -3348,6 +3460,7 @@ declare const assetContract: {
|
|
|
3348
3460
|
pool_current_sale_progress_percentage: number;
|
|
3349
3461
|
pool_config_max_proceeds: string;
|
|
3350
3462
|
pool_config_min_proceeds: string;
|
|
3463
|
+
pool_config_num_tokens_to_sell: string;
|
|
3351
3464
|
pool_id: string;
|
|
3352
3465
|
pool_address: `0x${string}`;
|
|
3353
3466
|
pool_config_starting_time: string;
|
|
@@ -3359,6 +3472,7 @@ declare const assetContract: {
|
|
|
3359
3472
|
token_name: string;
|
|
3360
3473
|
token_description: string | null;
|
|
3361
3474
|
token_symbol: string;
|
|
3475
|
+
token_decimals: number;
|
|
3362
3476
|
token_uri_data: {
|
|
3363
3477
|
name?: string | undefined;
|
|
3364
3478
|
description?: string | undefined;
|
|
@@ -3391,6 +3505,7 @@ declare const assetContract: {
|
|
|
3391
3505
|
token_name: string;
|
|
3392
3506
|
token_description: string | null;
|
|
3393
3507
|
token_symbol: string;
|
|
3508
|
+
token_decimals: number;
|
|
3394
3509
|
token_uri_data: {
|
|
3395
3510
|
name?: string | undefined;
|
|
3396
3511
|
description?: string | undefined;
|
|
@@ -3432,6 +3547,7 @@ declare const assetContract: {
|
|
|
3432
3547
|
pool_current_sale_progress_percentage: number;
|
|
3433
3548
|
pool_config_max_proceeds: string;
|
|
3434
3549
|
pool_config_min_proceeds: string;
|
|
3550
|
+
pool_config_num_tokens_to_sell: string;
|
|
3435
3551
|
pool_id: string;
|
|
3436
3552
|
pool_address: string;
|
|
3437
3553
|
pool_config_starting_time: string;
|
|
@@ -3443,6 +3559,7 @@ declare const assetContract: {
|
|
|
3443
3559
|
token_name: string;
|
|
3444
3560
|
token_description: string | null;
|
|
3445
3561
|
token_symbol: string;
|
|
3562
|
+
token_decimals: number;
|
|
3446
3563
|
token_uri_data: {
|
|
3447
3564
|
name?: string | undefined;
|
|
3448
3565
|
description?: string | undefined;
|
|
@@ -3476,6 +3593,7 @@ declare const assetContract: {
|
|
|
3476
3593
|
token_name: string;
|
|
3477
3594
|
token_description: string | null;
|
|
3478
3595
|
token_symbol: string;
|
|
3596
|
+
token_decimals: number;
|
|
3479
3597
|
token_uri_data: {
|
|
3480
3598
|
name?: string | undefined;
|
|
3481
3599
|
description?: string | undefined;
|