@longdotxyz/shared 0.0.42 → 0.0.44
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.
|
@@ -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.ZodString>;
|
|
45
46
|
}, "strip", z.ZodTypeAny, {
|
|
46
47
|
address: string;
|
|
47
|
-
amount
|
|
48
|
+
amount?: string | undefined;
|
|
49
|
+
percentage?: string | undefined;
|
|
48
50
|
}, {
|
|
51
|
+
address: string;
|
|
52
|
+
amount?: string | undefined;
|
|
53
|
+
percentage?: string | undefined;
|
|
54
|
+
}>, {
|
|
49
55
|
address: string;
|
|
50
56
|
amount: string;
|
|
57
|
+
}, {
|
|
58
|
+
address: string;
|
|
59
|
+
amount?: string | undefined;
|
|
60
|
+
percentage?: string | undefined;
|
|
51
61
|
}>, "many">>;
|
|
52
62
|
}, "strip", z.ZodTypeAny, {
|
|
53
63
|
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?: string | undefined;
|
|
71
82
|
}[] | undefined;
|
|
72
83
|
}>>;
|
|
73
84
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -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?: string | undefined;
|
|
111
123
|
}[] | undefined;
|
|
112
124
|
} | null;
|
|
113
125
|
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?: string | 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.ZodString>;
|
|
227
241
|
}, "strip", z.ZodTypeAny, {
|
|
228
242
|
address: string;
|
|
229
|
-
amount
|
|
243
|
+
amount?: string | undefined;
|
|
244
|
+
percentage?: string | undefined;
|
|
230
245
|
}, {
|
|
246
|
+
address: string;
|
|
247
|
+
amount?: string | undefined;
|
|
248
|
+
percentage?: string | undefined;
|
|
249
|
+
}>, {
|
|
231
250
|
address: string;
|
|
232
251
|
amount: string;
|
|
252
|
+
}, {
|
|
253
|
+
address: string;
|
|
254
|
+
amount?: string | undefined;
|
|
255
|
+
percentage?: string | undefined;
|
|
233
256
|
}>, "many">>;
|
|
234
257
|
}, "strip", z.ZodTypeAny, {
|
|
235
258
|
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?: string | undefined;
|
|
253
277
|
}[] | undefined;
|
|
254
278
|
}>>;
|
|
255
279
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -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?: string | undefined;
|
|
295
320
|
}[] | undefined;
|
|
296
321
|
} | null;
|
|
297
322
|
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?: string | undefined;
|
|
359
385
|
}[] | undefined;
|
|
360
386
|
} | null;
|
|
361
387
|
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?: string | 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?: string | undefined;
|
|
524
552
|
}[] | undefined;
|
|
525
553
|
} | null;
|
|
526
554
|
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?: string | 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?: string | 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.ZodString>;
|
|
766
797
|
}, "strip", z.ZodTypeAny, {
|
|
767
798
|
address: string;
|
|
768
|
-
amount
|
|
799
|
+
amount?: string | undefined;
|
|
800
|
+
percentage?: string | undefined;
|
|
769
801
|
}, {
|
|
802
|
+
address: string;
|
|
803
|
+
amount?: string | undefined;
|
|
804
|
+
percentage?: string | undefined;
|
|
805
|
+
}>, {
|
|
770
806
|
address: string;
|
|
771
807
|
amount: string;
|
|
808
|
+
}, {
|
|
809
|
+
address: string;
|
|
810
|
+
amount?: string | undefined;
|
|
811
|
+
percentage?: string | undefined;
|
|
772
812
|
}>, "many">>;
|
|
773
813
|
}, "strip", z.ZodTypeAny, {
|
|
774
814
|
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?: string | undefined;
|
|
792
833
|
}[] | undefined;
|
|
793
834
|
}>>;
|
|
794
835
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -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?: string | undefined;
|
|
832
874
|
}[] | undefined;
|
|
833
875
|
} | null;
|
|
834
876
|
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?: string | 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.ZodString>;
|
|
948
992
|
}, "strip", z.ZodTypeAny, {
|
|
949
993
|
address: string;
|
|
950
|
-
amount
|
|
994
|
+
amount?: string | undefined;
|
|
995
|
+
percentage?: string | undefined;
|
|
951
996
|
}, {
|
|
997
|
+
address: string;
|
|
998
|
+
amount?: string | undefined;
|
|
999
|
+
percentage?: string | undefined;
|
|
1000
|
+
}>, {
|
|
952
1001
|
address: string;
|
|
953
1002
|
amount: string;
|
|
1003
|
+
}, {
|
|
1004
|
+
address: string;
|
|
1005
|
+
amount?: string | undefined;
|
|
1006
|
+
percentage?: string | undefined;
|
|
954
1007
|
}>, "many">>;
|
|
955
1008
|
}, "strip", z.ZodTypeAny, {
|
|
956
1009
|
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?: string | undefined;
|
|
974
1028
|
}[] | undefined;
|
|
975
1029
|
}>>;
|
|
976
1030
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -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?: string | undefined;
|
|
1016
1071
|
}[] | undefined;
|
|
1017
1072
|
} | null;
|
|
1018
1073
|
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?: string | undefined;
|
|
1080
1136
|
}[] | undefined;
|
|
1081
1137
|
} | null;
|
|
1082
1138
|
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?: string | 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?: string | undefined;
|
|
1245
1303
|
}[] | undefined;
|
|
1246
1304
|
} | null;
|
|
1247
1305
|
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?: string | 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?: string | undefined;
|
|
1411
1471
|
}[] | undefined;
|
|
1412
1472
|
} | null;
|
|
1413
1473
|
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?: string | 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?: string | 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.ZodString>;
|
|
1656
1719
|
}, "strip", z.ZodTypeAny, {
|
|
1657
1720
|
address: string;
|
|
1658
|
-
amount
|
|
1721
|
+
amount?: string | undefined;
|
|
1722
|
+
percentage?: string | undefined;
|
|
1659
1723
|
}, {
|
|
1724
|
+
address: string;
|
|
1725
|
+
amount?: string | undefined;
|
|
1726
|
+
percentage?: string | undefined;
|
|
1727
|
+
}>, {
|
|
1660
1728
|
address: string;
|
|
1661
1729
|
amount: string;
|
|
1730
|
+
}, {
|
|
1731
|
+
address: string;
|
|
1732
|
+
amount?: string | undefined;
|
|
1733
|
+
percentage?: string | undefined;
|
|
1662
1734
|
}>, "many">>;
|
|
1663
1735
|
}, "strip", z.ZodTypeAny, {
|
|
1664
1736
|
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?: string | undefined;
|
|
1682
1755
|
}[] | undefined;
|
|
1683
1756
|
}>>;
|
|
1684
1757
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -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?: string | undefined;
|
|
1722
1796
|
}[] | undefined;
|
|
1723
1797
|
} | null;
|
|
1724
1798
|
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?: string | 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.ZodString>;
|
|
1838
1914
|
}, "strip", z.ZodTypeAny, {
|
|
1839
1915
|
address: string;
|
|
1840
|
-
amount
|
|
1916
|
+
amount?: string | undefined;
|
|
1917
|
+
percentage?: string | undefined;
|
|
1841
1918
|
}, {
|
|
1919
|
+
address: string;
|
|
1920
|
+
amount?: string | undefined;
|
|
1921
|
+
percentage?: string | undefined;
|
|
1922
|
+
}>, {
|
|
1842
1923
|
address: string;
|
|
1843
1924
|
amount: string;
|
|
1925
|
+
}, {
|
|
1926
|
+
address: string;
|
|
1927
|
+
amount?: string | undefined;
|
|
1928
|
+
percentage?: string | undefined;
|
|
1844
1929
|
}>, "many">>;
|
|
1845
1930
|
}, "strip", z.ZodTypeAny, {
|
|
1846
1931
|
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?: string | undefined;
|
|
1864
1950
|
}[] | undefined;
|
|
1865
1951
|
}>>;
|
|
1866
1952
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -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?: string | undefined;
|
|
1906
1993
|
}[] | undefined;
|
|
1907
1994
|
} | null;
|
|
1908
1995
|
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?: string | undefined;
|
|
1970
2058
|
}[] | undefined;
|
|
1971
2059
|
} | null;
|
|
1972
2060
|
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?: string | 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?: string | undefined;
|
|
2135
2225
|
}[] | undefined;
|
|
2136
2226
|
} | null;
|
|
2137
2227
|
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?: string | 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?: string | undefined;
|
|
2301
2393
|
}[] | undefined;
|
|
2302
2394
|
} | null;
|
|
2303
2395
|
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?: string | 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?: string | 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.ZodString>;
|
|
2547
2642
|
}, "strip", z.ZodTypeAny, {
|
|
2548
2643
|
address: string;
|
|
2549
|
-
amount
|
|
2644
|
+
amount?: string | undefined;
|
|
2645
|
+
percentage?: string | undefined;
|
|
2550
2646
|
}, {
|
|
2647
|
+
address: string;
|
|
2648
|
+
amount?: string | undefined;
|
|
2649
|
+
percentage?: string | undefined;
|
|
2650
|
+
}>, {
|
|
2551
2651
|
address: string;
|
|
2552
2652
|
amount: string;
|
|
2653
|
+
}, {
|
|
2654
|
+
address: string;
|
|
2655
|
+
amount?: string | undefined;
|
|
2656
|
+
percentage?: string | undefined;
|
|
2553
2657
|
}>, "many">>;
|
|
2554
2658
|
}, "strip", z.ZodTypeAny, {
|
|
2555
2659
|
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?: string | undefined;
|
|
2573
2678
|
}[] | undefined;
|
|
2574
2679
|
}>>;
|
|
2575
2680
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -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?: string | undefined;
|
|
2613
2719
|
}[] | undefined;
|
|
2614
2720
|
} | null;
|
|
2615
2721
|
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?: string | 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.ZodString>;
|
|
2729
2837
|
}, "strip", z.ZodTypeAny, {
|
|
2730
2838
|
address: string;
|
|
2731
|
-
amount
|
|
2839
|
+
amount?: string | undefined;
|
|
2840
|
+
percentage?: string | undefined;
|
|
2732
2841
|
}, {
|
|
2842
|
+
address: string;
|
|
2843
|
+
amount?: string | undefined;
|
|
2844
|
+
percentage?: string | undefined;
|
|
2845
|
+
}>, {
|
|
2733
2846
|
address: string;
|
|
2734
2847
|
amount: string;
|
|
2848
|
+
}, {
|
|
2849
|
+
address: string;
|
|
2850
|
+
amount?: string | undefined;
|
|
2851
|
+
percentage?: string | undefined;
|
|
2735
2852
|
}>, "many">>;
|
|
2736
2853
|
}, "strip", z.ZodTypeAny, {
|
|
2737
2854
|
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?: string | undefined;
|
|
2755
2873
|
}[] | undefined;
|
|
2756
2874
|
}>>;
|
|
2757
2875
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -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?: string | undefined;
|
|
2797
2916
|
}[] | undefined;
|
|
2798
2917
|
} | null;
|
|
2799
2918
|
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?: string | undefined;
|
|
2861
2981
|
}[] | undefined;
|
|
2862
2982
|
} | null;
|
|
2863
2983
|
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?: string | 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?: string | undefined;
|
|
3026
3148
|
}[] | undefined;
|
|
3027
3149
|
} | null;
|
|
3028
3150
|
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?: string | 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?: string | undefined;
|
|
3192
3316
|
}[] | undefined;
|
|
3193
3317
|
} | null;
|
|
3194
3318
|
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?: string | 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?: string | undefined;
|
|
3362
3488
|
}[] | undefined;
|
|
3363
3489
|
} | null;
|
|
3364
3490
|
token_image_public_url: string | null;
|