@longdotxyz/shared 0.0.43 → 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.
|
@@ -42,22 +42,22 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
42
42
|
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
43
43
|
address: z.ZodString;
|
|
44
44
|
amount: z.ZodOptional<z.ZodString>;
|
|
45
|
-
percentage: z.ZodOptional<z.
|
|
45
|
+
percentage: z.ZodOptional<z.ZodString>;
|
|
46
46
|
}, "strip", z.ZodTypeAny, {
|
|
47
47
|
address: string;
|
|
48
48
|
amount?: string | undefined;
|
|
49
|
-
percentage?:
|
|
49
|
+
percentage?: string | undefined;
|
|
50
50
|
}, {
|
|
51
51
|
address: string;
|
|
52
52
|
amount?: string | undefined;
|
|
53
|
-
percentage?:
|
|
53
|
+
percentage?: string | undefined;
|
|
54
54
|
}>, {
|
|
55
55
|
address: string;
|
|
56
|
-
amount: string
|
|
56
|
+
amount: string;
|
|
57
57
|
}, {
|
|
58
58
|
address: string;
|
|
59
59
|
amount?: string | undefined;
|
|
60
|
-
percentage?:
|
|
60
|
+
percentage?: string | undefined;
|
|
61
61
|
}>, "many">>;
|
|
62
62
|
}, "strip", z.ZodTypeAny, {
|
|
63
63
|
name?: string | undefined;
|
|
@@ -67,7 +67,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
67
67
|
social_links?: string[] | undefined;
|
|
68
68
|
vesting_recipients?: {
|
|
69
69
|
address: string;
|
|
70
|
-
amount: string
|
|
70
|
+
amount: string;
|
|
71
71
|
}[] | undefined;
|
|
72
72
|
}, {
|
|
73
73
|
name?: string | undefined;
|
|
@@ -78,7 +78,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
78
78
|
vesting_recipients?: {
|
|
79
79
|
address: string;
|
|
80
80
|
amount?: string | undefined;
|
|
81
|
-
percentage?:
|
|
81
|
+
percentage?: string | undefined;
|
|
82
82
|
}[] | undefined;
|
|
83
83
|
}>>;
|
|
84
84
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -98,7 +98,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
98
98
|
social_links?: string[] | undefined;
|
|
99
99
|
vesting_recipients?: {
|
|
100
100
|
address: string;
|
|
101
|
-
amount: string
|
|
101
|
+
amount: string;
|
|
102
102
|
}[] | undefined;
|
|
103
103
|
} | null;
|
|
104
104
|
token_image_public_url: string | null;
|
|
@@ -119,7 +119,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
119
119
|
vesting_recipients?: {
|
|
120
120
|
address: string;
|
|
121
121
|
amount?: string | undefined;
|
|
122
|
-
percentage?:
|
|
122
|
+
percentage?: string | undefined;
|
|
123
123
|
}[] | undefined;
|
|
124
124
|
} | null;
|
|
125
125
|
token_image_public_url: string | null;
|
|
@@ -161,7 +161,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
161
161
|
social_links?: string[] | undefined;
|
|
162
162
|
vesting_recipients?: {
|
|
163
163
|
address: string;
|
|
164
|
-
amount: string
|
|
164
|
+
amount: string;
|
|
165
165
|
}[] | undefined;
|
|
166
166
|
} | null;
|
|
167
167
|
token_image_public_url: string | null;
|
|
@@ -204,7 +204,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
204
204
|
vesting_recipients?: {
|
|
205
205
|
address: string;
|
|
206
206
|
amount?: string | undefined;
|
|
207
|
-
percentage?:
|
|
207
|
+
percentage?: string | undefined;
|
|
208
208
|
}[] | undefined;
|
|
209
209
|
} | null;
|
|
210
210
|
token_image_public_url: string | null;
|
|
@@ -237,22 +237,22 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
237
237
|
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
238
238
|
address: z.ZodString;
|
|
239
239
|
amount: z.ZodOptional<z.ZodString>;
|
|
240
|
-
percentage: z.ZodOptional<z.
|
|
240
|
+
percentage: z.ZodOptional<z.ZodString>;
|
|
241
241
|
}, "strip", z.ZodTypeAny, {
|
|
242
242
|
address: string;
|
|
243
243
|
amount?: string | undefined;
|
|
244
|
-
percentage?:
|
|
244
|
+
percentage?: string | undefined;
|
|
245
245
|
}, {
|
|
246
246
|
address: string;
|
|
247
247
|
amount?: string | undefined;
|
|
248
|
-
percentage?:
|
|
248
|
+
percentage?: string | undefined;
|
|
249
249
|
}>, {
|
|
250
250
|
address: string;
|
|
251
|
-
amount: string
|
|
251
|
+
amount: string;
|
|
252
252
|
}, {
|
|
253
253
|
address: string;
|
|
254
254
|
amount?: string | undefined;
|
|
255
|
-
percentage?:
|
|
255
|
+
percentage?: string | undefined;
|
|
256
256
|
}>, "many">>;
|
|
257
257
|
}, "strip", z.ZodTypeAny, {
|
|
258
258
|
name?: string | undefined;
|
|
@@ -262,7 +262,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
262
262
|
social_links?: string[] | undefined;
|
|
263
263
|
vesting_recipients?: {
|
|
264
264
|
address: string;
|
|
265
|
-
amount: string
|
|
265
|
+
amount: string;
|
|
266
266
|
}[] | undefined;
|
|
267
267
|
}, {
|
|
268
268
|
name?: string | undefined;
|
|
@@ -273,7 +273,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
273
273
|
vesting_recipients?: {
|
|
274
274
|
address: string;
|
|
275
275
|
amount?: string | undefined;
|
|
276
|
-
percentage?:
|
|
276
|
+
percentage?: string | undefined;
|
|
277
277
|
}[] | undefined;
|
|
278
278
|
}>>;
|
|
279
279
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -294,7 +294,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
294
294
|
social_links?: string[] | undefined;
|
|
295
295
|
vesting_recipients?: {
|
|
296
296
|
address: string;
|
|
297
|
-
amount: string
|
|
297
|
+
amount: string;
|
|
298
298
|
}[] | undefined;
|
|
299
299
|
} | null;
|
|
300
300
|
token_image_public_url: string | null;
|
|
@@ -316,7 +316,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
316
316
|
vesting_recipients?: {
|
|
317
317
|
address: string;
|
|
318
318
|
amount?: string | undefined;
|
|
319
|
-
percentage?:
|
|
319
|
+
percentage?: string | undefined;
|
|
320
320
|
}[] | undefined;
|
|
321
321
|
} | null;
|
|
322
322
|
token_image_public_url: string | null;
|
|
@@ -348,7 +348,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
348
348
|
social_links?: string[] | undefined;
|
|
349
349
|
vesting_recipients?: {
|
|
350
350
|
address: string;
|
|
351
|
-
amount: string
|
|
351
|
+
amount: string;
|
|
352
352
|
}[] | undefined;
|
|
353
353
|
} | null;
|
|
354
354
|
token_image_public_url: string | null;
|
|
@@ -381,7 +381,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
381
381
|
vesting_recipients?: {
|
|
382
382
|
address: string;
|
|
383
383
|
amount?: string | undefined;
|
|
384
|
-
percentage?:
|
|
384
|
+
percentage?: string | undefined;
|
|
385
385
|
}[] | undefined;
|
|
386
386
|
} | null;
|
|
387
387
|
token_image_public_url: string | null;
|
|
@@ -432,7 +432,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
432
432
|
social_links?: string[] | undefined;
|
|
433
433
|
vesting_recipients?: {
|
|
434
434
|
address: string;
|
|
435
|
-
amount: string
|
|
435
|
+
amount: string;
|
|
436
436
|
}[] | undefined;
|
|
437
437
|
} | null;
|
|
438
438
|
token_image_public_url: string | null;
|
|
@@ -464,7 +464,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
464
464
|
social_links?: string[] | undefined;
|
|
465
465
|
vesting_recipients?: {
|
|
466
466
|
address: string;
|
|
467
|
-
amount: string
|
|
467
|
+
amount: string;
|
|
468
468
|
}[] | undefined;
|
|
469
469
|
} | null;
|
|
470
470
|
token_image_public_url: string | null;
|
|
@@ -515,7 +515,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
515
515
|
vesting_recipients?: {
|
|
516
516
|
address: string;
|
|
517
517
|
amount?: string | undefined;
|
|
518
|
-
percentage?:
|
|
518
|
+
percentage?: string | undefined;
|
|
519
519
|
}[] | undefined;
|
|
520
520
|
} | null;
|
|
521
521
|
token_image_public_url: string | null;
|
|
@@ -548,7 +548,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
548
548
|
vesting_recipients?: {
|
|
549
549
|
address: string;
|
|
550
550
|
amount?: string | undefined;
|
|
551
|
-
percentage?:
|
|
551
|
+
percentage?: string | undefined;
|
|
552
552
|
}[] | undefined;
|
|
553
553
|
} | null;
|
|
554
554
|
token_image_public_url: string | null;
|
|
@@ -600,7 +600,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
600
600
|
social_links?: string[] | undefined;
|
|
601
601
|
vesting_recipients?: {
|
|
602
602
|
address: string;
|
|
603
|
-
amount: string
|
|
603
|
+
amount: string;
|
|
604
604
|
}[] | undefined;
|
|
605
605
|
} | null;
|
|
606
606
|
token_image_public_url: string | null;
|
|
@@ -632,7 +632,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
632
632
|
social_links?: string[] | undefined;
|
|
633
633
|
vesting_recipients?: {
|
|
634
634
|
address: string;
|
|
635
|
-
amount: string
|
|
635
|
+
amount: string;
|
|
636
636
|
}[] | undefined;
|
|
637
637
|
} | null;
|
|
638
638
|
token_image_public_url: string | null;
|
|
@@ -683,7 +683,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
683
683
|
vesting_recipients?: {
|
|
684
684
|
address: string;
|
|
685
685
|
amount?: string | undefined;
|
|
686
|
-
percentage?:
|
|
686
|
+
percentage?: string | undefined;
|
|
687
687
|
}[] | undefined;
|
|
688
688
|
} | null;
|
|
689
689
|
token_image_public_url: string | null;
|
|
@@ -716,7 +716,7 @@ declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
|
716
716
|
vesting_recipients?: {
|
|
717
717
|
address: string;
|
|
718
718
|
amount?: string | undefined;
|
|
719
|
-
percentage?:
|
|
719
|
+
percentage?: string | undefined;
|
|
720
720
|
}[] | undefined;
|
|
721
721
|
} | null;
|
|
722
722
|
token_image_public_url: string | null;
|
|
@@ -793,22 +793,22 @@ declare const assetContract: {
|
|
|
793
793
|
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
794
794
|
address: z.ZodString;
|
|
795
795
|
amount: z.ZodOptional<z.ZodString>;
|
|
796
|
-
percentage: z.ZodOptional<z.
|
|
796
|
+
percentage: z.ZodOptional<z.ZodString>;
|
|
797
797
|
}, "strip", z.ZodTypeAny, {
|
|
798
798
|
address: string;
|
|
799
799
|
amount?: string | undefined;
|
|
800
|
-
percentage?:
|
|
800
|
+
percentage?: string | undefined;
|
|
801
801
|
}, {
|
|
802
802
|
address: string;
|
|
803
803
|
amount?: string | undefined;
|
|
804
|
-
percentage?:
|
|
804
|
+
percentage?: string | undefined;
|
|
805
805
|
}>, {
|
|
806
806
|
address: string;
|
|
807
|
-
amount: string
|
|
807
|
+
amount: string;
|
|
808
808
|
}, {
|
|
809
809
|
address: string;
|
|
810
810
|
amount?: string | undefined;
|
|
811
|
-
percentage?:
|
|
811
|
+
percentage?: string | undefined;
|
|
812
812
|
}>, "many">>;
|
|
813
813
|
}, "strip", z.ZodTypeAny, {
|
|
814
814
|
name?: string | undefined;
|
|
@@ -818,7 +818,7 @@ declare const assetContract: {
|
|
|
818
818
|
social_links?: string[] | undefined;
|
|
819
819
|
vesting_recipients?: {
|
|
820
820
|
address: string;
|
|
821
|
-
amount: string
|
|
821
|
+
amount: string;
|
|
822
822
|
}[] | undefined;
|
|
823
823
|
}, {
|
|
824
824
|
name?: string | undefined;
|
|
@@ -829,7 +829,7 @@ declare const assetContract: {
|
|
|
829
829
|
vesting_recipients?: {
|
|
830
830
|
address: string;
|
|
831
831
|
amount?: string | undefined;
|
|
832
|
-
percentage?:
|
|
832
|
+
percentage?: string | undefined;
|
|
833
833
|
}[] | undefined;
|
|
834
834
|
}>>;
|
|
835
835
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -849,7 +849,7 @@ declare const assetContract: {
|
|
|
849
849
|
social_links?: string[] | undefined;
|
|
850
850
|
vesting_recipients?: {
|
|
851
851
|
address: string;
|
|
852
|
-
amount: string
|
|
852
|
+
amount: string;
|
|
853
853
|
}[] | undefined;
|
|
854
854
|
} | null;
|
|
855
855
|
token_image_public_url: string | null;
|
|
@@ -870,7 +870,7 @@ declare const assetContract: {
|
|
|
870
870
|
vesting_recipients?: {
|
|
871
871
|
address: string;
|
|
872
872
|
amount?: string | undefined;
|
|
873
|
-
percentage?:
|
|
873
|
+
percentage?: string | undefined;
|
|
874
874
|
}[] | undefined;
|
|
875
875
|
} | null;
|
|
876
876
|
token_image_public_url: string | null;
|
|
@@ -912,7 +912,7 @@ declare const assetContract: {
|
|
|
912
912
|
social_links?: string[] | undefined;
|
|
913
913
|
vesting_recipients?: {
|
|
914
914
|
address: string;
|
|
915
|
-
amount: string
|
|
915
|
+
amount: string;
|
|
916
916
|
}[] | undefined;
|
|
917
917
|
} | null;
|
|
918
918
|
token_image_public_url: string | null;
|
|
@@ -955,7 +955,7 @@ declare const assetContract: {
|
|
|
955
955
|
vesting_recipients?: {
|
|
956
956
|
address: string;
|
|
957
957
|
amount?: string | undefined;
|
|
958
|
-
percentage?:
|
|
958
|
+
percentage?: string | undefined;
|
|
959
959
|
}[] | undefined;
|
|
960
960
|
} | null;
|
|
961
961
|
token_image_public_url: string | null;
|
|
@@ -988,22 +988,22 @@ declare const assetContract: {
|
|
|
988
988
|
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
989
989
|
address: z.ZodString;
|
|
990
990
|
amount: z.ZodOptional<z.ZodString>;
|
|
991
|
-
percentage: z.ZodOptional<z.
|
|
991
|
+
percentage: z.ZodOptional<z.ZodString>;
|
|
992
992
|
}, "strip", z.ZodTypeAny, {
|
|
993
993
|
address: string;
|
|
994
994
|
amount?: string | undefined;
|
|
995
|
-
percentage?:
|
|
995
|
+
percentage?: string | undefined;
|
|
996
996
|
}, {
|
|
997
997
|
address: string;
|
|
998
998
|
amount?: string | undefined;
|
|
999
|
-
percentage?:
|
|
999
|
+
percentage?: string | undefined;
|
|
1000
1000
|
}>, {
|
|
1001
1001
|
address: string;
|
|
1002
|
-
amount: string
|
|
1002
|
+
amount: string;
|
|
1003
1003
|
}, {
|
|
1004
1004
|
address: string;
|
|
1005
1005
|
amount?: string | undefined;
|
|
1006
|
-
percentage?:
|
|
1006
|
+
percentage?: string | undefined;
|
|
1007
1007
|
}>, "many">>;
|
|
1008
1008
|
}, "strip", z.ZodTypeAny, {
|
|
1009
1009
|
name?: string | undefined;
|
|
@@ -1013,7 +1013,7 @@ declare const assetContract: {
|
|
|
1013
1013
|
social_links?: string[] | undefined;
|
|
1014
1014
|
vesting_recipients?: {
|
|
1015
1015
|
address: string;
|
|
1016
|
-
amount: string
|
|
1016
|
+
amount: string;
|
|
1017
1017
|
}[] | undefined;
|
|
1018
1018
|
}, {
|
|
1019
1019
|
name?: string | undefined;
|
|
@@ -1024,7 +1024,7 @@ declare const assetContract: {
|
|
|
1024
1024
|
vesting_recipients?: {
|
|
1025
1025
|
address: string;
|
|
1026
1026
|
amount?: string | undefined;
|
|
1027
|
-
percentage?:
|
|
1027
|
+
percentage?: string | undefined;
|
|
1028
1028
|
}[] | undefined;
|
|
1029
1029
|
}>>;
|
|
1030
1030
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -1045,7 +1045,7 @@ declare const assetContract: {
|
|
|
1045
1045
|
social_links?: string[] | undefined;
|
|
1046
1046
|
vesting_recipients?: {
|
|
1047
1047
|
address: string;
|
|
1048
|
-
amount: string
|
|
1048
|
+
amount: string;
|
|
1049
1049
|
}[] | undefined;
|
|
1050
1050
|
} | null;
|
|
1051
1051
|
token_image_public_url: string | null;
|
|
@@ -1067,7 +1067,7 @@ declare const assetContract: {
|
|
|
1067
1067
|
vesting_recipients?: {
|
|
1068
1068
|
address: string;
|
|
1069
1069
|
amount?: string | undefined;
|
|
1070
|
-
percentage?:
|
|
1070
|
+
percentage?: string | undefined;
|
|
1071
1071
|
}[] | undefined;
|
|
1072
1072
|
} | null;
|
|
1073
1073
|
token_image_public_url: string | null;
|
|
@@ -1099,7 +1099,7 @@ declare const assetContract: {
|
|
|
1099
1099
|
social_links?: string[] | undefined;
|
|
1100
1100
|
vesting_recipients?: {
|
|
1101
1101
|
address: string;
|
|
1102
|
-
amount: string
|
|
1102
|
+
amount: string;
|
|
1103
1103
|
}[] | undefined;
|
|
1104
1104
|
} | null;
|
|
1105
1105
|
token_image_public_url: string | null;
|
|
@@ -1132,7 +1132,7 @@ declare const assetContract: {
|
|
|
1132
1132
|
vesting_recipients?: {
|
|
1133
1133
|
address: string;
|
|
1134
1134
|
amount?: string | undefined;
|
|
1135
|
-
percentage?:
|
|
1135
|
+
percentage?: string | undefined;
|
|
1136
1136
|
}[] | undefined;
|
|
1137
1137
|
} | null;
|
|
1138
1138
|
token_image_public_url: string | null;
|
|
@@ -1183,7 +1183,7 @@ declare const assetContract: {
|
|
|
1183
1183
|
social_links?: string[] | undefined;
|
|
1184
1184
|
vesting_recipients?: {
|
|
1185
1185
|
address: string;
|
|
1186
|
-
amount: string
|
|
1186
|
+
amount: string;
|
|
1187
1187
|
}[] | undefined;
|
|
1188
1188
|
} | null;
|
|
1189
1189
|
token_image_public_url: string | null;
|
|
@@ -1215,7 +1215,7 @@ declare const assetContract: {
|
|
|
1215
1215
|
social_links?: string[] | undefined;
|
|
1216
1216
|
vesting_recipients?: {
|
|
1217
1217
|
address: string;
|
|
1218
|
-
amount: string
|
|
1218
|
+
amount: string;
|
|
1219
1219
|
}[] | undefined;
|
|
1220
1220
|
} | null;
|
|
1221
1221
|
token_image_public_url: string | null;
|
|
@@ -1266,7 +1266,7 @@ declare const assetContract: {
|
|
|
1266
1266
|
vesting_recipients?: {
|
|
1267
1267
|
address: string;
|
|
1268
1268
|
amount?: string | undefined;
|
|
1269
|
-
percentage?:
|
|
1269
|
+
percentage?: string | undefined;
|
|
1270
1270
|
}[] | undefined;
|
|
1271
1271
|
} | null;
|
|
1272
1272
|
token_image_public_url: string | null;
|
|
@@ -1299,7 +1299,7 @@ declare const assetContract: {
|
|
|
1299
1299
|
vesting_recipients?: {
|
|
1300
1300
|
address: string;
|
|
1301
1301
|
amount?: string | undefined;
|
|
1302
|
-
percentage?:
|
|
1302
|
+
percentage?: string | undefined;
|
|
1303
1303
|
}[] | undefined;
|
|
1304
1304
|
} | null;
|
|
1305
1305
|
token_image_public_url: string | null;
|
|
@@ -1351,7 +1351,7 @@ declare const assetContract: {
|
|
|
1351
1351
|
social_links?: string[] | undefined;
|
|
1352
1352
|
vesting_recipients?: {
|
|
1353
1353
|
address: string;
|
|
1354
|
-
amount: string
|
|
1354
|
+
amount: string;
|
|
1355
1355
|
}[] | undefined;
|
|
1356
1356
|
} | null;
|
|
1357
1357
|
token_image_public_url: string | null;
|
|
@@ -1383,7 +1383,7 @@ declare const assetContract: {
|
|
|
1383
1383
|
social_links?: string[] | undefined;
|
|
1384
1384
|
vesting_recipients?: {
|
|
1385
1385
|
address: string;
|
|
1386
|
-
amount: string
|
|
1386
|
+
amount: string;
|
|
1387
1387
|
}[] | undefined;
|
|
1388
1388
|
} | null;
|
|
1389
1389
|
token_image_public_url: string | null;
|
|
@@ -1434,7 +1434,7 @@ declare const assetContract: {
|
|
|
1434
1434
|
vesting_recipients?: {
|
|
1435
1435
|
address: string;
|
|
1436
1436
|
amount?: string | undefined;
|
|
1437
|
-
percentage?:
|
|
1437
|
+
percentage?: string | undefined;
|
|
1438
1438
|
}[] | undefined;
|
|
1439
1439
|
} | null;
|
|
1440
1440
|
token_image_public_url: string | null;
|
|
@@ -1467,7 +1467,7 @@ declare const assetContract: {
|
|
|
1467
1467
|
vesting_recipients?: {
|
|
1468
1468
|
address: string;
|
|
1469
1469
|
amount?: string | undefined;
|
|
1470
|
-
percentage?:
|
|
1470
|
+
percentage?: string | undefined;
|
|
1471
1471
|
}[] | undefined;
|
|
1472
1472
|
} | null;
|
|
1473
1473
|
token_image_public_url: string | null;
|
|
@@ -1521,7 +1521,7 @@ declare const assetContract: {
|
|
|
1521
1521
|
social_links?: string[] | undefined;
|
|
1522
1522
|
vesting_recipients?: {
|
|
1523
1523
|
address: string;
|
|
1524
|
-
amount: string
|
|
1524
|
+
amount: string;
|
|
1525
1525
|
}[] | undefined;
|
|
1526
1526
|
} | null;
|
|
1527
1527
|
token_image_public_url: string | null;
|
|
@@ -1553,7 +1553,7 @@ declare const assetContract: {
|
|
|
1553
1553
|
social_links?: string[] | undefined;
|
|
1554
1554
|
vesting_recipients?: {
|
|
1555
1555
|
address: string;
|
|
1556
|
-
amount: string
|
|
1556
|
+
amount: string;
|
|
1557
1557
|
}[] | undefined;
|
|
1558
1558
|
} | null;
|
|
1559
1559
|
token_image_public_url: string | null;
|
|
@@ -1606,7 +1606,7 @@ declare const assetContract: {
|
|
|
1606
1606
|
vesting_recipients?: {
|
|
1607
1607
|
address: string;
|
|
1608
1608
|
amount?: string | undefined;
|
|
1609
|
-
percentage?:
|
|
1609
|
+
percentage?: string | undefined;
|
|
1610
1610
|
}[] | undefined;
|
|
1611
1611
|
} | null;
|
|
1612
1612
|
token_image_public_url: string | null;
|
|
@@ -1639,7 +1639,7 @@ declare const assetContract: {
|
|
|
1639
1639
|
vesting_recipients?: {
|
|
1640
1640
|
address: string;
|
|
1641
1641
|
amount?: string | undefined;
|
|
1642
|
-
percentage?:
|
|
1642
|
+
percentage?: string | undefined;
|
|
1643
1643
|
}[] | undefined;
|
|
1644
1644
|
} | null;
|
|
1645
1645
|
token_image_public_url: string | null;
|
|
@@ -1715,22 +1715,22 @@ declare const assetContract: {
|
|
|
1715
1715
|
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
1716
1716
|
address: z.ZodString;
|
|
1717
1717
|
amount: z.ZodOptional<z.ZodString>;
|
|
1718
|
-
percentage: z.ZodOptional<z.
|
|
1718
|
+
percentage: z.ZodOptional<z.ZodString>;
|
|
1719
1719
|
}, "strip", z.ZodTypeAny, {
|
|
1720
1720
|
address: string;
|
|
1721
1721
|
amount?: string | undefined;
|
|
1722
|
-
percentage?:
|
|
1722
|
+
percentage?: string | undefined;
|
|
1723
1723
|
}, {
|
|
1724
1724
|
address: string;
|
|
1725
1725
|
amount?: string | undefined;
|
|
1726
|
-
percentage?:
|
|
1726
|
+
percentage?: string | undefined;
|
|
1727
1727
|
}>, {
|
|
1728
1728
|
address: string;
|
|
1729
|
-
amount: string
|
|
1729
|
+
amount: string;
|
|
1730
1730
|
}, {
|
|
1731
1731
|
address: string;
|
|
1732
1732
|
amount?: string | undefined;
|
|
1733
|
-
percentage?:
|
|
1733
|
+
percentage?: string | undefined;
|
|
1734
1734
|
}>, "many">>;
|
|
1735
1735
|
}, "strip", z.ZodTypeAny, {
|
|
1736
1736
|
name?: string | undefined;
|
|
@@ -1740,7 +1740,7 @@ declare const assetContract: {
|
|
|
1740
1740
|
social_links?: string[] | undefined;
|
|
1741
1741
|
vesting_recipients?: {
|
|
1742
1742
|
address: string;
|
|
1743
|
-
amount: string
|
|
1743
|
+
amount: string;
|
|
1744
1744
|
}[] | undefined;
|
|
1745
1745
|
}, {
|
|
1746
1746
|
name?: string | undefined;
|
|
@@ -1751,7 +1751,7 @@ declare const assetContract: {
|
|
|
1751
1751
|
vesting_recipients?: {
|
|
1752
1752
|
address: string;
|
|
1753
1753
|
amount?: string | undefined;
|
|
1754
|
-
percentage?:
|
|
1754
|
+
percentage?: string | undefined;
|
|
1755
1755
|
}[] | undefined;
|
|
1756
1756
|
}>>;
|
|
1757
1757
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -1771,7 +1771,7 @@ declare const assetContract: {
|
|
|
1771
1771
|
social_links?: string[] | undefined;
|
|
1772
1772
|
vesting_recipients?: {
|
|
1773
1773
|
address: string;
|
|
1774
|
-
amount: string
|
|
1774
|
+
amount: string;
|
|
1775
1775
|
}[] | undefined;
|
|
1776
1776
|
} | null;
|
|
1777
1777
|
token_image_public_url: string | null;
|
|
@@ -1792,7 +1792,7 @@ declare const assetContract: {
|
|
|
1792
1792
|
vesting_recipients?: {
|
|
1793
1793
|
address: string;
|
|
1794
1794
|
amount?: string | undefined;
|
|
1795
|
-
percentage?:
|
|
1795
|
+
percentage?: string | undefined;
|
|
1796
1796
|
}[] | undefined;
|
|
1797
1797
|
} | null;
|
|
1798
1798
|
token_image_public_url: string | null;
|
|
@@ -1834,7 +1834,7 @@ declare const assetContract: {
|
|
|
1834
1834
|
social_links?: string[] | undefined;
|
|
1835
1835
|
vesting_recipients?: {
|
|
1836
1836
|
address: string;
|
|
1837
|
-
amount: string
|
|
1837
|
+
amount: string;
|
|
1838
1838
|
}[] | undefined;
|
|
1839
1839
|
} | null;
|
|
1840
1840
|
token_image_public_url: string | null;
|
|
@@ -1877,7 +1877,7 @@ declare const assetContract: {
|
|
|
1877
1877
|
vesting_recipients?: {
|
|
1878
1878
|
address: string;
|
|
1879
1879
|
amount?: string | undefined;
|
|
1880
|
-
percentage?:
|
|
1880
|
+
percentage?: string | undefined;
|
|
1881
1881
|
}[] | undefined;
|
|
1882
1882
|
} | null;
|
|
1883
1883
|
token_image_public_url: string | null;
|
|
@@ -1910,22 +1910,22 @@ declare const assetContract: {
|
|
|
1910
1910
|
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
1911
1911
|
address: z.ZodString;
|
|
1912
1912
|
amount: z.ZodOptional<z.ZodString>;
|
|
1913
|
-
percentage: z.ZodOptional<z.
|
|
1913
|
+
percentage: z.ZodOptional<z.ZodString>;
|
|
1914
1914
|
}, "strip", z.ZodTypeAny, {
|
|
1915
1915
|
address: string;
|
|
1916
1916
|
amount?: string | undefined;
|
|
1917
|
-
percentage?:
|
|
1917
|
+
percentage?: string | undefined;
|
|
1918
1918
|
}, {
|
|
1919
1919
|
address: string;
|
|
1920
1920
|
amount?: string | undefined;
|
|
1921
|
-
percentage?:
|
|
1921
|
+
percentage?: string | undefined;
|
|
1922
1922
|
}>, {
|
|
1923
1923
|
address: string;
|
|
1924
|
-
amount: string
|
|
1924
|
+
amount: string;
|
|
1925
1925
|
}, {
|
|
1926
1926
|
address: string;
|
|
1927
1927
|
amount?: string | undefined;
|
|
1928
|
-
percentage?:
|
|
1928
|
+
percentage?: string | undefined;
|
|
1929
1929
|
}>, "many">>;
|
|
1930
1930
|
}, "strip", z.ZodTypeAny, {
|
|
1931
1931
|
name?: string | undefined;
|
|
@@ -1935,7 +1935,7 @@ declare const assetContract: {
|
|
|
1935
1935
|
social_links?: string[] | undefined;
|
|
1936
1936
|
vesting_recipients?: {
|
|
1937
1937
|
address: string;
|
|
1938
|
-
amount: string
|
|
1938
|
+
amount: string;
|
|
1939
1939
|
}[] | undefined;
|
|
1940
1940
|
}, {
|
|
1941
1941
|
name?: string | undefined;
|
|
@@ -1946,7 +1946,7 @@ declare const assetContract: {
|
|
|
1946
1946
|
vesting_recipients?: {
|
|
1947
1947
|
address: string;
|
|
1948
1948
|
amount?: string | undefined;
|
|
1949
|
-
percentage?:
|
|
1949
|
+
percentage?: string | undefined;
|
|
1950
1950
|
}[] | undefined;
|
|
1951
1951
|
}>>;
|
|
1952
1952
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -1967,7 +1967,7 @@ declare const assetContract: {
|
|
|
1967
1967
|
social_links?: string[] | undefined;
|
|
1968
1968
|
vesting_recipients?: {
|
|
1969
1969
|
address: string;
|
|
1970
|
-
amount: string
|
|
1970
|
+
amount: string;
|
|
1971
1971
|
}[] | undefined;
|
|
1972
1972
|
} | null;
|
|
1973
1973
|
token_image_public_url: string | null;
|
|
@@ -1989,7 +1989,7 @@ declare const assetContract: {
|
|
|
1989
1989
|
vesting_recipients?: {
|
|
1990
1990
|
address: string;
|
|
1991
1991
|
amount?: string | undefined;
|
|
1992
|
-
percentage?:
|
|
1992
|
+
percentage?: string | undefined;
|
|
1993
1993
|
}[] | undefined;
|
|
1994
1994
|
} | null;
|
|
1995
1995
|
token_image_public_url: string | null;
|
|
@@ -2021,7 +2021,7 @@ declare const assetContract: {
|
|
|
2021
2021
|
social_links?: string[] | undefined;
|
|
2022
2022
|
vesting_recipients?: {
|
|
2023
2023
|
address: string;
|
|
2024
|
-
amount: string
|
|
2024
|
+
amount: string;
|
|
2025
2025
|
}[] | undefined;
|
|
2026
2026
|
} | null;
|
|
2027
2027
|
token_image_public_url: string | null;
|
|
@@ -2054,7 +2054,7 @@ declare const assetContract: {
|
|
|
2054
2054
|
vesting_recipients?: {
|
|
2055
2055
|
address: string;
|
|
2056
2056
|
amount?: string | undefined;
|
|
2057
|
-
percentage?:
|
|
2057
|
+
percentage?: string | undefined;
|
|
2058
2058
|
}[] | undefined;
|
|
2059
2059
|
} | null;
|
|
2060
2060
|
token_image_public_url: string | null;
|
|
@@ -2105,7 +2105,7 @@ declare const assetContract: {
|
|
|
2105
2105
|
social_links?: string[] | undefined;
|
|
2106
2106
|
vesting_recipients?: {
|
|
2107
2107
|
address: string;
|
|
2108
|
-
amount: string
|
|
2108
|
+
amount: string;
|
|
2109
2109
|
}[] | undefined;
|
|
2110
2110
|
} | null;
|
|
2111
2111
|
token_image_public_url: string | null;
|
|
@@ -2137,7 +2137,7 @@ declare const assetContract: {
|
|
|
2137
2137
|
social_links?: string[] | undefined;
|
|
2138
2138
|
vesting_recipients?: {
|
|
2139
2139
|
address: string;
|
|
2140
|
-
amount: string
|
|
2140
|
+
amount: string;
|
|
2141
2141
|
}[] | undefined;
|
|
2142
2142
|
} | null;
|
|
2143
2143
|
token_image_public_url: string | null;
|
|
@@ -2188,7 +2188,7 @@ declare const assetContract: {
|
|
|
2188
2188
|
vesting_recipients?: {
|
|
2189
2189
|
address: string;
|
|
2190
2190
|
amount?: string | undefined;
|
|
2191
|
-
percentage?:
|
|
2191
|
+
percentage?: string | undefined;
|
|
2192
2192
|
}[] | undefined;
|
|
2193
2193
|
} | null;
|
|
2194
2194
|
token_image_public_url: string | null;
|
|
@@ -2221,7 +2221,7 @@ declare const assetContract: {
|
|
|
2221
2221
|
vesting_recipients?: {
|
|
2222
2222
|
address: string;
|
|
2223
2223
|
amount?: string | undefined;
|
|
2224
|
-
percentage?:
|
|
2224
|
+
percentage?: string | undefined;
|
|
2225
2225
|
}[] | undefined;
|
|
2226
2226
|
} | null;
|
|
2227
2227
|
token_image_public_url: string | null;
|
|
@@ -2273,7 +2273,7 @@ declare const assetContract: {
|
|
|
2273
2273
|
social_links?: string[] | undefined;
|
|
2274
2274
|
vesting_recipients?: {
|
|
2275
2275
|
address: string;
|
|
2276
|
-
amount: string
|
|
2276
|
+
amount: string;
|
|
2277
2277
|
}[] | undefined;
|
|
2278
2278
|
} | null;
|
|
2279
2279
|
token_image_public_url: string | null;
|
|
@@ -2305,7 +2305,7 @@ declare const assetContract: {
|
|
|
2305
2305
|
social_links?: string[] | undefined;
|
|
2306
2306
|
vesting_recipients?: {
|
|
2307
2307
|
address: string;
|
|
2308
|
-
amount: string
|
|
2308
|
+
amount: string;
|
|
2309
2309
|
}[] | undefined;
|
|
2310
2310
|
} | null;
|
|
2311
2311
|
token_image_public_url: string | null;
|
|
@@ -2356,7 +2356,7 @@ declare const assetContract: {
|
|
|
2356
2356
|
vesting_recipients?: {
|
|
2357
2357
|
address: string;
|
|
2358
2358
|
amount?: string | undefined;
|
|
2359
|
-
percentage?:
|
|
2359
|
+
percentage?: string | undefined;
|
|
2360
2360
|
}[] | undefined;
|
|
2361
2361
|
} | null;
|
|
2362
2362
|
token_image_public_url: string | null;
|
|
@@ -2389,7 +2389,7 @@ declare const assetContract: {
|
|
|
2389
2389
|
vesting_recipients?: {
|
|
2390
2390
|
address: string;
|
|
2391
2391
|
amount?: string | undefined;
|
|
2392
|
-
percentage?:
|
|
2392
|
+
percentage?: string | undefined;
|
|
2393
2393
|
}[] | undefined;
|
|
2394
2394
|
} | null;
|
|
2395
2395
|
token_image_public_url: string | null;
|
|
@@ -2443,7 +2443,7 @@ declare const assetContract: {
|
|
|
2443
2443
|
social_links?: string[] | undefined;
|
|
2444
2444
|
vesting_recipients?: {
|
|
2445
2445
|
address: string;
|
|
2446
|
-
amount: string
|
|
2446
|
+
amount: string;
|
|
2447
2447
|
}[] | undefined;
|
|
2448
2448
|
} | null;
|
|
2449
2449
|
token_image_public_url: string | null;
|
|
@@ -2475,7 +2475,7 @@ declare const assetContract: {
|
|
|
2475
2475
|
social_links?: string[] | undefined;
|
|
2476
2476
|
vesting_recipients?: {
|
|
2477
2477
|
address: string;
|
|
2478
|
-
amount: string
|
|
2478
|
+
amount: string;
|
|
2479
2479
|
}[] | undefined;
|
|
2480
2480
|
} | null;
|
|
2481
2481
|
token_image_public_url: string | null;
|
|
@@ -2528,7 +2528,7 @@ declare const assetContract: {
|
|
|
2528
2528
|
vesting_recipients?: {
|
|
2529
2529
|
address: string;
|
|
2530
2530
|
amount?: string | undefined;
|
|
2531
|
-
percentage?:
|
|
2531
|
+
percentage?: string | undefined;
|
|
2532
2532
|
}[] | undefined;
|
|
2533
2533
|
} | null;
|
|
2534
2534
|
token_image_public_url: string | null;
|
|
@@ -2561,7 +2561,7 @@ declare const assetContract: {
|
|
|
2561
2561
|
vesting_recipients?: {
|
|
2562
2562
|
address: string;
|
|
2563
2563
|
amount?: string | undefined;
|
|
2564
|
-
percentage?:
|
|
2564
|
+
percentage?: string | undefined;
|
|
2565
2565
|
}[] | undefined;
|
|
2566
2566
|
} | null;
|
|
2567
2567
|
token_image_public_url: string | null;
|
|
@@ -2638,22 +2638,22 @@ declare const assetContract: {
|
|
|
2638
2638
|
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
2639
2639
|
address: z.ZodString;
|
|
2640
2640
|
amount: z.ZodOptional<z.ZodString>;
|
|
2641
|
-
percentage: z.ZodOptional<z.
|
|
2641
|
+
percentage: z.ZodOptional<z.ZodString>;
|
|
2642
2642
|
}, "strip", z.ZodTypeAny, {
|
|
2643
2643
|
address: string;
|
|
2644
2644
|
amount?: string | undefined;
|
|
2645
|
-
percentage?:
|
|
2645
|
+
percentage?: string | undefined;
|
|
2646
2646
|
}, {
|
|
2647
2647
|
address: string;
|
|
2648
2648
|
amount?: string | undefined;
|
|
2649
|
-
percentage?:
|
|
2649
|
+
percentage?: string | undefined;
|
|
2650
2650
|
}>, {
|
|
2651
2651
|
address: string;
|
|
2652
|
-
amount: string
|
|
2652
|
+
amount: string;
|
|
2653
2653
|
}, {
|
|
2654
2654
|
address: string;
|
|
2655
2655
|
amount?: string | undefined;
|
|
2656
|
-
percentage?:
|
|
2656
|
+
percentage?: string | undefined;
|
|
2657
2657
|
}>, "many">>;
|
|
2658
2658
|
}, "strip", z.ZodTypeAny, {
|
|
2659
2659
|
name?: string | undefined;
|
|
@@ -2663,7 +2663,7 @@ declare const assetContract: {
|
|
|
2663
2663
|
social_links?: string[] | undefined;
|
|
2664
2664
|
vesting_recipients?: {
|
|
2665
2665
|
address: string;
|
|
2666
|
-
amount: string
|
|
2666
|
+
amount: string;
|
|
2667
2667
|
}[] | undefined;
|
|
2668
2668
|
}, {
|
|
2669
2669
|
name?: string | undefined;
|
|
@@ -2674,7 +2674,7 @@ declare const assetContract: {
|
|
|
2674
2674
|
vesting_recipients?: {
|
|
2675
2675
|
address: string;
|
|
2676
2676
|
amount?: string | undefined;
|
|
2677
|
-
percentage?:
|
|
2677
|
+
percentage?: string | undefined;
|
|
2678
2678
|
}[] | undefined;
|
|
2679
2679
|
}>>;
|
|
2680
2680
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -2694,7 +2694,7 @@ declare const assetContract: {
|
|
|
2694
2694
|
social_links?: string[] | undefined;
|
|
2695
2695
|
vesting_recipients?: {
|
|
2696
2696
|
address: string;
|
|
2697
|
-
amount: string
|
|
2697
|
+
amount: string;
|
|
2698
2698
|
}[] | undefined;
|
|
2699
2699
|
} | null;
|
|
2700
2700
|
token_image_public_url: string | null;
|
|
@@ -2715,7 +2715,7 @@ declare const assetContract: {
|
|
|
2715
2715
|
vesting_recipients?: {
|
|
2716
2716
|
address: string;
|
|
2717
2717
|
amount?: string | undefined;
|
|
2718
|
-
percentage?:
|
|
2718
|
+
percentage?: string | undefined;
|
|
2719
2719
|
}[] | undefined;
|
|
2720
2720
|
} | null;
|
|
2721
2721
|
token_image_public_url: string | null;
|
|
@@ -2757,7 +2757,7 @@ declare const assetContract: {
|
|
|
2757
2757
|
social_links?: string[] | undefined;
|
|
2758
2758
|
vesting_recipients?: {
|
|
2759
2759
|
address: string;
|
|
2760
|
-
amount: string
|
|
2760
|
+
amount: string;
|
|
2761
2761
|
}[] | undefined;
|
|
2762
2762
|
} | null;
|
|
2763
2763
|
token_image_public_url: string | null;
|
|
@@ -2800,7 +2800,7 @@ declare const assetContract: {
|
|
|
2800
2800
|
vesting_recipients?: {
|
|
2801
2801
|
address: string;
|
|
2802
2802
|
amount?: string | undefined;
|
|
2803
|
-
percentage?:
|
|
2803
|
+
percentage?: string | undefined;
|
|
2804
2804
|
}[] | undefined;
|
|
2805
2805
|
} | null;
|
|
2806
2806
|
token_image_public_url: string | null;
|
|
@@ -2833,22 +2833,22 @@ declare const assetContract: {
|
|
|
2833
2833
|
vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
2834
2834
|
address: z.ZodString;
|
|
2835
2835
|
amount: z.ZodOptional<z.ZodString>;
|
|
2836
|
-
percentage: z.ZodOptional<z.
|
|
2836
|
+
percentage: z.ZodOptional<z.ZodString>;
|
|
2837
2837
|
}, "strip", z.ZodTypeAny, {
|
|
2838
2838
|
address: string;
|
|
2839
2839
|
amount?: string | undefined;
|
|
2840
|
-
percentage?:
|
|
2840
|
+
percentage?: string | undefined;
|
|
2841
2841
|
}, {
|
|
2842
2842
|
address: string;
|
|
2843
2843
|
amount?: string | undefined;
|
|
2844
|
-
percentage?:
|
|
2844
|
+
percentage?: string | undefined;
|
|
2845
2845
|
}>, {
|
|
2846
2846
|
address: string;
|
|
2847
|
-
amount: string
|
|
2847
|
+
amount: string;
|
|
2848
2848
|
}, {
|
|
2849
2849
|
address: string;
|
|
2850
2850
|
amount?: string | undefined;
|
|
2851
|
-
percentage?:
|
|
2851
|
+
percentage?: string | undefined;
|
|
2852
2852
|
}>, "many">>;
|
|
2853
2853
|
}, "strip", z.ZodTypeAny, {
|
|
2854
2854
|
name?: string | undefined;
|
|
@@ -2858,7 +2858,7 @@ declare const assetContract: {
|
|
|
2858
2858
|
social_links?: string[] | undefined;
|
|
2859
2859
|
vesting_recipients?: {
|
|
2860
2860
|
address: string;
|
|
2861
|
-
amount: string
|
|
2861
|
+
amount: string;
|
|
2862
2862
|
}[] | undefined;
|
|
2863
2863
|
}, {
|
|
2864
2864
|
name?: string | undefined;
|
|
@@ -2869,7 +2869,7 @@ declare const assetContract: {
|
|
|
2869
2869
|
vesting_recipients?: {
|
|
2870
2870
|
address: string;
|
|
2871
2871
|
amount?: string | undefined;
|
|
2872
|
-
percentage?:
|
|
2872
|
+
percentage?: string | undefined;
|
|
2873
2873
|
}[] | undefined;
|
|
2874
2874
|
}>>;
|
|
2875
2875
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
@@ -2890,7 +2890,7 @@ declare const assetContract: {
|
|
|
2890
2890
|
social_links?: string[] | undefined;
|
|
2891
2891
|
vesting_recipients?: {
|
|
2892
2892
|
address: string;
|
|
2893
|
-
amount: string
|
|
2893
|
+
amount: string;
|
|
2894
2894
|
}[] | undefined;
|
|
2895
2895
|
} | null;
|
|
2896
2896
|
token_image_public_url: string | null;
|
|
@@ -2912,7 +2912,7 @@ declare const assetContract: {
|
|
|
2912
2912
|
vesting_recipients?: {
|
|
2913
2913
|
address: string;
|
|
2914
2914
|
amount?: string | undefined;
|
|
2915
|
-
percentage?:
|
|
2915
|
+
percentage?: string | undefined;
|
|
2916
2916
|
}[] | undefined;
|
|
2917
2917
|
} | null;
|
|
2918
2918
|
token_image_public_url: string | null;
|
|
@@ -2944,7 +2944,7 @@ declare const assetContract: {
|
|
|
2944
2944
|
social_links?: string[] | undefined;
|
|
2945
2945
|
vesting_recipients?: {
|
|
2946
2946
|
address: string;
|
|
2947
|
-
amount: string
|
|
2947
|
+
amount: string;
|
|
2948
2948
|
}[] | undefined;
|
|
2949
2949
|
} | null;
|
|
2950
2950
|
token_image_public_url: string | null;
|
|
@@ -2977,7 +2977,7 @@ declare const assetContract: {
|
|
|
2977
2977
|
vesting_recipients?: {
|
|
2978
2978
|
address: string;
|
|
2979
2979
|
amount?: string | undefined;
|
|
2980
|
-
percentage?:
|
|
2980
|
+
percentage?: string | undefined;
|
|
2981
2981
|
}[] | undefined;
|
|
2982
2982
|
} | null;
|
|
2983
2983
|
token_image_public_url: string | null;
|
|
@@ -3028,7 +3028,7 @@ declare const assetContract: {
|
|
|
3028
3028
|
social_links?: string[] | undefined;
|
|
3029
3029
|
vesting_recipients?: {
|
|
3030
3030
|
address: string;
|
|
3031
|
-
amount: string
|
|
3031
|
+
amount: string;
|
|
3032
3032
|
}[] | undefined;
|
|
3033
3033
|
} | null;
|
|
3034
3034
|
token_image_public_url: string | null;
|
|
@@ -3060,7 +3060,7 @@ declare const assetContract: {
|
|
|
3060
3060
|
social_links?: string[] | undefined;
|
|
3061
3061
|
vesting_recipients?: {
|
|
3062
3062
|
address: string;
|
|
3063
|
-
amount: string
|
|
3063
|
+
amount: string;
|
|
3064
3064
|
}[] | undefined;
|
|
3065
3065
|
} | null;
|
|
3066
3066
|
token_image_public_url: string | null;
|
|
@@ -3111,7 +3111,7 @@ declare const assetContract: {
|
|
|
3111
3111
|
vesting_recipients?: {
|
|
3112
3112
|
address: string;
|
|
3113
3113
|
amount?: string | undefined;
|
|
3114
|
-
percentage?:
|
|
3114
|
+
percentage?: string | undefined;
|
|
3115
3115
|
}[] | undefined;
|
|
3116
3116
|
} | null;
|
|
3117
3117
|
token_image_public_url: string | null;
|
|
@@ -3144,7 +3144,7 @@ declare const assetContract: {
|
|
|
3144
3144
|
vesting_recipients?: {
|
|
3145
3145
|
address: string;
|
|
3146
3146
|
amount?: string | undefined;
|
|
3147
|
-
percentage?:
|
|
3147
|
+
percentage?: string | undefined;
|
|
3148
3148
|
}[] | undefined;
|
|
3149
3149
|
} | null;
|
|
3150
3150
|
token_image_public_url: string | null;
|
|
@@ -3196,7 +3196,7 @@ declare const assetContract: {
|
|
|
3196
3196
|
social_links?: string[] | undefined;
|
|
3197
3197
|
vesting_recipients?: {
|
|
3198
3198
|
address: string;
|
|
3199
|
-
amount: string
|
|
3199
|
+
amount: string;
|
|
3200
3200
|
}[] | undefined;
|
|
3201
3201
|
} | null;
|
|
3202
3202
|
token_image_public_url: string | null;
|
|
@@ -3228,7 +3228,7 @@ declare const assetContract: {
|
|
|
3228
3228
|
social_links?: string[] | undefined;
|
|
3229
3229
|
vesting_recipients?: {
|
|
3230
3230
|
address: string;
|
|
3231
|
-
amount: string
|
|
3231
|
+
amount: string;
|
|
3232
3232
|
}[] | undefined;
|
|
3233
3233
|
} | null;
|
|
3234
3234
|
token_image_public_url: string | null;
|
|
@@ -3279,7 +3279,7 @@ declare const assetContract: {
|
|
|
3279
3279
|
vesting_recipients?: {
|
|
3280
3280
|
address: string;
|
|
3281
3281
|
amount?: string | undefined;
|
|
3282
|
-
percentage?:
|
|
3282
|
+
percentage?: string | undefined;
|
|
3283
3283
|
}[] | undefined;
|
|
3284
3284
|
} | null;
|
|
3285
3285
|
token_image_public_url: string | null;
|
|
@@ -3312,7 +3312,7 @@ declare const assetContract: {
|
|
|
3312
3312
|
vesting_recipients?: {
|
|
3313
3313
|
address: string;
|
|
3314
3314
|
amount?: string | undefined;
|
|
3315
|
-
percentage?:
|
|
3315
|
+
percentage?: string | undefined;
|
|
3316
3316
|
}[] | undefined;
|
|
3317
3317
|
} | null;
|
|
3318
3318
|
token_image_public_url: string | null;
|
|
@@ -3366,7 +3366,7 @@ declare const assetContract: {
|
|
|
3366
3366
|
social_links?: string[] | undefined;
|
|
3367
3367
|
vesting_recipients?: {
|
|
3368
3368
|
address: string;
|
|
3369
|
-
amount: string
|
|
3369
|
+
amount: string;
|
|
3370
3370
|
}[] | undefined;
|
|
3371
3371
|
} | null;
|
|
3372
3372
|
token_image_public_url: string | null;
|
|
@@ -3398,7 +3398,7 @@ declare const assetContract: {
|
|
|
3398
3398
|
social_links?: string[] | undefined;
|
|
3399
3399
|
vesting_recipients?: {
|
|
3400
3400
|
address: string;
|
|
3401
|
-
amount: string
|
|
3401
|
+
amount: string;
|
|
3402
3402
|
}[] | undefined;
|
|
3403
3403
|
} | null;
|
|
3404
3404
|
token_image_public_url: string | null;
|
|
@@ -3451,7 +3451,7 @@ declare const assetContract: {
|
|
|
3451
3451
|
vesting_recipients?: {
|
|
3452
3452
|
address: string;
|
|
3453
3453
|
amount?: string | undefined;
|
|
3454
|
-
percentage?:
|
|
3454
|
+
percentage?: string | undefined;
|
|
3455
3455
|
}[] | undefined;
|
|
3456
3456
|
} | null;
|
|
3457
3457
|
token_image_public_url: string | null;
|
|
@@ -3484,7 +3484,7 @@ declare const assetContract: {
|
|
|
3484
3484
|
vesting_recipients?: {
|
|
3485
3485
|
address: string;
|
|
3486
3486
|
amount?: string | undefined;
|
|
3487
|
-
percentage?:
|
|
3487
|
+
percentage?: string | undefined;
|
|
3488
3488
|
}[] | undefined;
|
|
3489
3489
|
} | null;
|
|
3490
3490
|
token_image_public_url: string | null;
|