@longdotxyz/shared 0.0.66 → 0.0.68

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.
@@ -40,7 +40,16 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
40
40
  description: z.ZodOptional<z.ZodString>;
41
41
  image_hash: z.ZodOptional<z.ZodString>;
42
42
  fee_receiver: z.ZodOptional<z.ZodString>;
43
- social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
43
+ social_links: z.ZodOptional<z.ZodArray<z.ZodObject<{
44
+ label: z.ZodString;
45
+ url: z.ZodString;
46
+ }, "strip", z.ZodTypeAny, {
47
+ label: string;
48
+ url: string;
49
+ }, {
50
+ label: string;
51
+ url: string;
52
+ }>, "many">>;
44
53
  vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
45
54
  address: z.ZodString;
46
55
  amount: z.ZodOptional<z.ZodString>;
@@ -66,7 +75,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
66
75
  description?: string | undefined;
67
76
  image_hash?: string | undefined;
68
77
  fee_receiver?: string | undefined;
69
- social_links?: string[] | undefined;
78
+ social_links?: {
79
+ label: string;
80
+ url: string;
81
+ }[] | undefined;
70
82
  vesting_recipients?: {
71
83
  address: string;
72
84
  amount: string;
@@ -76,7 +88,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
76
88
  description?: string | undefined;
77
89
  image_hash?: string | undefined;
78
90
  fee_receiver?: string | undefined;
79
- social_links?: string[] | undefined;
91
+ social_links?: {
92
+ label: string;
93
+ url: string;
94
+ }[] | undefined;
80
95
  vesting_recipients?: {
81
96
  address: string;
82
97
  amount?: string | undefined;
@@ -98,7 +113,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
98
113
  description?: string | undefined;
99
114
  image_hash?: string | undefined;
100
115
  fee_receiver?: string | undefined;
101
- social_links?: string[] | undefined;
116
+ social_links?: {
117
+ label: string;
118
+ url: string;
119
+ }[] | undefined;
102
120
  vesting_recipients?: {
103
121
  address: string;
104
122
  amount: string;
@@ -119,7 +137,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
119
137
  description?: string | undefined;
120
138
  image_hash?: string | undefined;
121
139
  fee_receiver?: string | undefined;
122
- social_links?: string[] | undefined;
140
+ social_links?: {
141
+ label: string;
142
+ url: string;
143
+ }[] | undefined;
123
144
  vesting_recipients?: {
124
145
  address: string;
125
146
  amount?: string | undefined;
@@ -164,7 +185,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
164
185
  description?: string | undefined;
165
186
  image_hash?: string | undefined;
166
187
  fee_receiver?: string | undefined;
167
- social_links?: string[] | undefined;
188
+ social_links?: {
189
+ label: string;
190
+ url: string;
191
+ }[] | undefined;
168
192
  vesting_recipients?: {
169
193
  address: string;
170
194
  amount: string;
@@ -208,7 +232,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
208
232
  description?: string | undefined;
209
233
  image_hash?: string | undefined;
210
234
  fee_receiver?: string | undefined;
211
- social_links?: string[] | undefined;
235
+ social_links?: {
236
+ label: string;
237
+ url: string;
238
+ }[] | undefined;
212
239
  vesting_recipients?: {
213
240
  address: string;
214
241
  amount?: string | undefined;
@@ -242,7 +269,16 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
242
269
  description: z.ZodOptional<z.ZodString>;
243
270
  image_hash: z.ZodOptional<z.ZodString>;
244
271
  fee_receiver: z.ZodOptional<z.ZodString>;
245
- social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
272
+ social_links: z.ZodOptional<z.ZodArray<z.ZodObject<{
273
+ label: z.ZodString;
274
+ url: z.ZodString;
275
+ }, "strip", z.ZodTypeAny, {
276
+ label: string;
277
+ url: string;
278
+ }, {
279
+ label: string;
280
+ url: string;
281
+ }>, "many">>;
246
282
  vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
247
283
  address: z.ZodString;
248
284
  amount: z.ZodOptional<z.ZodString>;
@@ -268,7 +304,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
268
304
  description?: string | undefined;
269
305
  image_hash?: string | undefined;
270
306
  fee_receiver?: string | undefined;
271
- social_links?: string[] | undefined;
307
+ social_links?: {
308
+ label: string;
309
+ url: string;
310
+ }[] | undefined;
272
311
  vesting_recipients?: {
273
312
  address: string;
274
313
  amount: string;
@@ -278,7 +317,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
278
317
  description?: string | undefined;
279
318
  image_hash?: string | undefined;
280
319
  fee_receiver?: string | undefined;
281
- social_links?: string[] | undefined;
320
+ social_links?: {
321
+ label: string;
322
+ url: string;
323
+ }[] | undefined;
282
324
  vesting_recipients?: {
283
325
  address: string;
284
326
  amount?: string | undefined;
@@ -301,7 +343,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
301
343
  description?: string | undefined;
302
344
  image_hash?: string | undefined;
303
345
  fee_receiver?: string | undefined;
304
- social_links?: string[] | undefined;
346
+ social_links?: {
347
+ label: string;
348
+ url: string;
349
+ }[] | undefined;
305
350
  vesting_recipients?: {
306
351
  address: string;
307
352
  amount: string;
@@ -323,7 +368,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
323
368
  description?: string | undefined;
324
369
  image_hash?: string | undefined;
325
370
  fee_receiver?: string | undefined;
326
- social_links?: string[] | undefined;
371
+ social_links?: {
372
+ label: string;
373
+ url: string;
374
+ }[] | undefined;
327
375
  vesting_recipients?: {
328
376
  address: string;
329
377
  amount?: string | undefined;
@@ -357,7 +405,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
357
405
  description?: string | undefined;
358
406
  image_hash?: string | undefined;
359
407
  fee_receiver?: string | undefined;
360
- social_links?: string[] | undefined;
408
+ social_links?: {
409
+ label: string;
410
+ url: string;
411
+ }[] | undefined;
361
412
  vesting_recipients?: {
362
413
  address: string;
363
414
  amount: string;
@@ -390,7 +441,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
390
441
  description?: string | undefined;
391
442
  image_hash?: string | undefined;
392
443
  fee_receiver?: string | undefined;
393
- social_links?: string[] | undefined;
444
+ social_links?: {
445
+ label: string;
446
+ url: string;
447
+ }[] | undefined;
394
448
  vesting_recipients?: {
395
449
  address: string;
396
450
  amount?: string | undefined;
@@ -444,7 +498,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
444
498
  description?: string | undefined;
445
499
  image_hash?: string | undefined;
446
500
  fee_receiver?: string | undefined;
447
- social_links?: string[] | undefined;
501
+ social_links?: {
502
+ label: string;
503
+ url: string;
504
+ }[] | undefined;
448
505
  vesting_recipients?: {
449
506
  address: string;
450
507
  amount: string;
@@ -477,7 +534,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
477
534
  description?: string | undefined;
478
535
  image_hash?: string | undefined;
479
536
  fee_receiver?: string | undefined;
480
- social_links?: string[] | undefined;
537
+ social_links?: {
538
+ label: string;
539
+ url: string;
540
+ }[] | undefined;
481
541
  vesting_recipients?: {
482
542
  address: string;
483
543
  amount: string;
@@ -529,7 +589,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
529
589
  description?: string | undefined;
530
590
  image_hash?: string | undefined;
531
591
  fee_receiver?: string | undefined;
532
- social_links?: string[] | undefined;
592
+ social_links?: {
593
+ label: string;
594
+ url: string;
595
+ }[] | undefined;
533
596
  vesting_recipients?: {
534
597
  address: string;
535
598
  amount?: string | undefined;
@@ -563,7 +626,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
563
626
  description?: string | undefined;
564
627
  image_hash?: string | undefined;
565
628
  fee_receiver?: string | undefined;
566
- social_links?: string[] | undefined;
629
+ social_links?: {
630
+ label: string;
631
+ url: string;
632
+ }[] | undefined;
567
633
  vesting_recipients?: {
568
634
  address: string;
569
635
  amount?: string | undefined;
@@ -618,7 +684,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
618
684
  description?: string | undefined;
619
685
  image_hash?: string | undefined;
620
686
  fee_receiver?: string | undefined;
621
- social_links?: string[] | undefined;
687
+ social_links?: {
688
+ label: string;
689
+ url: string;
690
+ }[] | undefined;
622
691
  vesting_recipients?: {
623
692
  address: string;
624
693
  amount: string;
@@ -651,7 +720,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
651
720
  description?: string | undefined;
652
721
  image_hash?: string | undefined;
653
722
  fee_receiver?: string | undefined;
654
- social_links?: string[] | undefined;
723
+ social_links?: {
724
+ label: string;
725
+ url: string;
726
+ }[] | undefined;
655
727
  vesting_recipients?: {
656
728
  address: string;
657
729
  amount: string;
@@ -703,7 +775,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
703
775
  description?: string | undefined;
704
776
  image_hash?: string | undefined;
705
777
  fee_receiver?: string | undefined;
706
- social_links?: string[] | undefined;
778
+ social_links?: {
779
+ label: string;
780
+ url: string;
781
+ }[] | undefined;
707
782
  vesting_recipients?: {
708
783
  address: string;
709
784
  amount?: string | undefined;
@@ -737,7 +812,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
737
812
  description?: string | undefined;
738
813
  image_hash?: string | undefined;
739
814
  fee_receiver?: string | undefined;
740
- social_links?: string[] | undefined;
815
+ social_links?: {
816
+ label: string;
817
+ url: string;
818
+ }[] | undefined;
741
819
  vesting_recipients?: {
742
820
  address: string;
743
821
  amount?: string | undefined;
@@ -817,7 +895,16 @@ declare const assetContract: {
817
895
  description: z.ZodOptional<z.ZodString>;
818
896
  image_hash: z.ZodOptional<z.ZodString>;
819
897
  fee_receiver: z.ZodOptional<z.ZodString>;
820
- social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
898
+ social_links: z.ZodOptional<z.ZodArray<z.ZodObject<{
899
+ label: z.ZodString;
900
+ url: z.ZodString;
901
+ }, "strip", z.ZodTypeAny, {
902
+ label: string;
903
+ url: string;
904
+ }, {
905
+ label: string;
906
+ url: string;
907
+ }>, "many">>;
821
908
  vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
822
909
  address: z.ZodString;
823
910
  amount: z.ZodOptional<z.ZodString>;
@@ -843,7 +930,10 @@ declare const assetContract: {
843
930
  description?: string | undefined;
844
931
  image_hash?: string | undefined;
845
932
  fee_receiver?: string | undefined;
846
- social_links?: string[] | undefined;
933
+ social_links?: {
934
+ label: string;
935
+ url: string;
936
+ }[] | undefined;
847
937
  vesting_recipients?: {
848
938
  address: string;
849
939
  amount: string;
@@ -853,7 +943,10 @@ declare const assetContract: {
853
943
  description?: string | undefined;
854
944
  image_hash?: string | undefined;
855
945
  fee_receiver?: string | undefined;
856
- social_links?: string[] | undefined;
946
+ social_links?: {
947
+ label: string;
948
+ url: string;
949
+ }[] | undefined;
857
950
  vesting_recipients?: {
858
951
  address: string;
859
952
  amount?: string | undefined;
@@ -875,7 +968,10 @@ declare const assetContract: {
875
968
  description?: string | undefined;
876
969
  image_hash?: string | undefined;
877
970
  fee_receiver?: string | undefined;
878
- social_links?: string[] | undefined;
971
+ social_links?: {
972
+ label: string;
973
+ url: string;
974
+ }[] | undefined;
879
975
  vesting_recipients?: {
880
976
  address: string;
881
977
  amount: string;
@@ -896,7 +992,10 @@ declare const assetContract: {
896
992
  description?: string | undefined;
897
993
  image_hash?: string | undefined;
898
994
  fee_receiver?: string | undefined;
899
- social_links?: string[] | undefined;
995
+ social_links?: {
996
+ label: string;
997
+ url: string;
998
+ }[] | undefined;
900
999
  vesting_recipients?: {
901
1000
  address: string;
902
1001
  amount?: string | undefined;
@@ -941,7 +1040,10 @@ declare const assetContract: {
941
1040
  description?: string | undefined;
942
1041
  image_hash?: string | undefined;
943
1042
  fee_receiver?: string | undefined;
944
- social_links?: string[] | undefined;
1043
+ social_links?: {
1044
+ label: string;
1045
+ url: string;
1046
+ }[] | undefined;
945
1047
  vesting_recipients?: {
946
1048
  address: string;
947
1049
  amount: string;
@@ -985,7 +1087,10 @@ declare const assetContract: {
985
1087
  description?: string | undefined;
986
1088
  image_hash?: string | undefined;
987
1089
  fee_receiver?: string | undefined;
988
- social_links?: string[] | undefined;
1090
+ social_links?: {
1091
+ label: string;
1092
+ url: string;
1093
+ }[] | undefined;
989
1094
  vesting_recipients?: {
990
1095
  address: string;
991
1096
  amount?: string | undefined;
@@ -1019,7 +1124,16 @@ declare const assetContract: {
1019
1124
  description: z.ZodOptional<z.ZodString>;
1020
1125
  image_hash: z.ZodOptional<z.ZodString>;
1021
1126
  fee_receiver: z.ZodOptional<z.ZodString>;
1022
- social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1127
+ social_links: z.ZodOptional<z.ZodArray<z.ZodObject<{
1128
+ label: z.ZodString;
1129
+ url: z.ZodString;
1130
+ }, "strip", z.ZodTypeAny, {
1131
+ label: string;
1132
+ url: string;
1133
+ }, {
1134
+ label: string;
1135
+ url: string;
1136
+ }>, "many">>;
1023
1137
  vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
1024
1138
  address: z.ZodString;
1025
1139
  amount: z.ZodOptional<z.ZodString>;
@@ -1045,7 +1159,10 @@ declare const assetContract: {
1045
1159
  description?: string | undefined;
1046
1160
  image_hash?: string | undefined;
1047
1161
  fee_receiver?: string | undefined;
1048
- social_links?: string[] | undefined;
1162
+ social_links?: {
1163
+ label: string;
1164
+ url: string;
1165
+ }[] | undefined;
1049
1166
  vesting_recipients?: {
1050
1167
  address: string;
1051
1168
  amount: string;
@@ -1055,7 +1172,10 @@ declare const assetContract: {
1055
1172
  description?: string | undefined;
1056
1173
  image_hash?: string | undefined;
1057
1174
  fee_receiver?: string | undefined;
1058
- social_links?: string[] | undefined;
1175
+ social_links?: {
1176
+ label: string;
1177
+ url: string;
1178
+ }[] | undefined;
1059
1179
  vesting_recipients?: {
1060
1180
  address: string;
1061
1181
  amount?: string | undefined;
@@ -1078,7 +1198,10 @@ declare const assetContract: {
1078
1198
  description?: string | undefined;
1079
1199
  image_hash?: string | undefined;
1080
1200
  fee_receiver?: string | undefined;
1081
- social_links?: string[] | undefined;
1201
+ social_links?: {
1202
+ label: string;
1203
+ url: string;
1204
+ }[] | undefined;
1082
1205
  vesting_recipients?: {
1083
1206
  address: string;
1084
1207
  amount: string;
@@ -1100,7 +1223,10 @@ declare const assetContract: {
1100
1223
  description?: string | undefined;
1101
1224
  image_hash?: string | undefined;
1102
1225
  fee_receiver?: string | undefined;
1103
- social_links?: string[] | undefined;
1226
+ social_links?: {
1227
+ label: string;
1228
+ url: string;
1229
+ }[] | undefined;
1104
1230
  vesting_recipients?: {
1105
1231
  address: string;
1106
1232
  amount?: string | undefined;
@@ -1134,7 +1260,10 @@ declare const assetContract: {
1134
1260
  description?: string | undefined;
1135
1261
  image_hash?: string | undefined;
1136
1262
  fee_receiver?: string | undefined;
1137
- social_links?: string[] | undefined;
1263
+ social_links?: {
1264
+ label: string;
1265
+ url: string;
1266
+ }[] | undefined;
1138
1267
  vesting_recipients?: {
1139
1268
  address: string;
1140
1269
  amount: string;
@@ -1167,7 +1296,10 @@ declare const assetContract: {
1167
1296
  description?: string | undefined;
1168
1297
  image_hash?: string | undefined;
1169
1298
  fee_receiver?: string | undefined;
1170
- social_links?: string[] | undefined;
1299
+ social_links?: {
1300
+ label: string;
1301
+ url: string;
1302
+ }[] | undefined;
1171
1303
  vesting_recipients?: {
1172
1304
  address: string;
1173
1305
  amount?: string | undefined;
@@ -1221,7 +1353,10 @@ declare const assetContract: {
1221
1353
  description?: string | undefined;
1222
1354
  image_hash?: string | undefined;
1223
1355
  fee_receiver?: string | undefined;
1224
- social_links?: string[] | undefined;
1356
+ social_links?: {
1357
+ label: string;
1358
+ url: string;
1359
+ }[] | undefined;
1225
1360
  vesting_recipients?: {
1226
1361
  address: string;
1227
1362
  amount: string;
@@ -1254,7 +1389,10 @@ declare const assetContract: {
1254
1389
  description?: string | undefined;
1255
1390
  image_hash?: string | undefined;
1256
1391
  fee_receiver?: string | undefined;
1257
- social_links?: string[] | undefined;
1392
+ social_links?: {
1393
+ label: string;
1394
+ url: string;
1395
+ }[] | undefined;
1258
1396
  vesting_recipients?: {
1259
1397
  address: string;
1260
1398
  amount: string;
@@ -1306,7 +1444,10 @@ declare const assetContract: {
1306
1444
  description?: string | undefined;
1307
1445
  image_hash?: string | undefined;
1308
1446
  fee_receiver?: string | undefined;
1309
- social_links?: string[] | undefined;
1447
+ social_links?: {
1448
+ label: string;
1449
+ url: string;
1450
+ }[] | undefined;
1310
1451
  vesting_recipients?: {
1311
1452
  address: string;
1312
1453
  amount?: string | undefined;
@@ -1340,7 +1481,10 @@ declare const assetContract: {
1340
1481
  description?: string | undefined;
1341
1482
  image_hash?: string | undefined;
1342
1483
  fee_receiver?: string | undefined;
1343
- social_links?: string[] | undefined;
1484
+ social_links?: {
1485
+ label: string;
1486
+ url: string;
1487
+ }[] | undefined;
1344
1488
  vesting_recipients?: {
1345
1489
  address: string;
1346
1490
  amount?: string | undefined;
@@ -1395,7 +1539,10 @@ declare const assetContract: {
1395
1539
  description?: string | undefined;
1396
1540
  image_hash?: string | undefined;
1397
1541
  fee_receiver?: string | undefined;
1398
- social_links?: string[] | undefined;
1542
+ social_links?: {
1543
+ label: string;
1544
+ url: string;
1545
+ }[] | undefined;
1399
1546
  vesting_recipients?: {
1400
1547
  address: string;
1401
1548
  amount: string;
@@ -1428,7 +1575,10 @@ declare const assetContract: {
1428
1575
  description?: string | undefined;
1429
1576
  image_hash?: string | undefined;
1430
1577
  fee_receiver?: string | undefined;
1431
- social_links?: string[] | undefined;
1578
+ social_links?: {
1579
+ label: string;
1580
+ url: string;
1581
+ }[] | undefined;
1432
1582
  vesting_recipients?: {
1433
1583
  address: string;
1434
1584
  amount: string;
@@ -1480,7 +1630,10 @@ declare const assetContract: {
1480
1630
  description?: string | undefined;
1481
1631
  image_hash?: string | undefined;
1482
1632
  fee_receiver?: string | undefined;
1483
- social_links?: string[] | undefined;
1633
+ social_links?: {
1634
+ label: string;
1635
+ url: string;
1636
+ }[] | undefined;
1484
1637
  vesting_recipients?: {
1485
1638
  address: string;
1486
1639
  amount?: string | undefined;
@@ -1514,7 +1667,10 @@ declare const assetContract: {
1514
1667
  description?: string | undefined;
1515
1668
  image_hash?: string | undefined;
1516
1669
  fee_receiver?: string | undefined;
1517
- social_links?: string[] | undefined;
1670
+ social_links?: {
1671
+ label: string;
1672
+ url: string;
1673
+ }[] | undefined;
1518
1674
  vesting_recipients?: {
1519
1675
  address: string;
1520
1676
  amount?: string | undefined;
@@ -1571,7 +1727,10 @@ declare const assetContract: {
1571
1727
  description?: string | undefined;
1572
1728
  image_hash?: string | undefined;
1573
1729
  fee_receiver?: string | undefined;
1574
- social_links?: string[] | undefined;
1730
+ social_links?: {
1731
+ label: string;
1732
+ url: string;
1733
+ }[] | undefined;
1575
1734
  vesting_recipients?: {
1576
1735
  address: string;
1577
1736
  amount: string;
@@ -1604,7 +1763,10 @@ declare const assetContract: {
1604
1763
  description?: string | undefined;
1605
1764
  image_hash?: string | undefined;
1606
1765
  fee_receiver?: string | undefined;
1607
- social_links?: string[] | undefined;
1766
+ social_links?: {
1767
+ label: string;
1768
+ url: string;
1769
+ }[] | undefined;
1608
1770
  vesting_recipients?: {
1609
1771
  address: string;
1610
1772
  amount: string;
@@ -1658,7 +1820,10 @@ declare const assetContract: {
1658
1820
  description?: string | undefined;
1659
1821
  image_hash?: string | undefined;
1660
1822
  fee_receiver?: string | undefined;
1661
- social_links?: string[] | undefined;
1823
+ social_links?: {
1824
+ label: string;
1825
+ url: string;
1826
+ }[] | undefined;
1662
1827
  vesting_recipients?: {
1663
1828
  address: string;
1664
1829
  amount?: string | undefined;
@@ -1692,7 +1857,10 @@ declare const assetContract: {
1692
1857
  description?: string | undefined;
1693
1858
  image_hash?: string | undefined;
1694
1859
  fee_receiver?: string | undefined;
1695
- social_links?: string[] | undefined;
1860
+ social_links?: {
1861
+ label: string;
1862
+ url: string;
1863
+ }[] | undefined;
1696
1864
  vesting_recipients?: {
1697
1865
  address: string;
1698
1866
  amount?: string | undefined;
@@ -1770,7 +1938,16 @@ declare const assetContract: {
1770
1938
  description: z.ZodOptional<z.ZodString>;
1771
1939
  image_hash: z.ZodOptional<z.ZodString>;
1772
1940
  fee_receiver: z.ZodOptional<z.ZodString>;
1773
- social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1941
+ social_links: z.ZodOptional<z.ZodArray<z.ZodObject<{
1942
+ label: z.ZodString;
1943
+ url: z.ZodString;
1944
+ }, "strip", z.ZodTypeAny, {
1945
+ label: string;
1946
+ url: string;
1947
+ }, {
1948
+ label: string;
1949
+ url: string;
1950
+ }>, "many">>;
1774
1951
  vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
1775
1952
  address: z.ZodString;
1776
1953
  amount: z.ZodOptional<z.ZodString>;
@@ -1796,7 +1973,10 @@ declare const assetContract: {
1796
1973
  description?: string | undefined;
1797
1974
  image_hash?: string | undefined;
1798
1975
  fee_receiver?: string | undefined;
1799
- social_links?: string[] | undefined;
1976
+ social_links?: {
1977
+ label: string;
1978
+ url: string;
1979
+ }[] | undefined;
1800
1980
  vesting_recipients?: {
1801
1981
  address: string;
1802
1982
  amount: string;
@@ -1806,7 +1986,10 @@ declare const assetContract: {
1806
1986
  description?: string | undefined;
1807
1987
  image_hash?: string | undefined;
1808
1988
  fee_receiver?: string | undefined;
1809
- social_links?: string[] | undefined;
1989
+ social_links?: {
1990
+ label: string;
1991
+ url: string;
1992
+ }[] | undefined;
1810
1993
  vesting_recipients?: {
1811
1994
  address: string;
1812
1995
  amount?: string | undefined;
@@ -1828,7 +2011,10 @@ declare const assetContract: {
1828
2011
  description?: string | undefined;
1829
2012
  image_hash?: string | undefined;
1830
2013
  fee_receiver?: string | undefined;
1831
- social_links?: string[] | undefined;
2014
+ social_links?: {
2015
+ label: string;
2016
+ url: string;
2017
+ }[] | undefined;
1832
2018
  vesting_recipients?: {
1833
2019
  address: string;
1834
2020
  amount: string;
@@ -1849,7 +2035,10 @@ declare const assetContract: {
1849
2035
  description?: string | undefined;
1850
2036
  image_hash?: string | undefined;
1851
2037
  fee_receiver?: string | undefined;
1852
- social_links?: string[] | undefined;
2038
+ social_links?: {
2039
+ label: string;
2040
+ url: string;
2041
+ }[] | undefined;
1853
2042
  vesting_recipients?: {
1854
2043
  address: string;
1855
2044
  amount?: string | undefined;
@@ -1894,7 +2083,10 @@ declare const assetContract: {
1894
2083
  description?: string | undefined;
1895
2084
  image_hash?: string | undefined;
1896
2085
  fee_receiver?: string | undefined;
1897
- social_links?: string[] | undefined;
2086
+ social_links?: {
2087
+ label: string;
2088
+ url: string;
2089
+ }[] | undefined;
1898
2090
  vesting_recipients?: {
1899
2091
  address: string;
1900
2092
  amount: string;
@@ -1938,7 +2130,10 @@ declare const assetContract: {
1938
2130
  description?: string | undefined;
1939
2131
  image_hash?: string | undefined;
1940
2132
  fee_receiver?: string | undefined;
1941
- social_links?: string[] | undefined;
2133
+ social_links?: {
2134
+ label: string;
2135
+ url: string;
2136
+ }[] | undefined;
1942
2137
  vesting_recipients?: {
1943
2138
  address: string;
1944
2139
  amount?: string | undefined;
@@ -1972,7 +2167,16 @@ declare const assetContract: {
1972
2167
  description: z.ZodOptional<z.ZodString>;
1973
2168
  image_hash: z.ZodOptional<z.ZodString>;
1974
2169
  fee_receiver: z.ZodOptional<z.ZodString>;
1975
- social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2170
+ social_links: z.ZodOptional<z.ZodArray<z.ZodObject<{
2171
+ label: z.ZodString;
2172
+ url: z.ZodString;
2173
+ }, "strip", z.ZodTypeAny, {
2174
+ label: string;
2175
+ url: string;
2176
+ }, {
2177
+ label: string;
2178
+ url: string;
2179
+ }>, "many">>;
1976
2180
  vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
1977
2181
  address: z.ZodString;
1978
2182
  amount: z.ZodOptional<z.ZodString>;
@@ -1998,7 +2202,10 @@ declare const assetContract: {
1998
2202
  description?: string | undefined;
1999
2203
  image_hash?: string | undefined;
2000
2204
  fee_receiver?: string | undefined;
2001
- social_links?: string[] | undefined;
2205
+ social_links?: {
2206
+ label: string;
2207
+ url: string;
2208
+ }[] | undefined;
2002
2209
  vesting_recipients?: {
2003
2210
  address: string;
2004
2211
  amount: string;
@@ -2008,7 +2215,10 @@ declare const assetContract: {
2008
2215
  description?: string | undefined;
2009
2216
  image_hash?: string | undefined;
2010
2217
  fee_receiver?: string | undefined;
2011
- social_links?: string[] | undefined;
2218
+ social_links?: {
2219
+ label: string;
2220
+ url: string;
2221
+ }[] | undefined;
2012
2222
  vesting_recipients?: {
2013
2223
  address: string;
2014
2224
  amount?: string | undefined;
@@ -2031,7 +2241,10 @@ declare const assetContract: {
2031
2241
  description?: string | undefined;
2032
2242
  image_hash?: string | undefined;
2033
2243
  fee_receiver?: string | undefined;
2034
- social_links?: string[] | undefined;
2244
+ social_links?: {
2245
+ label: string;
2246
+ url: string;
2247
+ }[] | undefined;
2035
2248
  vesting_recipients?: {
2036
2249
  address: string;
2037
2250
  amount: string;
@@ -2053,7 +2266,10 @@ declare const assetContract: {
2053
2266
  description?: string | undefined;
2054
2267
  image_hash?: string | undefined;
2055
2268
  fee_receiver?: string | undefined;
2056
- social_links?: string[] | undefined;
2269
+ social_links?: {
2270
+ label: string;
2271
+ url: string;
2272
+ }[] | undefined;
2057
2273
  vesting_recipients?: {
2058
2274
  address: string;
2059
2275
  amount?: string | undefined;
@@ -2087,7 +2303,10 @@ declare const assetContract: {
2087
2303
  description?: string | undefined;
2088
2304
  image_hash?: string | undefined;
2089
2305
  fee_receiver?: string | undefined;
2090
- social_links?: string[] | undefined;
2306
+ social_links?: {
2307
+ label: string;
2308
+ url: string;
2309
+ }[] | undefined;
2091
2310
  vesting_recipients?: {
2092
2311
  address: string;
2093
2312
  amount: string;
@@ -2120,7 +2339,10 @@ declare const assetContract: {
2120
2339
  description?: string | undefined;
2121
2340
  image_hash?: string | undefined;
2122
2341
  fee_receiver?: string | undefined;
2123
- social_links?: string[] | undefined;
2342
+ social_links?: {
2343
+ label: string;
2344
+ url: string;
2345
+ }[] | undefined;
2124
2346
  vesting_recipients?: {
2125
2347
  address: string;
2126
2348
  amount?: string | undefined;
@@ -2174,7 +2396,10 @@ declare const assetContract: {
2174
2396
  description?: string | undefined;
2175
2397
  image_hash?: string | undefined;
2176
2398
  fee_receiver?: string | undefined;
2177
- social_links?: string[] | undefined;
2399
+ social_links?: {
2400
+ label: string;
2401
+ url: string;
2402
+ }[] | undefined;
2178
2403
  vesting_recipients?: {
2179
2404
  address: string;
2180
2405
  amount: string;
@@ -2207,7 +2432,10 @@ declare const assetContract: {
2207
2432
  description?: string | undefined;
2208
2433
  image_hash?: string | undefined;
2209
2434
  fee_receiver?: string | undefined;
2210
- social_links?: string[] | undefined;
2435
+ social_links?: {
2436
+ label: string;
2437
+ url: string;
2438
+ }[] | undefined;
2211
2439
  vesting_recipients?: {
2212
2440
  address: string;
2213
2441
  amount: string;
@@ -2259,7 +2487,10 @@ declare const assetContract: {
2259
2487
  description?: string | undefined;
2260
2488
  image_hash?: string | undefined;
2261
2489
  fee_receiver?: string | undefined;
2262
- social_links?: string[] | undefined;
2490
+ social_links?: {
2491
+ label: string;
2492
+ url: string;
2493
+ }[] | undefined;
2263
2494
  vesting_recipients?: {
2264
2495
  address: string;
2265
2496
  amount?: string | undefined;
@@ -2293,7 +2524,10 @@ declare const assetContract: {
2293
2524
  description?: string | undefined;
2294
2525
  image_hash?: string | undefined;
2295
2526
  fee_receiver?: string | undefined;
2296
- social_links?: string[] | undefined;
2527
+ social_links?: {
2528
+ label: string;
2529
+ url: string;
2530
+ }[] | undefined;
2297
2531
  vesting_recipients?: {
2298
2532
  address: string;
2299
2533
  amount?: string | undefined;
@@ -2348,7 +2582,10 @@ declare const assetContract: {
2348
2582
  description?: string | undefined;
2349
2583
  image_hash?: string | undefined;
2350
2584
  fee_receiver?: string | undefined;
2351
- social_links?: string[] | undefined;
2585
+ social_links?: {
2586
+ label: string;
2587
+ url: string;
2588
+ }[] | undefined;
2352
2589
  vesting_recipients?: {
2353
2590
  address: string;
2354
2591
  amount: string;
@@ -2381,7 +2618,10 @@ declare const assetContract: {
2381
2618
  description?: string | undefined;
2382
2619
  image_hash?: string | undefined;
2383
2620
  fee_receiver?: string | undefined;
2384
- social_links?: string[] | undefined;
2621
+ social_links?: {
2622
+ label: string;
2623
+ url: string;
2624
+ }[] | undefined;
2385
2625
  vesting_recipients?: {
2386
2626
  address: string;
2387
2627
  amount: string;
@@ -2433,7 +2673,10 @@ declare const assetContract: {
2433
2673
  description?: string | undefined;
2434
2674
  image_hash?: string | undefined;
2435
2675
  fee_receiver?: string | undefined;
2436
- social_links?: string[] | undefined;
2676
+ social_links?: {
2677
+ label: string;
2678
+ url: string;
2679
+ }[] | undefined;
2437
2680
  vesting_recipients?: {
2438
2681
  address: string;
2439
2682
  amount?: string | undefined;
@@ -2467,7 +2710,10 @@ declare const assetContract: {
2467
2710
  description?: string | undefined;
2468
2711
  image_hash?: string | undefined;
2469
2712
  fee_receiver?: string | undefined;
2470
- social_links?: string[] | undefined;
2713
+ social_links?: {
2714
+ label: string;
2715
+ url: string;
2716
+ }[] | undefined;
2471
2717
  vesting_recipients?: {
2472
2718
  address: string;
2473
2719
  amount?: string | undefined;
@@ -2524,7 +2770,10 @@ declare const assetContract: {
2524
2770
  description?: string | undefined;
2525
2771
  image_hash?: string | undefined;
2526
2772
  fee_receiver?: string | undefined;
2527
- social_links?: string[] | undefined;
2773
+ social_links?: {
2774
+ label: string;
2775
+ url: string;
2776
+ }[] | undefined;
2528
2777
  vesting_recipients?: {
2529
2778
  address: string;
2530
2779
  amount: string;
@@ -2557,7 +2806,10 @@ declare const assetContract: {
2557
2806
  description?: string | undefined;
2558
2807
  image_hash?: string | undefined;
2559
2808
  fee_receiver?: string | undefined;
2560
- social_links?: string[] | undefined;
2809
+ social_links?: {
2810
+ label: string;
2811
+ url: string;
2812
+ }[] | undefined;
2561
2813
  vesting_recipients?: {
2562
2814
  address: string;
2563
2815
  amount: string;
@@ -2611,7 +2863,10 @@ declare const assetContract: {
2611
2863
  description?: string | undefined;
2612
2864
  image_hash?: string | undefined;
2613
2865
  fee_receiver?: string | undefined;
2614
- social_links?: string[] | undefined;
2866
+ social_links?: {
2867
+ label: string;
2868
+ url: string;
2869
+ }[] | undefined;
2615
2870
  vesting_recipients?: {
2616
2871
  address: string;
2617
2872
  amount?: string | undefined;
@@ -2645,7 +2900,10 @@ declare const assetContract: {
2645
2900
  description?: string | undefined;
2646
2901
  image_hash?: string | undefined;
2647
2902
  fee_receiver?: string | undefined;
2648
- social_links?: string[] | undefined;
2903
+ social_links?: {
2904
+ label: string;
2905
+ url: string;
2906
+ }[] | undefined;
2649
2907
  vesting_recipients?: {
2650
2908
  address: string;
2651
2909
  amount?: string | undefined;
@@ -2724,7 +2982,16 @@ declare const assetContract: {
2724
2982
  description: z.ZodOptional<z.ZodString>;
2725
2983
  image_hash: z.ZodOptional<z.ZodString>;
2726
2984
  fee_receiver: z.ZodOptional<z.ZodString>;
2727
- social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2985
+ social_links: z.ZodOptional<z.ZodArray<z.ZodObject<{
2986
+ label: z.ZodString;
2987
+ url: z.ZodString;
2988
+ }, "strip", z.ZodTypeAny, {
2989
+ label: string;
2990
+ url: string;
2991
+ }, {
2992
+ label: string;
2993
+ url: string;
2994
+ }>, "many">>;
2728
2995
  vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
2729
2996
  address: z.ZodString;
2730
2997
  amount: z.ZodOptional<z.ZodString>;
@@ -2750,7 +3017,10 @@ declare const assetContract: {
2750
3017
  description?: string | undefined;
2751
3018
  image_hash?: string | undefined;
2752
3019
  fee_receiver?: string | undefined;
2753
- social_links?: string[] | undefined;
3020
+ social_links?: {
3021
+ label: string;
3022
+ url: string;
3023
+ }[] | undefined;
2754
3024
  vesting_recipients?: {
2755
3025
  address: string;
2756
3026
  amount: string;
@@ -2760,7 +3030,10 @@ declare const assetContract: {
2760
3030
  description?: string | undefined;
2761
3031
  image_hash?: string | undefined;
2762
3032
  fee_receiver?: string | undefined;
2763
- social_links?: string[] | undefined;
3033
+ social_links?: {
3034
+ label: string;
3035
+ url: string;
3036
+ }[] | undefined;
2764
3037
  vesting_recipients?: {
2765
3038
  address: string;
2766
3039
  amount?: string | undefined;
@@ -2782,7 +3055,10 @@ declare const assetContract: {
2782
3055
  description?: string | undefined;
2783
3056
  image_hash?: string | undefined;
2784
3057
  fee_receiver?: string | undefined;
2785
- social_links?: string[] | undefined;
3058
+ social_links?: {
3059
+ label: string;
3060
+ url: string;
3061
+ }[] | undefined;
2786
3062
  vesting_recipients?: {
2787
3063
  address: string;
2788
3064
  amount: string;
@@ -2803,7 +3079,10 @@ declare const assetContract: {
2803
3079
  description?: string | undefined;
2804
3080
  image_hash?: string | undefined;
2805
3081
  fee_receiver?: string | undefined;
2806
- social_links?: string[] | undefined;
3082
+ social_links?: {
3083
+ label: string;
3084
+ url: string;
3085
+ }[] | undefined;
2807
3086
  vesting_recipients?: {
2808
3087
  address: string;
2809
3088
  amount?: string | undefined;
@@ -2848,7 +3127,10 @@ declare const assetContract: {
2848
3127
  description?: string | undefined;
2849
3128
  image_hash?: string | undefined;
2850
3129
  fee_receiver?: string | undefined;
2851
- social_links?: string[] | undefined;
3130
+ social_links?: {
3131
+ label: string;
3132
+ url: string;
3133
+ }[] | undefined;
2852
3134
  vesting_recipients?: {
2853
3135
  address: string;
2854
3136
  amount: string;
@@ -2892,7 +3174,10 @@ declare const assetContract: {
2892
3174
  description?: string | undefined;
2893
3175
  image_hash?: string | undefined;
2894
3176
  fee_receiver?: string | undefined;
2895
- social_links?: string[] | undefined;
3177
+ social_links?: {
3178
+ label: string;
3179
+ url: string;
3180
+ }[] | undefined;
2896
3181
  vesting_recipients?: {
2897
3182
  address: string;
2898
3183
  amount?: string | undefined;
@@ -2926,7 +3211,16 @@ declare const assetContract: {
2926
3211
  description: z.ZodOptional<z.ZodString>;
2927
3212
  image_hash: z.ZodOptional<z.ZodString>;
2928
3213
  fee_receiver: z.ZodOptional<z.ZodString>;
2929
- social_links: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3214
+ social_links: z.ZodOptional<z.ZodArray<z.ZodObject<{
3215
+ label: z.ZodString;
3216
+ url: z.ZodString;
3217
+ }, "strip", z.ZodTypeAny, {
3218
+ label: string;
3219
+ url: string;
3220
+ }, {
3221
+ label: string;
3222
+ url: string;
3223
+ }>, "many">>;
2930
3224
  vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
2931
3225
  address: z.ZodString;
2932
3226
  amount: z.ZodOptional<z.ZodString>;
@@ -2952,7 +3246,10 @@ declare const assetContract: {
2952
3246
  description?: string | undefined;
2953
3247
  image_hash?: string | undefined;
2954
3248
  fee_receiver?: string | undefined;
2955
- social_links?: string[] | undefined;
3249
+ social_links?: {
3250
+ label: string;
3251
+ url: string;
3252
+ }[] | undefined;
2956
3253
  vesting_recipients?: {
2957
3254
  address: string;
2958
3255
  amount: string;
@@ -2962,7 +3259,10 @@ declare const assetContract: {
2962
3259
  description?: string | undefined;
2963
3260
  image_hash?: string | undefined;
2964
3261
  fee_receiver?: string | undefined;
2965
- social_links?: string[] | undefined;
3262
+ social_links?: {
3263
+ label: string;
3264
+ url: string;
3265
+ }[] | undefined;
2966
3266
  vesting_recipients?: {
2967
3267
  address: string;
2968
3268
  amount?: string | undefined;
@@ -2985,7 +3285,10 @@ declare const assetContract: {
2985
3285
  description?: string | undefined;
2986
3286
  image_hash?: string | undefined;
2987
3287
  fee_receiver?: string | undefined;
2988
- social_links?: string[] | undefined;
3288
+ social_links?: {
3289
+ label: string;
3290
+ url: string;
3291
+ }[] | undefined;
2989
3292
  vesting_recipients?: {
2990
3293
  address: string;
2991
3294
  amount: string;
@@ -3007,7 +3310,10 @@ declare const assetContract: {
3007
3310
  description?: string | undefined;
3008
3311
  image_hash?: string | undefined;
3009
3312
  fee_receiver?: string | undefined;
3010
- social_links?: string[] | undefined;
3313
+ social_links?: {
3314
+ label: string;
3315
+ url: string;
3316
+ }[] | undefined;
3011
3317
  vesting_recipients?: {
3012
3318
  address: string;
3013
3319
  amount?: string | undefined;
@@ -3041,7 +3347,10 @@ declare const assetContract: {
3041
3347
  description?: string | undefined;
3042
3348
  image_hash?: string | undefined;
3043
3349
  fee_receiver?: string | undefined;
3044
- social_links?: string[] | undefined;
3350
+ social_links?: {
3351
+ label: string;
3352
+ url: string;
3353
+ }[] | undefined;
3045
3354
  vesting_recipients?: {
3046
3355
  address: string;
3047
3356
  amount: string;
@@ -3074,7 +3383,10 @@ declare const assetContract: {
3074
3383
  description?: string | undefined;
3075
3384
  image_hash?: string | undefined;
3076
3385
  fee_receiver?: string | undefined;
3077
- social_links?: string[] | undefined;
3386
+ social_links?: {
3387
+ label: string;
3388
+ url: string;
3389
+ }[] | undefined;
3078
3390
  vesting_recipients?: {
3079
3391
  address: string;
3080
3392
  amount?: string | undefined;
@@ -3128,7 +3440,10 @@ declare const assetContract: {
3128
3440
  description?: string | undefined;
3129
3441
  image_hash?: string | undefined;
3130
3442
  fee_receiver?: string | undefined;
3131
- social_links?: string[] | undefined;
3443
+ social_links?: {
3444
+ label: string;
3445
+ url: string;
3446
+ }[] | undefined;
3132
3447
  vesting_recipients?: {
3133
3448
  address: string;
3134
3449
  amount: string;
@@ -3161,7 +3476,10 @@ declare const assetContract: {
3161
3476
  description?: string | undefined;
3162
3477
  image_hash?: string | undefined;
3163
3478
  fee_receiver?: string | undefined;
3164
- social_links?: string[] | undefined;
3479
+ social_links?: {
3480
+ label: string;
3481
+ url: string;
3482
+ }[] | undefined;
3165
3483
  vesting_recipients?: {
3166
3484
  address: string;
3167
3485
  amount: string;
@@ -3213,7 +3531,10 @@ declare const assetContract: {
3213
3531
  description?: string | undefined;
3214
3532
  image_hash?: string | undefined;
3215
3533
  fee_receiver?: string | undefined;
3216
- social_links?: string[] | undefined;
3534
+ social_links?: {
3535
+ label: string;
3536
+ url: string;
3537
+ }[] | undefined;
3217
3538
  vesting_recipients?: {
3218
3539
  address: string;
3219
3540
  amount?: string | undefined;
@@ -3247,7 +3568,10 @@ declare const assetContract: {
3247
3568
  description?: string | undefined;
3248
3569
  image_hash?: string | undefined;
3249
3570
  fee_receiver?: string | undefined;
3250
- social_links?: string[] | undefined;
3571
+ social_links?: {
3572
+ label: string;
3573
+ url: string;
3574
+ }[] | undefined;
3251
3575
  vesting_recipients?: {
3252
3576
  address: string;
3253
3577
  amount?: string | undefined;
@@ -3302,7 +3626,10 @@ declare const assetContract: {
3302
3626
  description?: string | undefined;
3303
3627
  image_hash?: string | undefined;
3304
3628
  fee_receiver?: string | undefined;
3305
- social_links?: string[] | undefined;
3629
+ social_links?: {
3630
+ label: string;
3631
+ url: string;
3632
+ }[] | undefined;
3306
3633
  vesting_recipients?: {
3307
3634
  address: string;
3308
3635
  amount: string;
@@ -3335,7 +3662,10 @@ declare const assetContract: {
3335
3662
  description?: string | undefined;
3336
3663
  image_hash?: string | undefined;
3337
3664
  fee_receiver?: string | undefined;
3338
- social_links?: string[] | undefined;
3665
+ social_links?: {
3666
+ label: string;
3667
+ url: string;
3668
+ }[] | undefined;
3339
3669
  vesting_recipients?: {
3340
3670
  address: string;
3341
3671
  amount: string;
@@ -3387,7 +3717,10 @@ declare const assetContract: {
3387
3717
  description?: string | undefined;
3388
3718
  image_hash?: string | undefined;
3389
3719
  fee_receiver?: string | undefined;
3390
- social_links?: string[] | undefined;
3720
+ social_links?: {
3721
+ label: string;
3722
+ url: string;
3723
+ }[] | undefined;
3391
3724
  vesting_recipients?: {
3392
3725
  address: string;
3393
3726
  amount?: string | undefined;
@@ -3421,7 +3754,10 @@ declare const assetContract: {
3421
3754
  description?: string | undefined;
3422
3755
  image_hash?: string | undefined;
3423
3756
  fee_receiver?: string | undefined;
3424
- social_links?: string[] | undefined;
3757
+ social_links?: {
3758
+ label: string;
3759
+ url: string;
3760
+ }[] | undefined;
3425
3761
  vesting_recipients?: {
3426
3762
  address: string;
3427
3763
  amount?: string | undefined;
@@ -3478,7 +3814,10 @@ declare const assetContract: {
3478
3814
  description?: string | undefined;
3479
3815
  image_hash?: string | undefined;
3480
3816
  fee_receiver?: string | undefined;
3481
- social_links?: string[] | undefined;
3817
+ social_links?: {
3818
+ label: string;
3819
+ url: string;
3820
+ }[] | undefined;
3482
3821
  vesting_recipients?: {
3483
3822
  address: string;
3484
3823
  amount: string;
@@ -3511,7 +3850,10 @@ declare const assetContract: {
3511
3850
  description?: string | undefined;
3512
3851
  image_hash?: string | undefined;
3513
3852
  fee_receiver?: string | undefined;
3514
- social_links?: string[] | undefined;
3853
+ social_links?: {
3854
+ label: string;
3855
+ url: string;
3856
+ }[] | undefined;
3515
3857
  vesting_recipients?: {
3516
3858
  address: string;
3517
3859
  amount: string;
@@ -3565,7 +3907,10 @@ declare const assetContract: {
3565
3907
  description?: string | undefined;
3566
3908
  image_hash?: string | undefined;
3567
3909
  fee_receiver?: string | undefined;
3568
- social_links?: string[] | undefined;
3910
+ social_links?: {
3911
+ label: string;
3912
+ url: string;
3913
+ }[] | undefined;
3569
3914
  vesting_recipients?: {
3570
3915
  address: string;
3571
3916
  amount?: string | undefined;
@@ -3599,7 +3944,10 @@ declare const assetContract: {
3599
3944
  description?: string | undefined;
3600
3945
  image_hash?: string | undefined;
3601
3946
  fee_receiver?: string | undefined;
3602
- social_links?: string[] | undefined;
3947
+ social_links?: {
3948
+ label: string;
3949
+ url: string;
3950
+ }[] | undefined;
3603
3951
  vesting_recipients?: {
3604
3952
  address: string;
3605
3953
  amount?: string | undefined;