@longdotxyz/shared 0.0.41 → 0.0.43
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 +250 -124
- package/dist/contracts/asset.contract.js +13 -5
- package/dist/contracts/asset.contract.js.map +1 -1
- package/dist/contracts/index.d.ts +192 -96
- package/package.json +1 -1
- package/readme.md +3 -3
|
@@ -39,15 +39,25 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
39
39
|
image_hash: z.ZodOptional<z.ZodString>;
|
|
40
40
|
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
41
41
|
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
42
|
-
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
42
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
43
43
|
address: z.ZodString;
|
|
44
|
-
amount: z.ZodString
|
|
44
|
+
amount: z.ZodOptional<z.ZodString>;
|
|
45
|
+
percentage: z.ZodOptional<z.ZodNumber>;
|
|
45
46
|
}, "strip", z.ZodTypeAny, {
|
|
46
47
|
address: string;
|
|
47
|
-
amount
|
|
48
|
+
amount?: string | undefined;
|
|
49
|
+
percentage?: number | undefined;
|
|
48
50
|
}, {
|
|
49
51
|
address: string;
|
|
50
|
-
amount
|
|
52
|
+
amount?: string | undefined;
|
|
53
|
+
percentage?: number | undefined;
|
|
54
|
+
}>, {
|
|
55
|
+
address: string;
|
|
56
|
+
amount: string | undefined;
|
|
57
|
+
}, {
|
|
58
|
+
address: string;
|
|
59
|
+
amount?: string | undefined;
|
|
60
|
+
percentage?: number | undefined;
|
|
51
61
|
}>, "many">>;
|
|
52
62
|
}, "strip", z.ZodTypeAny, {
|
|
53
63
|
name?: string | undefined;
|
|
@@ -57,7 +67,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
57
67
|
social_links?: string[] | undefined;
|
|
58
68
|
vesting_recipients?: {
|
|
59
69
|
address: string;
|
|
60
|
-
amount: string;
|
|
70
|
+
amount: string | undefined;
|
|
61
71
|
}[] | undefined;
|
|
62
72
|
}, {
|
|
63
73
|
name?: string | undefined;
|
|
@@ -67,7 +77,8 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
67
77
|
social_links?: string[] | undefined;
|
|
68
78
|
vesting_recipients?: {
|
|
69
79
|
address: string;
|
|
70
|
-
amount
|
|
80
|
+
amount?: string | undefined;
|
|
81
|
+
percentage?: number | undefined;
|
|
71
82
|
}[] | undefined;
|
|
72
83
|
}>>;
|
|
73
84
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -87,7 +98,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
87
98
|
social_links?: string[] | undefined;
|
|
88
99
|
vesting_recipients?: {
|
|
89
100
|
address: string;
|
|
90
|
-
amount: string;
|
|
101
|
+
amount: string | undefined;
|
|
91
102
|
}[] | undefined;
|
|
92
103
|
} | null;
|
|
93
104
|
token_image_public_url: string | null;
|
|
@@ -107,7 +118,8 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
107
118
|
social_links?: string[] | undefined;
|
|
108
119
|
vesting_recipients?: {
|
|
109
120
|
address: string;
|
|
110
|
-
amount
|
|
121
|
+
amount?: string | undefined;
|
|
122
|
+
percentage?: number | undefined;
|
|
111
123
|
}[] | undefined;
|
|
112
124
|
} | null;
|
|
113
125
|
token_image_public_url: string | null;
|
|
@@ -149,7 +161,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
149
161
|
social_links?: string[] | undefined;
|
|
150
162
|
vesting_recipients?: {
|
|
151
163
|
address: string;
|
|
152
|
-
amount: string;
|
|
164
|
+
amount: string | undefined;
|
|
153
165
|
}[] | undefined;
|
|
154
166
|
} | null;
|
|
155
167
|
token_image_public_url: string | null;
|
|
@@ -191,7 +203,8 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
191
203
|
social_links?: string[] | undefined;
|
|
192
204
|
vesting_recipients?: {
|
|
193
205
|
address: string;
|
|
194
|
-
amount
|
|
206
|
+
amount?: string | undefined;
|
|
207
|
+
percentage?: number | undefined;
|
|
195
208
|
}[] | undefined;
|
|
196
209
|
} | null;
|
|
197
210
|
token_image_public_url: string | null;
|
|
@@ -221,15 +234,25 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
221
234
|
image_hash: z.ZodOptional<z.ZodString>;
|
|
222
235
|
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
223
236
|
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
224
|
-
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
237
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
225
238
|
address: z.ZodString;
|
|
226
|
-
amount: z.ZodString
|
|
239
|
+
amount: z.ZodOptional<z.ZodString>;
|
|
240
|
+
percentage: z.ZodOptional<z.ZodNumber>;
|
|
227
241
|
}, "strip", z.ZodTypeAny, {
|
|
228
242
|
address: string;
|
|
229
|
-
amount
|
|
243
|
+
amount?: string | undefined;
|
|
244
|
+
percentage?: number | undefined;
|
|
230
245
|
}, {
|
|
231
246
|
address: string;
|
|
232
|
-
amount
|
|
247
|
+
amount?: string | undefined;
|
|
248
|
+
percentage?: number | undefined;
|
|
249
|
+
}>, {
|
|
250
|
+
address: string;
|
|
251
|
+
amount: string | undefined;
|
|
252
|
+
}, {
|
|
253
|
+
address: string;
|
|
254
|
+
amount?: string | undefined;
|
|
255
|
+
percentage?: number | undefined;
|
|
233
256
|
}>, "many">>;
|
|
234
257
|
}, "strip", z.ZodTypeAny, {
|
|
235
258
|
name?: string | undefined;
|
|
@@ -239,7 +262,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
239
262
|
social_links?: string[] | undefined;
|
|
240
263
|
vesting_recipients?: {
|
|
241
264
|
address: string;
|
|
242
|
-
amount: string;
|
|
265
|
+
amount: string | undefined;
|
|
243
266
|
}[] | undefined;
|
|
244
267
|
}, {
|
|
245
268
|
name?: string | undefined;
|
|
@@ -249,7 +272,8 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
249
272
|
social_links?: string[] | undefined;
|
|
250
273
|
vesting_recipients?: {
|
|
251
274
|
address: string;
|
|
252
|
-
amount
|
|
275
|
+
amount?: string | undefined;
|
|
276
|
+
percentage?: number | undefined;
|
|
253
277
|
}[] | undefined;
|
|
254
278
|
}>>;
|
|
255
279
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -270,7 +294,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
270
294
|
social_links?: string[] | undefined;
|
|
271
295
|
vesting_recipients?: {
|
|
272
296
|
address: string;
|
|
273
|
-
amount: string;
|
|
297
|
+
amount: string | undefined;
|
|
274
298
|
}[] | undefined;
|
|
275
299
|
} | null;
|
|
276
300
|
token_image_public_url: string | null;
|
|
@@ -291,7 +315,8 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
291
315
|
social_links?: string[] | undefined;
|
|
292
316
|
vesting_recipients?: {
|
|
293
317
|
address: string;
|
|
294
|
-
amount
|
|
318
|
+
amount?: string | undefined;
|
|
319
|
+
percentage?: number | undefined;
|
|
295
320
|
}[] | undefined;
|
|
296
321
|
} | null;
|
|
297
322
|
token_image_public_url: string | null;
|
|
@@ -323,7 +348,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
323
348
|
social_links?: string[] | undefined;
|
|
324
349
|
vesting_recipients?: {
|
|
325
350
|
address: string;
|
|
326
|
-
amount: string;
|
|
351
|
+
amount: string | undefined;
|
|
327
352
|
}[] | undefined;
|
|
328
353
|
} | null;
|
|
329
354
|
token_image_public_url: string | null;
|
|
@@ -355,7 +380,8 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
355
380
|
social_links?: string[] | undefined;
|
|
356
381
|
vesting_recipients?: {
|
|
357
382
|
address: string;
|
|
358
|
-
amount
|
|
383
|
+
amount?: string | undefined;
|
|
384
|
+
percentage?: number | undefined;
|
|
359
385
|
}[] | undefined;
|
|
360
386
|
} | null;
|
|
361
387
|
token_image_public_url: string | null;
|
|
@@ -406,7 +432,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
406
432
|
social_links?: string[] | undefined;
|
|
407
433
|
vesting_recipients?: {
|
|
408
434
|
address: string;
|
|
409
|
-
amount: string;
|
|
435
|
+
amount: string | undefined;
|
|
410
436
|
}[] | undefined;
|
|
411
437
|
} | null;
|
|
412
438
|
token_image_public_url: string | null;
|
|
@@ -438,7 +464,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
438
464
|
social_links?: string[] | undefined;
|
|
439
465
|
vesting_recipients?: {
|
|
440
466
|
address: string;
|
|
441
|
-
amount: string;
|
|
467
|
+
amount: string | undefined;
|
|
442
468
|
}[] | undefined;
|
|
443
469
|
} | null;
|
|
444
470
|
token_image_public_url: string | null;
|
|
@@ -488,7 +514,8 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
488
514
|
social_links?: string[] | undefined;
|
|
489
515
|
vesting_recipients?: {
|
|
490
516
|
address: string;
|
|
491
|
-
amount
|
|
517
|
+
amount?: string | undefined;
|
|
518
|
+
percentage?: number | undefined;
|
|
492
519
|
}[] | undefined;
|
|
493
520
|
} | null;
|
|
494
521
|
token_image_public_url: string | null;
|
|
@@ -520,7 +547,8 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
520
547
|
social_links?: string[] | undefined;
|
|
521
548
|
vesting_recipients?: {
|
|
522
549
|
address: string;
|
|
523
|
-
amount
|
|
550
|
+
amount?: string | undefined;
|
|
551
|
+
percentage?: number | undefined;
|
|
524
552
|
}[] | undefined;
|
|
525
553
|
} | null;
|
|
526
554
|
token_image_public_url: string | null;
|
|
@@ -572,7 +600,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
572
600
|
social_links?: string[] | undefined;
|
|
573
601
|
vesting_recipients?: {
|
|
574
602
|
address: string;
|
|
575
|
-
amount: string;
|
|
603
|
+
amount: string | undefined;
|
|
576
604
|
}[] | undefined;
|
|
577
605
|
} | null;
|
|
578
606
|
token_image_public_url: string | null;
|
|
@@ -604,7 +632,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
604
632
|
social_links?: string[] | undefined;
|
|
605
633
|
vesting_recipients?: {
|
|
606
634
|
address: string;
|
|
607
|
-
amount: string;
|
|
635
|
+
amount: string | undefined;
|
|
608
636
|
}[] | undefined;
|
|
609
637
|
} | null;
|
|
610
638
|
token_image_public_url: string | null;
|
|
@@ -654,7 +682,8 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
654
682
|
social_links?: string[] | undefined;
|
|
655
683
|
vesting_recipients?: {
|
|
656
684
|
address: string;
|
|
657
|
-
amount
|
|
685
|
+
amount?: string | undefined;
|
|
686
|
+
percentage?: number | undefined;
|
|
658
687
|
}[] | undefined;
|
|
659
688
|
} | null;
|
|
660
689
|
token_image_public_url: string | null;
|
|
@@ -686,7 +715,8 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
686
715
|
social_links?: string[] | undefined;
|
|
687
716
|
vesting_recipients?: {
|
|
688
717
|
address: string;
|
|
689
|
-
amount
|
|
718
|
+
amount?: string | undefined;
|
|
719
|
+
percentage?: number | undefined;
|
|
690
720
|
}[] | undefined;
|
|
691
721
|
} | null;
|
|
692
722
|
token_image_public_url: string | null;
|
|
@@ -760,15 +790,25 @@ declare const assetContract: {
|
|
|
760
790
|
image_hash: z.ZodOptional<z.ZodString>;
|
|
761
791
|
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
762
792
|
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
763
|
-
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
793
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
764
794
|
address: z.ZodString;
|
|
765
|
-
amount: z.ZodString
|
|
795
|
+
amount: z.ZodOptional<z.ZodString>;
|
|
796
|
+
percentage: z.ZodOptional<z.ZodNumber>;
|
|
766
797
|
}, "strip", z.ZodTypeAny, {
|
|
767
798
|
address: string;
|
|
768
|
-
amount
|
|
799
|
+
amount?: string | undefined;
|
|
800
|
+
percentage?: number | undefined;
|
|
801
|
+
}, {
|
|
802
|
+
address: string;
|
|
803
|
+
amount?: string | undefined;
|
|
804
|
+
percentage?: number | undefined;
|
|
805
|
+
}>, {
|
|
806
|
+
address: string;
|
|
807
|
+
amount: string | undefined;
|
|
769
808
|
}, {
|
|
770
809
|
address: string;
|
|
771
|
-
amount
|
|
810
|
+
amount?: string | undefined;
|
|
811
|
+
percentage?: number | undefined;
|
|
772
812
|
}>, "many">>;
|
|
773
813
|
}, "strip", z.ZodTypeAny, {
|
|
774
814
|
name?: string | undefined;
|
|
@@ -778,7 +818,7 @@ declare const assetContract: {
|
|
|
778
818
|
social_links?: string[] | undefined;
|
|
779
819
|
vesting_recipients?: {
|
|
780
820
|
address: string;
|
|
781
|
-
amount: string;
|
|
821
|
+
amount: string | undefined;
|
|
782
822
|
}[] | undefined;
|
|
783
823
|
}, {
|
|
784
824
|
name?: string | undefined;
|
|
@@ -788,7 +828,8 @@ declare const assetContract: {
|
|
|
788
828
|
social_links?: string[] | undefined;
|
|
789
829
|
vesting_recipients?: {
|
|
790
830
|
address: string;
|
|
791
|
-
amount
|
|
831
|
+
amount?: string | undefined;
|
|
832
|
+
percentage?: number | undefined;
|
|
792
833
|
}[] | undefined;
|
|
793
834
|
}>>;
|
|
794
835
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -808,7 +849,7 @@ declare const assetContract: {
|
|
|
808
849
|
social_links?: string[] | undefined;
|
|
809
850
|
vesting_recipients?: {
|
|
810
851
|
address: string;
|
|
811
|
-
amount: string;
|
|
852
|
+
amount: string | undefined;
|
|
812
853
|
}[] | undefined;
|
|
813
854
|
} | null;
|
|
814
855
|
token_image_public_url: string | null;
|
|
@@ -828,7 +869,8 @@ declare const assetContract: {
|
|
|
828
869
|
social_links?: string[] | undefined;
|
|
829
870
|
vesting_recipients?: {
|
|
830
871
|
address: string;
|
|
831
|
-
amount
|
|
872
|
+
amount?: string | undefined;
|
|
873
|
+
percentage?: number | undefined;
|
|
832
874
|
}[] | undefined;
|
|
833
875
|
} | null;
|
|
834
876
|
token_image_public_url: string | null;
|
|
@@ -870,7 +912,7 @@ declare const assetContract: {
|
|
|
870
912
|
social_links?: string[] | undefined;
|
|
871
913
|
vesting_recipients?: {
|
|
872
914
|
address: string;
|
|
873
|
-
amount: string;
|
|
915
|
+
amount: string | undefined;
|
|
874
916
|
}[] | undefined;
|
|
875
917
|
} | null;
|
|
876
918
|
token_image_public_url: string | null;
|
|
@@ -912,7 +954,8 @@ declare const assetContract: {
|
|
|
912
954
|
social_links?: string[] | undefined;
|
|
913
955
|
vesting_recipients?: {
|
|
914
956
|
address: string;
|
|
915
|
-
amount
|
|
957
|
+
amount?: string | undefined;
|
|
958
|
+
percentage?: number | undefined;
|
|
916
959
|
}[] | undefined;
|
|
917
960
|
} | null;
|
|
918
961
|
token_image_public_url: string | null;
|
|
@@ -942,15 +985,25 @@ declare const assetContract: {
|
|
|
942
985
|
image_hash: z.ZodOptional<z.ZodString>;
|
|
943
986
|
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
944
987
|
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
945
|
-
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
988
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
946
989
|
address: z.ZodString;
|
|
947
|
-
amount: z.ZodString
|
|
990
|
+
amount: z.ZodOptional<z.ZodString>;
|
|
991
|
+
percentage: z.ZodOptional<z.ZodNumber>;
|
|
948
992
|
}, "strip", z.ZodTypeAny, {
|
|
949
993
|
address: string;
|
|
950
|
-
amount
|
|
994
|
+
amount?: string | undefined;
|
|
995
|
+
percentage?: number | undefined;
|
|
996
|
+
}, {
|
|
997
|
+
address: string;
|
|
998
|
+
amount?: string | undefined;
|
|
999
|
+
percentage?: number | undefined;
|
|
1000
|
+
}>, {
|
|
1001
|
+
address: string;
|
|
1002
|
+
amount: string | undefined;
|
|
951
1003
|
}, {
|
|
952
1004
|
address: string;
|
|
953
|
-
amount
|
|
1005
|
+
amount?: string | undefined;
|
|
1006
|
+
percentage?: number | undefined;
|
|
954
1007
|
}>, "many">>;
|
|
955
1008
|
}, "strip", z.ZodTypeAny, {
|
|
956
1009
|
name?: string | undefined;
|
|
@@ -960,7 +1013,7 @@ declare const assetContract: {
|
|
|
960
1013
|
social_links?: string[] | undefined;
|
|
961
1014
|
vesting_recipients?: {
|
|
962
1015
|
address: string;
|
|
963
|
-
amount: string;
|
|
1016
|
+
amount: string | undefined;
|
|
964
1017
|
}[] | undefined;
|
|
965
1018
|
}, {
|
|
966
1019
|
name?: string | undefined;
|
|
@@ -970,7 +1023,8 @@ declare const assetContract: {
|
|
|
970
1023
|
social_links?: string[] | undefined;
|
|
971
1024
|
vesting_recipients?: {
|
|
972
1025
|
address: string;
|
|
973
|
-
amount
|
|
1026
|
+
amount?: string | undefined;
|
|
1027
|
+
percentage?: number | undefined;
|
|
974
1028
|
}[] | undefined;
|
|
975
1029
|
}>>;
|
|
976
1030
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -991,7 +1045,7 @@ declare const assetContract: {
|
|
|
991
1045
|
social_links?: string[] | undefined;
|
|
992
1046
|
vesting_recipients?: {
|
|
993
1047
|
address: string;
|
|
994
|
-
amount: string;
|
|
1048
|
+
amount: string | undefined;
|
|
995
1049
|
}[] | undefined;
|
|
996
1050
|
} | null;
|
|
997
1051
|
token_image_public_url: string | null;
|
|
@@ -1012,7 +1066,8 @@ declare const assetContract: {
|
|
|
1012
1066
|
social_links?: string[] | undefined;
|
|
1013
1067
|
vesting_recipients?: {
|
|
1014
1068
|
address: string;
|
|
1015
|
-
amount
|
|
1069
|
+
amount?: string | undefined;
|
|
1070
|
+
percentage?: number | undefined;
|
|
1016
1071
|
}[] | undefined;
|
|
1017
1072
|
} | null;
|
|
1018
1073
|
token_image_public_url: string | null;
|
|
@@ -1044,7 +1099,7 @@ declare const assetContract: {
|
|
|
1044
1099
|
social_links?: string[] | undefined;
|
|
1045
1100
|
vesting_recipients?: {
|
|
1046
1101
|
address: string;
|
|
1047
|
-
amount: string;
|
|
1102
|
+
amount: string | undefined;
|
|
1048
1103
|
}[] | undefined;
|
|
1049
1104
|
} | null;
|
|
1050
1105
|
token_image_public_url: string | null;
|
|
@@ -1076,7 +1131,8 @@ declare const assetContract: {
|
|
|
1076
1131
|
social_links?: string[] | undefined;
|
|
1077
1132
|
vesting_recipients?: {
|
|
1078
1133
|
address: string;
|
|
1079
|
-
amount
|
|
1134
|
+
amount?: string | undefined;
|
|
1135
|
+
percentage?: number | undefined;
|
|
1080
1136
|
}[] | undefined;
|
|
1081
1137
|
} | null;
|
|
1082
1138
|
token_image_public_url: string | null;
|
|
@@ -1127,7 +1183,7 @@ declare const assetContract: {
|
|
|
1127
1183
|
social_links?: string[] | undefined;
|
|
1128
1184
|
vesting_recipients?: {
|
|
1129
1185
|
address: string;
|
|
1130
|
-
amount: string;
|
|
1186
|
+
amount: string | undefined;
|
|
1131
1187
|
}[] | undefined;
|
|
1132
1188
|
} | null;
|
|
1133
1189
|
token_image_public_url: string | null;
|
|
@@ -1159,7 +1215,7 @@ declare const assetContract: {
|
|
|
1159
1215
|
social_links?: string[] | undefined;
|
|
1160
1216
|
vesting_recipients?: {
|
|
1161
1217
|
address: string;
|
|
1162
|
-
amount: string;
|
|
1218
|
+
amount: string | undefined;
|
|
1163
1219
|
}[] | undefined;
|
|
1164
1220
|
} | null;
|
|
1165
1221
|
token_image_public_url: string | null;
|
|
@@ -1209,7 +1265,8 @@ declare const assetContract: {
|
|
|
1209
1265
|
social_links?: string[] | undefined;
|
|
1210
1266
|
vesting_recipients?: {
|
|
1211
1267
|
address: string;
|
|
1212
|
-
amount
|
|
1268
|
+
amount?: string | undefined;
|
|
1269
|
+
percentage?: number | undefined;
|
|
1213
1270
|
}[] | undefined;
|
|
1214
1271
|
} | null;
|
|
1215
1272
|
token_image_public_url: string | null;
|
|
@@ -1241,7 +1298,8 @@ declare const assetContract: {
|
|
|
1241
1298
|
social_links?: string[] | undefined;
|
|
1242
1299
|
vesting_recipients?: {
|
|
1243
1300
|
address: string;
|
|
1244
|
-
amount
|
|
1301
|
+
amount?: string | undefined;
|
|
1302
|
+
percentage?: number | undefined;
|
|
1245
1303
|
}[] | undefined;
|
|
1246
1304
|
} | null;
|
|
1247
1305
|
token_image_public_url: string | null;
|
|
@@ -1293,7 +1351,7 @@ declare const assetContract: {
|
|
|
1293
1351
|
social_links?: string[] | undefined;
|
|
1294
1352
|
vesting_recipients?: {
|
|
1295
1353
|
address: string;
|
|
1296
|
-
amount: string;
|
|
1354
|
+
amount: string | undefined;
|
|
1297
1355
|
}[] | undefined;
|
|
1298
1356
|
} | null;
|
|
1299
1357
|
token_image_public_url: string | null;
|
|
@@ -1325,7 +1383,7 @@ declare const assetContract: {
|
|
|
1325
1383
|
social_links?: string[] | undefined;
|
|
1326
1384
|
vesting_recipients?: {
|
|
1327
1385
|
address: string;
|
|
1328
|
-
amount: string;
|
|
1386
|
+
amount: string | undefined;
|
|
1329
1387
|
}[] | undefined;
|
|
1330
1388
|
} | null;
|
|
1331
1389
|
token_image_public_url: string | null;
|
|
@@ -1375,7 +1433,8 @@ declare const assetContract: {
|
|
|
1375
1433
|
social_links?: string[] | undefined;
|
|
1376
1434
|
vesting_recipients?: {
|
|
1377
1435
|
address: string;
|
|
1378
|
-
amount
|
|
1436
|
+
amount?: string | undefined;
|
|
1437
|
+
percentage?: number | undefined;
|
|
1379
1438
|
}[] | undefined;
|
|
1380
1439
|
} | null;
|
|
1381
1440
|
token_image_public_url: string | null;
|
|
@@ -1407,7 +1466,8 @@ declare const assetContract: {
|
|
|
1407
1466
|
social_links?: string[] | undefined;
|
|
1408
1467
|
vesting_recipients?: {
|
|
1409
1468
|
address: string;
|
|
1410
|
-
amount
|
|
1469
|
+
amount?: string | undefined;
|
|
1470
|
+
percentage?: number | undefined;
|
|
1411
1471
|
}[] | undefined;
|
|
1412
1472
|
} | null;
|
|
1413
1473
|
token_image_public_url: string | null;
|
|
@@ -1461,7 +1521,7 @@ declare const assetContract: {
|
|
|
1461
1521
|
social_links?: string[] | undefined;
|
|
1462
1522
|
vesting_recipients?: {
|
|
1463
1523
|
address: string;
|
|
1464
|
-
amount: string;
|
|
1524
|
+
amount: string | undefined;
|
|
1465
1525
|
}[] | undefined;
|
|
1466
1526
|
} | null;
|
|
1467
1527
|
token_image_public_url: string | null;
|
|
@@ -1493,7 +1553,7 @@ declare const assetContract: {
|
|
|
1493
1553
|
social_links?: string[] | undefined;
|
|
1494
1554
|
vesting_recipients?: {
|
|
1495
1555
|
address: string;
|
|
1496
|
-
amount: string;
|
|
1556
|
+
amount: string | undefined;
|
|
1497
1557
|
}[] | undefined;
|
|
1498
1558
|
} | null;
|
|
1499
1559
|
token_image_public_url: string | null;
|
|
@@ -1545,7 +1605,8 @@ declare const assetContract: {
|
|
|
1545
1605
|
social_links?: string[] | undefined;
|
|
1546
1606
|
vesting_recipients?: {
|
|
1547
1607
|
address: string;
|
|
1548
|
-
amount
|
|
1608
|
+
amount?: string | undefined;
|
|
1609
|
+
percentage?: number | undefined;
|
|
1549
1610
|
}[] | undefined;
|
|
1550
1611
|
} | null;
|
|
1551
1612
|
token_image_public_url: string | null;
|
|
@@ -1577,7 +1638,8 @@ declare const assetContract: {
|
|
|
1577
1638
|
social_links?: string[] | undefined;
|
|
1578
1639
|
vesting_recipients?: {
|
|
1579
1640
|
address: string;
|
|
1580
|
-
amount
|
|
1641
|
+
amount?: string | undefined;
|
|
1642
|
+
percentage?: number | undefined;
|
|
1581
1643
|
}[] | undefined;
|
|
1582
1644
|
} | null;
|
|
1583
1645
|
token_image_public_url: string | null;
|
|
@@ -1650,15 +1712,25 @@ declare const assetContract: {
|
|
|
1650
1712
|
image_hash: z.ZodOptional<z.ZodString>;
|
|
1651
1713
|
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
1652
1714
|
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1653
|
-
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1715
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
1654
1716
|
address: z.ZodString;
|
|
1655
|
-
amount: z.ZodString
|
|
1717
|
+
amount: z.ZodOptional<z.ZodString>;
|
|
1718
|
+
percentage: z.ZodOptional<z.ZodNumber>;
|
|
1656
1719
|
}, "strip", z.ZodTypeAny, {
|
|
1657
1720
|
address: string;
|
|
1658
|
-
amount
|
|
1721
|
+
amount?: string | undefined;
|
|
1722
|
+
percentage?: number | undefined;
|
|
1723
|
+
}, {
|
|
1724
|
+
address: string;
|
|
1725
|
+
amount?: string | undefined;
|
|
1726
|
+
percentage?: number | undefined;
|
|
1727
|
+
}>, {
|
|
1728
|
+
address: string;
|
|
1729
|
+
amount: string | undefined;
|
|
1659
1730
|
}, {
|
|
1660
1731
|
address: string;
|
|
1661
|
-
amount
|
|
1732
|
+
amount?: string | undefined;
|
|
1733
|
+
percentage?: number | undefined;
|
|
1662
1734
|
}>, "many">>;
|
|
1663
1735
|
}, "strip", z.ZodTypeAny, {
|
|
1664
1736
|
name?: string | undefined;
|
|
@@ -1668,7 +1740,7 @@ declare const assetContract: {
|
|
|
1668
1740
|
social_links?: string[] | undefined;
|
|
1669
1741
|
vesting_recipients?: {
|
|
1670
1742
|
address: string;
|
|
1671
|
-
amount: string;
|
|
1743
|
+
amount: string | undefined;
|
|
1672
1744
|
}[] | undefined;
|
|
1673
1745
|
}, {
|
|
1674
1746
|
name?: string | undefined;
|
|
@@ -1678,7 +1750,8 @@ declare const assetContract: {
|
|
|
1678
1750
|
social_links?: string[] | undefined;
|
|
1679
1751
|
vesting_recipients?: {
|
|
1680
1752
|
address: string;
|
|
1681
|
-
amount
|
|
1753
|
+
amount?: string | undefined;
|
|
1754
|
+
percentage?: number | undefined;
|
|
1682
1755
|
}[] | undefined;
|
|
1683
1756
|
}>>;
|
|
1684
1757
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -1698,7 +1771,7 @@ declare const assetContract: {
|
|
|
1698
1771
|
social_links?: string[] | undefined;
|
|
1699
1772
|
vesting_recipients?: {
|
|
1700
1773
|
address: string;
|
|
1701
|
-
amount: string;
|
|
1774
|
+
amount: string | undefined;
|
|
1702
1775
|
}[] | undefined;
|
|
1703
1776
|
} | null;
|
|
1704
1777
|
token_image_public_url: string | null;
|
|
@@ -1718,7 +1791,8 @@ declare const assetContract: {
|
|
|
1718
1791
|
social_links?: string[] | undefined;
|
|
1719
1792
|
vesting_recipients?: {
|
|
1720
1793
|
address: string;
|
|
1721
|
-
amount
|
|
1794
|
+
amount?: string | undefined;
|
|
1795
|
+
percentage?: number | undefined;
|
|
1722
1796
|
}[] | undefined;
|
|
1723
1797
|
} | null;
|
|
1724
1798
|
token_image_public_url: string | null;
|
|
@@ -1760,7 +1834,7 @@ declare const assetContract: {
|
|
|
1760
1834
|
social_links?: string[] | undefined;
|
|
1761
1835
|
vesting_recipients?: {
|
|
1762
1836
|
address: string;
|
|
1763
|
-
amount: string;
|
|
1837
|
+
amount: string | undefined;
|
|
1764
1838
|
}[] | undefined;
|
|
1765
1839
|
} | null;
|
|
1766
1840
|
token_image_public_url: string | null;
|
|
@@ -1802,7 +1876,8 @@ declare const assetContract: {
|
|
|
1802
1876
|
social_links?: string[] | undefined;
|
|
1803
1877
|
vesting_recipients?: {
|
|
1804
1878
|
address: string;
|
|
1805
|
-
amount
|
|
1879
|
+
amount?: string | undefined;
|
|
1880
|
+
percentage?: number | undefined;
|
|
1806
1881
|
}[] | undefined;
|
|
1807
1882
|
} | null;
|
|
1808
1883
|
token_image_public_url: string | null;
|
|
@@ -1832,15 +1907,25 @@ declare const assetContract: {
|
|
|
1832
1907
|
image_hash: z.ZodOptional<z.ZodString>;
|
|
1833
1908
|
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
1834
1909
|
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1835
|
-
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1910
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
1836
1911
|
address: z.ZodString;
|
|
1837
|
-
amount: z.ZodString
|
|
1912
|
+
amount: z.ZodOptional<z.ZodString>;
|
|
1913
|
+
percentage: z.ZodOptional<z.ZodNumber>;
|
|
1838
1914
|
}, "strip", z.ZodTypeAny, {
|
|
1839
1915
|
address: string;
|
|
1840
|
-
amount
|
|
1916
|
+
amount?: string | undefined;
|
|
1917
|
+
percentage?: number | undefined;
|
|
1918
|
+
}, {
|
|
1919
|
+
address: string;
|
|
1920
|
+
amount?: string | undefined;
|
|
1921
|
+
percentage?: number | undefined;
|
|
1922
|
+
}>, {
|
|
1923
|
+
address: string;
|
|
1924
|
+
amount: string | undefined;
|
|
1841
1925
|
}, {
|
|
1842
1926
|
address: string;
|
|
1843
|
-
amount
|
|
1927
|
+
amount?: string | undefined;
|
|
1928
|
+
percentage?: number | undefined;
|
|
1844
1929
|
}>, "many">>;
|
|
1845
1930
|
}, "strip", z.ZodTypeAny, {
|
|
1846
1931
|
name?: string | undefined;
|
|
@@ -1850,7 +1935,7 @@ declare const assetContract: {
|
|
|
1850
1935
|
social_links?: string[] | undefined;
|
|
1851
1936
|
vesting_recipients?: {
|
|
1852
1937
|
address: string;
|
|
1853
|
-
amount: string;
|
|
1938
|
+
amount: string | undefined;
|
|
1854
1939
|
}[] | undefined;
|
|
1855
1940
|
}, {
|
|
1856
1941
|
name?: string | undefined;
|
|
@@ -1860,7 +1945,8 @@ declare const assetContract: {
|
|
|
1860
1945
|
social_links?: string[] | undefined;
|
|
1861
1946
|
vesting_recipients?: {
|
|
1862
1947
|
address: string;
|
|
1863
|
-
amount
|
|
1948
|
+
amount?: string | undefined;
|
|
1949
|
+
percentage?: number | undefined;
|
|
1864
1950
|
}[] | undefined;
|
|
1865
1951
|
}>>;
|
|
1866
1952
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -1881,7 +1967,7 @@ declare const assetContract: {
|
|
|
1881
1967
|
social_links?: string[] | undefined;
|
|
1882
1968
|
vesting_recipients?: {
|
|
1883
1969
|
address: string;
|
|
1884
|
-
amount: string;
|
|
1970
|
+
amount: string | undefined;
|
|
1885
1971
|
}[] | undefined;
|
|
1886
1972
|
} | null;
|
|
1887
1973
|
token_image_public_url: string | null;
|
|
@@ -1902,7 +1988,8 @@ declare const assetContract: {
|
|
|
1902
1988
|
social_links?: string[] | undefined;
|
|
1903
1989
|
vesting_recipients?: {
|
|
1904
1990
|
address: string;
|
|
1905
|
-
amount
|
|
1991
|
+
amount?: string | undefined;
|
|
1992
|
+
percentage?: number | undefined;
|
|
1906
1993
|
}[] | undefined;
|
|
1907
1994
|
} | null;
|
|
1908
1995
|
token_image_public_url: string | null;
|
|
@@ -1934,7 +2021,7 @@ declare const assetContract: {
|
|
|
1934
2021
|
social_links?: string[] | undefined;
|
|
1935
2022
|
vesting_recipients?: {
|
|
1936
2023
|
address: string;
|
|
1937
|
-
amount: string;
|
|
2024
|
+
amount: string | undefined;
|
|
1938
2025
|
}[] | undefined;
|
|
1939
2026
|
} | null;
|
|
1940
2027
|
token_image_public_url: string | null;
|
|
@@ -1966,7 +2053,8 @@ declare const assetContract: {
|
|
|
1966
2053
|
social_links?: string[] | undefined;
|
|
1967
2054
|
vesting_recipients?: {
|
|
1968
2055
|
address: string;
|
|
1969
|
-
amount
|
|
2056
|
+
amount?: string | undefined;
|
|
2057
|
+
percentage?: number | undefined;
|
|
1970
2058
|
}[] | undefined;
|
|
1971
2059
|
} | null;
|
|
1972
2060
|
token_image_public_url: string | null;
|
|
@@ -2017,7 +2105,7 @@ declare const assetContract: {
|
|
|
2017
2105
|
social_links?: string[] | undefined;
|
|
2018
2106
|
vesting_recipients?: {
|
|
2019
2107
|
address: string;
|
|
2020
|
-
amount: string;
|
|
2108
|
+
amount: string | undefined;
|
|
2021
2109
|
}[] | undefined;
|
|
2022
2110
|
} | null;
|
|
2023
2111
|
token_image_public_url: string | null;
|
|
@@ -2049,7 +2137,7 @@ declare const assetContract: {
|
|
|
2049
2137
|
social_links?: string[] | undefined;
|
|
2050
2138
|
vesting_recipients?: {
|
|
2051
2139
|
address: string;
|
|
2052
|
-
amount: string;
|
|
2140
|
+
amount: string | undefined;
|
|
2053
2141
|
}[] | undefined;
|
|
2054
2142
|
} | null;
|
|
2055
2143
|
token_image_public_url: string | null;
|
|
@@ -2099,7 +2187,8 @@ declare const assetContract: {
|
|
|
2099
2187
|
social_links?: string[] | undefined;
|
|
2100
2188
|
vesting_recipients?: {
|
|
2101
2189
|
address: string;
|
|
2102
|
-
amount
|
|
2190
|
+
amount?: string | undefined;
|
|
2191
|
+
percentage?: number | undefined;
|
|
2103
2192
|
}[] | undefined;
|
|
2104
2193
|
} | null;
|
|
2105
2194
|
token_image_public_url: string | null;
|
|
@@ -2131,7 +2220,8 @@ declare const assetContract: {
|
|
|
2131
2220
|
social_links?: string[] | undefined;
|
|
2132
2221
|
vesting_recipients?: {
|
|
2133
2222
|
address: string;
|
|
2134
|
-
amount
|
|
2223
|
+
amount?: string | undefined;
|
|
2224
|
+
percentage?: number | undefined;
|
|
2135
2225
|
}[] | undefined;
|
|
2136
2226
|
} | null;
|
|
2137
2227
|
token_image_public_url: string | null;
|
|
@@ -2183,7 +2273,7 @@ declare const assetContract: {
|
|
|
2183
2273
|
social_links?: string[] | undefined;
|
|
2184
2274
|
vesting_recipients?: {
|
|
2185
2275
|
address: string;
|
|
2186
|
-
amount: string;
|
|
2276
|
+
amount: string | undefined;
|
|
2187
2277
|
}[] | undefined;
|
|
2188
2278
|
} | null;
|
|
2189
2279
|
token_image_public_url: string | null;
|
|
@@ -2215,7 +2305,7 @@ declare const assetContract: {
|
|
|
2215
2305
|
social_links?: string[] | undefined;
|
|
2216
2306
|
vesting_recipients?: {
|
|
2217
2307
|
address: string;
|
|
2218
|
-
amount: string;
|
|
2308
|
+
amount: string | undefined;
|
|
2219
2309
|
}[] | undefined;
|
|
2220
2310
|
} | null;
|
|
2221
2311
|
token_image_public_url: string | null;
|
|
@@ -2265,7 +2355,8 @@ declare const assetContract: {
|
|
|
2265
2355
|
social_links?: string[] | undefined;
|
|
2266
2356
|
vesting_recipients?: {
|
|
2267
2357
|
address: string;
|
|
2268
|
-
amount
|
|
2358
|
+
amount?: string | undefined;
|
|
2359
|
+
percentage?: number | undefined;
|
|
2269
2360
|
}[] | undefined;
|
|
2270
2361
|
} | null;
|
|
2271
2362
|
token_image_public_url: string | null;
|
|
@@ -2297,7 +2388,8 @@ declare const assetContract: {
|
|
|
2297
2388
|
social_links?: string[] | undefined;
|
|
2298
2389
|
vesting_recipients?: {
|
|
2299
2390
|
address: string;
|
|
2300
|
-
amount
|
|
2391
|
+
amount?: string | undefined;
|
|
2392
|
+
percentage?: number | undefined;
|
|
2301
2393
|
}[] | undefined;
|
|
2302
2394
|
} | null;
|
|
2303
2395
|
token_image_public_url: string | null;
|
|
@@ -2351,7 +2443,7 @@ declare const assetContract: {
|
|
|
2351
2443
|
social_links?: string[] | undefined;
|
|
2352
2444
|
vesting_recipients?: {
|
|
2353
2445
|
address: string;
|
|
2354
|
-
amount: string;
|
|
2446
|
+
amount: string | undefined;
|
|
2355
2447
|
}[] | undefined;
|
|
2356
2448
|
} | null;
|
|
2357
2449
|
token_image_public_url: string | null;
|
|
@@ -2383,7 +2475,7 @@ declare const assetContract: {
|
|
|
2383
2475
|
social_links?: string[] | undefined;
|
|
2384
2476
|
vesting_recipients?: {
|
|
2385
2477
|
address: string;
|
|
2386
|
-
amount: string;
|
|
2478
|
+
amount: string | undefined;
|
|
2387
2479
|
}[] | undefined;
|
|
2388
2480
|
} | null;
|
|
2389
2481
|
token_image_public_url: string | null;
|
|
@@ -2435,7 +2527,8 @@ declare const assetContract: {
|
|
|
2435
2527
|
social_links?: string[] | undefined;
|
|
2436
2528
|
vesting_recipients?: {
|
|
2437
2529
|
address: string;
|
|
2438
|
-
amount
|
|
2530
|
+
amount?: string | undefined;
|
|
2531
|
+
percentage?: number | undefined;
|
|
2439
2532
|
}[] | undefined;
|
|
2440
2533
|
} | null;
|
|
2441
2534
|
token_image_public_url: string | null;
|
|
@@ -2467,7 +2560,8 @@ declare const assetContract: {
|
|
|
2467
2560
|
social_links?: string[] | undefined;
|
|
2468
2561
|
vesting_recipients?: {
|
|
2469
2562
|
address: string;
|
|
2470
|
-
amount
|
|
2563
|
+
amount?: string | undefined;
|
|
2564
|
+
percentage?: number | undefined;
|
|
2471
2565
|
}[] | undefined;
|
|
2472
2566
|
} | null;
|
|
2473
2567
|
token_image_public_url: string | null;
|
|
@@ -2541,15 +2635,25 @@ declare const assetContract: {
|
|
|
2541
2635
|
image_hash: z.ZodOptional<z.ZodString>;
|
|
2542
2636
|
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
2543
2637
|
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2544
|
-
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2638
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
2545
2639
|
address: z.ZodString;
|
|
2546
|
-
amount: z.ZodString
|
|
2640
|
+
amount: z.ZodOptional<z.ZodString>;
|
|
2641
|
+
percentage: z.ZodOptional<z.ZodNumber>;
|
|
2547
2642
|
}, "strip", z.ZodTypeAny, {
|
|
2548
2643
|
address: string;
|
|
2549
|
-
amount
|
|
2644
|
+
amount?: string | undefined;
|
|
2645
|
+
percentage?: number | undefined;
|
|
2550
2646
|
}, {
|
|
2551
2647
|
address: string;
|
|
2552
|
-
amount
|
|
2648
|
+
amount?: string | undefined;
|
|
2649
|
+
percentage?: number | undefined;
|
|
2650
|
+
}>, {
|
|
2651
|
+
address: string;
|
|
2652
|
+
amount: string | undefined;
|
|
2653
|
+
}, {
|
|
2654
|
+
address: string;
|
|
2655
|
+
amount?: string | undefined;
|
|
2656
|
+
percentage?: number | undefined;
|
|
2553
2657
|
}>, "many">>;
|
|
2554
2658
|
}, "strip", z.ZodTypeAny, {
|
|
2555
2659
|
name?: string | undefined;
|
|
@@ -2559,7 +2663,7 @@ declare const assetContract: {
|
|
|
2559
2663
|
social_links?: string[] | undefined;
|
|
2560
2664
|
vesting_recipients?: {
|
|
2561
2665
|
address: string;
|
|
2562
|
-
amount: string;
|
|
2666
|
+
amount: string | undefined;
|
|
2563
2667
|
}[] | undefined;
|
|
2564
2668
|
}, {
|
|
2565
2669
|
name?: string | undefined;
|
|
@@ -2569,7 +2673,8 @@ declare const assetContract: {
|
|
|
2569
2673
|
social_links?: string[] | undefined;
|
|
2570
2674
|
vesting_recipients?: {
|
|
2571
2675
|
address: string;
|
|
2572
|
-
amount
|
|
2676
|
+
amount?: string | undefined;
|
|
2677
|
+
percentage?: number | undefined;
|
|
2573
2678
|
}[] | undefined;
|
|
2574
2679
|
}>>;
|
|
2575
2680
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -2589,7 +2694,7 @@ declare const assetContract: {
|
|
|
2589
2694
|
social_links?: string[] | undefined;
|
|
2590
2695
|
vesting_recipients?: {
|
|
2591
2696
|
address: string;
|
|
2592
|
-
amount: string;
|
|
2697
|
+
amount: string | undefined;
|
|
2593
2698
|
}[] | undefined;
|
|
2594
2699
|
} | null;
|
|
2595
2700
|
token_image_public_url: string | null;
|
|
@@ -2609,7 +2714,8 @@ declare const assetContract: {
|
|
|
2609
2714
|
social_links?: string[] | undefined;
|
|
2610
2715
|
vesting_recipients?: {
|
|
2611
2716
|
address: string;
|
|
2612
|
-
amount
|
|
2717
|
+
amount?: string | undefined;
|
|
2718
|
+
percentage?: number | undefined;
|
|
2613
2719
|
}[] | undefined;
|
|
2614
2720
|
} | null;
|
|
2615
2721
|
token_image_public_url: string | null;
|
|
@@ -2651,7 +2757,7 @@ declare const assetContract: {
|
|
|
2651
2757
|
social_links?: string[] | undefined;
|
|
2652
2758
|
vesting_recipients?: {
|
|
2653
2759
|
address: string;
|
|
2654
|
-
amount: string;
|
|
2760
|
+
amount: string | undefined;
|
|
2655
2761
|
}[] | undefined;
|
|
2656
2762
|
} | null;
|
|
2657
2763
|
token_image_public_url: string | null;
|
|
@@ -2693,7 +2799,8 @@ declare const assetContract: {
|
|
|
2693
2799
|
social_links?: string[] | undefined;
|
|
2694
2800
|
vesting_recipients?: {
|
|
2695
2801
|
address: string;
|
|
2696
|
-
amount
|
|
2802
|
+
amount?: string | undefined;
|
|
2803
|
+
percentage?: number | undefined;
|
|
2697
2804
|
}[] | undefined;
|
|
2698
2805
|
} | null;
|
|
2699
2806
|
token_image_public_url: string | null;
|
|
@@ -2723,15 +2830,25 @@ declare const assetContract: {
|
|
|
2723
2830
|
image_hash: z.ZodOptional<z.ZodString>;
|
|
2724
2831
|
fee_receiver: z.ZodOptional<z.ZodString>;
|
|
2725
2832
|
social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2726
|
-
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2833
|
+
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
2727
2834
|
address: z.ZodString;
|
|
2728
|
-
amount: z.ZodString
|
|
2835
|
+
amount: z.ZodOptional<z.ZodString>;
|
|
2836
|
+
percentage: z.ZodOptional<z.ZodNumber>;
|
|
2729
2837
|
}, "strip", z.ZodTypeAny, {
|
|
2730
2838
|
address: string;
|
|
2731
|
-
amount
|
|
2839
|
+
amount?: string | undefined;
|
|
2840
|
+
percentage?: number | undefined;
|
|
2841
|
+
}, {
|
|
2842
|
+
address: string;
|
|
2843
|
+
amount?: string | undefined;
|
|
2844
|
+
percentage?: number | undefined;
|
|
2845
|
+
}>, {
|
|
2846
|
+
address: string;
|
|
2847
|
+
amount: string | undefined;
|
|
2732
2848
|
}, {
|
|
2733
2849
|
address: string;
|
|
2734
|
-
amount
|
|
2850
|
+
amount?: string | undefined;
|
|
2851
|
+
percentage?: number | undefined;
|
|
2735
2852
|
}>, "many">>;
|
|
2736
2853
|
}, "strip", z.ZodTypeAny, {
|
|
2737
2854
|
name?: string | undefined;
|
|
@@ -2741,7 +2858,7 @@ declare const assetContract: {
|
|
|
2741
2858
|
social_links?: string[] | undefined;
|
|
2742
2859
|
vesting_recipients?: {
|
|
2743
2860
|
address: string;
|
|
2744
|
-
amount: string;
|
|
2861
|
+
amount: string | undefined;
|
|
2745
2862
|
}[] | undefined;
|
|
2746
2863
|
}, {
|
|
2747
2864
|
name?: string | undefined;
|
|
@@ -2751,7 +2868,8 @@ declare const assetContract: {
|
|
|
2751
2868
|
social_links?: string[] | undefined;
|
|
2752
2869
|
vesting_recipients?: {
|
|
2753
2870
|
address: string;
|
|
2754
|
-
amount
|
|
2871
|
+
amount?: string | undefined;
|
|
2872
|
+
percentage?: number | undefined;
|
|
2755
2873
|
}[] | undefined;
|
|
2756
2874
|
}>>;
|
|
2757
2875
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -2772,7 +2890,7 @@ declare const assetContract: {
|
|
|
2772
2890
|
social_links?: string[] | undefined;
|
|
2773
2891
|
vesting_recipients?: {
|
|
2774
2892
|
address: string;
|
|
2775
|
-
amount: string;
|
|
2893
|
+
amount: string | undefined;
|
|
2776
2894
|
}[] | undefined;
|
|
2777
2895
|
} | null;
|
|
2778
2896
|
token_image_public_url: string | null;
|
|
@@ -2793,7 +2911,8 @@ declare const assetContract: {
|
|
|
2793
2911
|
social_links?: string[] | undefined;
|
|
2794
2912
|
vesting_recipients?: {
|
|
2795
2913
|
address: string;
|
|
2796
|
-
amount
|
|
2914
|
+
amount?: string | undefined;
|
|
2915
|
+
percentage?: number | undefined;
|
|
2797
2916
|
}[] | undefined;
|
|
2798
2917
|
} | null;
|
|
2799
2918
|
token_image_public_url: string | null;
|
|
@@ -2825,7 +2944,7 @@ declare const assetContract: {
|
|
|
2825
2944
|
social_links?: string[] | undefined;
|
|
2826
2945
|
vesting_recipients?: {
|
|
2827
2946
|
address: string;
|
|
2828
|
-
amount: string;
|
|
2947
|
+
amount: string | undefined;
|
|
2829
2948
|
}[] | undefined;
|
|
2830
2949
|
} | null;
|
|
2831
2950
|
token_image_public_url: string | null;
|
|
@@ -2857,7 +2976,8 @@ declare const assetContract: {
|
|
|
2857
2976
|
social_links?: string[] | undefined;
|
|
2858
2977
|
vesting_recipients?: {
|
|
2859
2978
|
address: string;
|
|
2860
|
-
amount
|
|
2979
|
+
amount?: string | undefined;
|
|
2980
|
+
percentage?: number | undefined;
|
|
2861
2981
|
}[] | undefined;
|
|
2862
2982
|
} | null;
|
|
2863
2983
|
token_image_public_url: string | null;
|
|
@@ -2908,7 +3028,7 @@ declare const assetContract: {
|
|
|
2908
3028
|
social_links?: string[] | undefined;
|
|
2909
3029
|
vesting_recipients?: {
|
|
2910
3030
|
address: string;
|
|
2911
|
-
amount: string;
|
|
3031
|
+
amount: string | undefined;
|
|
2912
3032
|
}[] | undefined;
|
|
2913
3033
|
} | null;
|
|
2914
3034
|
token_image_public_url: string | null;
|
|
@@ -2940,7 +3060,7 @@ declare const assetContract: {
|
|
|
2940
3060
|
social_links?: string[] | undefined;
|
|
2941
3061
|
vesting_recipients?: {
|
|
2942
3062
|
address: string;
|
|
2943
|
-
amount: string;
|
|
3063
|
+
amount: string | undefined;
|
|
2944
3064
|
}[] | undefined;
|
|
2945
3065
|
} | null;
|
|
2946
3066
|
token_image_public_url: string | null;
|
|
@@ -2990,7 +3110,8 @@ declare const assetContract: {
|
|
|
2990
3110
|
social_links?: string[] | undefined;
|
|
2991
3111
|
vesting_recipients?: {
|
|
2992
3112
|
address: string;
|
|
2993
|
-
amount
|
|
3113
|
+
amount?: string | undefined;
|
|
3114
|
+
percentage?: number | undefined;
|
|
2994
3115
|
}[] | undefined;
|
|
2995
3116
|
} | null;
|
|
2996
3117
|
token_image_public_url: string | null;
|
|
@@ -3022,7 +3143,8 @@ declare const assetContract: {
|
|
|
3022
3143
|
social_links?: string[] | undefined;
|
|
3023
3144
|
vesting_recipients?: {
|
|
3024
3145
|
address: string;
|
|
3025
|
-
amount
|
|
3146
|
+
amount?: string | undefined;
|
|
3147
|
+
percentage?: number | undefined;
|
|
3026
3148
|
}[] | undefined;
|
|
3027
3149
|
} | null;
|
|
3028
3150
|
token_image_public_url: string | null;
|
|
@@ -3074,7 +3196,7 @@ declare const assetContract: {
|
|
|
3074
3196
|
social_links?: string[] | undefined;
|
|
3075
3197
|
vesting_recipients?: {
|
|
3076
3198
|
address: string;
|
|
3077
|
-
amount: string;
|
|
3199
|
+
amount: string | undefined;
|
|
3078
3200
|
}[] | undefined;
|
|
3079
3201
|
} | null;
|
|
3080
3202
|
token_image_public_url: string | null;
|
|
@@ -3106,7 +3228,7 @@ declare const assetContract: {
|
|
|
3106
3228
|
social_links?: string[] | undefined;
|
|
3107
3229
|
vesting_recipients?: {
|
|
3108
3230
|
address: string;
|
|
3109
|
-
amount: string;
|
|
3231
|
+
amount: string | undefined;
|
|
3110
3232
|
}[] | undefined;
|
|
3111
3233
|
} | null;
|
|
3112
3234
|
token_image_public_url: string | null;
|
|
@@ -3156,7 +3278,8 @@ declare const assetContract: {
|
|
|
3156
3278
|
social_links?: string[] | undefined;
|
|
3157
3279
|
vesting_recipients?: {
|
|
3158
3280
|
address: string;
|
|
3159
|
-
amount
|
|
3281
|
+
amount?: string | undefined;
|
|
3282
|
+
percentage?: number | undefined;
|
|
3160
3283
|
}[] | undefined;
|
|
3161
3284
|
} | null;
|
|
3162
3285
|
token_image_public_url: string | null;
|
|
@@ -3188,7 +3311,8 @@ declare const assetContract: {
|
|
|
3188
3311
|
social_links?: string[] | undefined;
|
|
3189
3312
|
vesting_recipients?: {
|
|
3190
3313
|
address: string;
|
|
3191
|
-
amount
|
|
3314
|
+
amount?: string | undefined;
|
|
3315
|
+
percentage?: number | undefined;
|
|
3192
3316
|
}[] | undefined;
|
|
3193
3317
|
} | null;
|
|
3194
3318
|
token_image_public_url: string | null;
|
|
@@ -3242,7 +3366,7 @@ declare const assetContract: {
|
|
|
3242
3366
|
social_links?: string[] | undefined;
|
|
3243
3367
|
vesting_recipients?: {
|
|
3244
3368
|
address: string;
|
|
3245
|
-
amount: string;
|
|
3369
|
+
amount: string | undefined;
|
|
3246
3370
|
}[] | undefined;
|
|
3247
3371
|
} | null;
|
|
3248
3372
|
token_image_public_url: string | null;
|
|
@@ -3274,7 +3398,7 @@ declare const assetContract: {
|
|
|
3274
3398
|
social_links?: string[] | undefined;
|
|
3275
3399
|
vesting_recipients?: {
|
|
3276
3400
|
address: string;
|
|
3277
|
-
amount: string;
|
|
3401
|
+
amount: string | undefined;
|
|
3278
3402
|
}[] | undefined;
|
|
3279
3403
|
} | null;
|
|
3280
3404
|
token_image_public_url: string | null;
|
|
@@ -3326,7 +3450,8 @@ declare const assetContract: {
|
|
|
3326
3450
|
social_links?: string[] | undefined;
|
|
3327
3451
|
vesting_recipients?: {
|
|
3328
3452
|
address: string;
|
|
3329
|
-
amount
|
|
3453
|
+
amount?: string | undefined;
|
|
3454
|
+
percentage?: number | undefined;
|
|
3330
3455
|
}[] | undefined;
|
|
3331
3456
|
} | null;
|
|
3332
3457
|
token_image_public_url: string | null;
|
|
@@ -3358,7 +3483,8 @@ declare const assetContract: {
|
|
|
3358
3483
|
social_links?: string[] | undefined;
|
|
3359
3484
|
vesting_recipients?: {
|
|
3360
3485
|
address: string;
|
|
3361
|
-
amount
|
|
3486
|
+
amount?: string | undefined;
|
|
3487
|
+
percentage?: number | undefined;
|
|
3362
3488
|
}[] | undefined;
|
|
3363
3489
|
} | null;
|
|
3364
3490
|
token_image_public_url: string | null;
|