@longdotxyz/shared 0.0.36 → 0.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/contracts/asset.contract.d.ts +706 -24
- package/dist/contracts/asset.contract.js +59 -17
- package/dist/contracts/asset.contract.js.map +1 -1
- package/dist/contracts/auction-template.contract.js +9 -3
- package/dist/contracts/auction-template.contract.js.map +1 -1
- package/dist/contracts/auction.contract.js +27 -9
- package/dist/contracts/auction.contract.js.map +1 -1
- package/dist/contracts/index.d.ts +519 -6
- package/dist/contracts/quote.contract.js +36 -12
- package/dist/contracts/quote.contract.js.map +1 -1
- package/dist/types/constants.d.ts +1 -0
- package/dist/types/constants.js +1 -0
- package/dist/types/constants.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import z from "zod";
|
|
2
2
|
import { AssetStatus } from "../types";
|
|
3
|
-
declare const AssetResponse: z.ZodObject<{
|
|
3
|
+
declare const AssetResponse: z.ZodEffects<z.ZodObject<{
|
|
4
4
|
asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
5
5
|
asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
6
6
|
asset_creation_timestamp: z.ZodDate;
|
|
7
7
|
asset_current_pool: z.ZodString;
|
|
8
8
|
asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
9
|
+
asset_status: z.ZodDefault<z.ZodString>;
|
|
9
10
|
auction_pool: z.ZodObject<{
|
|
10
11
|
pool_current_price: z.ZodString;
|
|
11
12
|
pool_current_sqrt_price: z.ZodString;
|
|
@@ -370,6 +371,7 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
370
371
|
asset_creation_timestamp: Date;
|
|
371
372
|
asset_current_pool: string;
|
|
372
373
|
asset_migration_timestamp: Date | null;
|
|
374
|
+
asset_status: string;
|
|
373
375
|
auction_pool: {
|
|
374
376
|
pool_current_price: string;
|
|
375
377
|
pool_current_sqrt_price: string;
|
|
@@ -528,22 +530,189 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
528
530
|
integrator_address: string;
|
|
529
531
|
};
|
|
530
532
|
};
|
|
533
|
+
asset_status?: string | undefined;
|
|
534
|
+
}>, {
|
|
535
|
+
asset_status: string;
|
|
536
|
+
asset_address: `0x${string}`;
|
|
537
|
+
asset_numeraire_address: `0x${string}`;
|
|
538
|
+
asset_creation_timestamp: Date;
|
|
539
|
+
asset_current_pool: string;
|
|
540
|
+
asset_migration_timestamp: Date | null;
|
|
541
|
+
auction_pool: {
|
|
542
|
+
pool_current_price: string;
|
|
543
|
+
pool_current_sqrt_price: string;
|
|
544
|
+
pool_current_fdv: string;
|
|
545
|
+
pool_current_liquidity: string;
|
|
546
|
+
pool_current_tick: number;
|
|
547
|
+
pool_last_epoch: number;
|
|
548
|
+
pool_current_market_cap: string;
|
|
549
|
+
pool_current_fees_accrued: string;
|
|
550
|
+
pool_current_total_proceeds: string;
|
|
551
|
+
pool_current_total_tokens_sold: string;
|
|
552
|
+
pool_last_epoch_total_tokens_sold: string;
|
|
553
|
+
pool_current_sale_progress_percentage: number;
|
|
554
|
+
pool_config_max_proceeds: string;
|
|
555
|
+
pool_config_min_proceeds: string;
|
|
556
|
+
pool_id: string;
|
|
557
|
+
pool_address: `0x${string}`;
|
|
558
|
+
pool_config_starting_time: string;
|
|
559
|
+
pool_config_ending_time: string;
|
|
560
|
+
pool_migration_timestamp: Date | null;
|
|
561
|
+
pool_type: string;
|
|
562
|
+
base_token: {
|
|
563
|
+
token_address: `0x${string}`;
|
|
564
|
+
token_name: string;
|
|
565
|
+
token_description: string | null;
|
|
566
|
+
token_symbol: string;
|
|
567
|
+
token_uri_data: {
|
|
568
|
+
name?: string | undefined;
|
|
569
|
+
description?: string | undefined;
|
|
570
|
+
image_hash?: string | undefined;
|
|
571
|
+
fee_receiver?: string | undefined;
|
|
572
|
+
social_links?: string[] | undefined;
|
|
573
|
+
vesting_recipients?: {
|
|
574
|
+
address: string;
|
|
575
|
+
percentage: number;
|
|
576
|
+
}[] | undefined;
|
|
577
|
+
} | null;
|
|
578
|
+
token_image_public_url: string | null;
|
|
579
|
+
token_creator_address: `0x${string}`;
|
|
580
|
+
token_fee_receiver_address: `0x${string}`;
|
|
581
|
+
token_vesting_recipient_addresses: `0x${string}`[];
|
|
582
|
+
};
|
|
583
|
+
};
|
|
584
|
+
graduation_pool: {
|
|
585
|
+
pool_current_price: string;
|
|
586
|
+
pool_current_sqrt_price: string;
|
|
587
|
+
pool_current_fdv: string;
|
|
588
|
+
pool_current_liquidity: string;
|
|
589
|
+
pool_current_tick: number;
|
|
590
|
+
pool_current_market_cap: string;
|
|
591
|
+
pool_address: `0x${string}`;
|
|
592
|
+
pool_migration_timestamp: Date | null;
|
|
593
|
+
pool_type: string;
|
|
594
|
+
base_token: {
|
|
595
|
+
token_address: `0x${string}`;
|
|
596
|
+
token_name: string;
|
|
597
|
+
token_description: string | null;
|
|
598
|
+
token_symbol: string;
|
|
599
|
+
token_uri_data: {
|
|
600
|
+
name?: string | undefined;
|
|
601
|
+
description?: string | undefined;
|
|
602
|
+
image_hash?: string | undefined;
|
|
603
|
+
fee_receiver?: string | undefined;
|
|
604
|
+
social_links?: string[] | undefined;
|
|
605
|
+
vesting_recipients?: {
|
|
606
|
+
address: string;
|
|
607
|
+
percentage: number;
|
|
608
|
+
}[] | undefined;
|
|
609
|
+
} | null;
|
|
610
|
+
token_image_public_url: string | null;
|
|
611
|
+
token_creator_address: `0x${string}`;
|
|
612
|
+
token_fee_receiver_address: `0x${string}`;
|
|
613
|
+
token_vesting_recipient_addresses: `0x${string}`[];
|
|
614
|
+
integrator_address: string;
|
|
615
|
+
};
|
|
616
|
+
};
|
|
617
|
+
}, {
|
|
618
|
+
asset_address: string;
|
|
619
|
+
asset_numeraire_address: string;
|
|
620
|
+
asset_creation_timestamp: Date;
|
|
621
|
+
asset_current_pool: string;
|
|
622
|
+
asset_migration_timestamp: Date | null;
|
|
623
|
+
auction_pool: {
|
|
624
|
+
pool_current_price: string;
|
|
625
|
+
pool_current_sqrt_price: string;
|
|
626
|
+
pool_current_fdv: string;
|
|
627
|
+
pool_current_liquidity: string;
|
|
628
|
+
pool_current_tick: number;
|
|
629
|
+
pool_last_epoch: number;
|
|
630
|
+
pool_current_market_cap: string;
|
|
631
|
+
pool_current_fees_accrued: string;
|
|
632
|
+
pool_current_total_proceeds: string;
|
|
633
|
+
pool_current_total_tokens_sold: string;
|
|
634
|
+
pool_last_epoch_total_tokens_sold: string;
|
|
635
|
+
pool_current_sale_progress_percentage: number;
|
|
636
|
+
pool_config_max_proceeds: string;
|
|
637
|
+
pool_config_min_proceeds: string;
|
|
638
|
+
pool_id: string;
|
|
639
|
+
pool_address: string;
|
|
640
|
+
pool_config_starting_time: string;
|
|
641
|
+
pool_config_ending_time: string;
|
|
642
|
+
pool_migration_timestamp: Date | null;
|
|
643
|
+
pool_type: string;
|
|
644
|
+
base_token: {
|
|
645
|
+
token_address: string;
|
|
646
|
+
token_name: string;
|
|
647
|
+
token_description: string | null;
|
|
648
|
+
token_symbol: string;
|
|
649
|
+
token_uri_data: {
|
|
650
|
+
name?: string | undefined;
|
|
651
|
+
description?: string | undefined;
|
|
652
|
+
image_hash?: string | undefined;
|
|
653
|
+
fee_receiver?: string | undefined;
|
|
654
|
+
social_links?: string[] | undefined;
|
|
655
|
+
vesting_recipients?: {
|
|
656
|
+
address: string;
|
|
657
|
+
percentage: number;
|
|
658
|
+
}[] | undefined;
|
|
659
|
+
} | null;
|
|
660
|
+
token_image_public_url: string | null;
|
|
661
|
+
token_creator_address: string;
|
|
662
|
+
token_fee_receiver_address: string;
|
|
663
|
+
token_vesting_recipient_addresses: string[];
|
|
664
|
+
};
|
|
665
|
+
};
|
|
666
|
+
graduation_pool: {
|
|
667
|
+
pool_current_price: string;
|
|
668
|
+
pool_current_sqrt_price: string;
|
|
669
|
+
pool_current_fdv: string;
|
|
670
|
+
pool_current_liquidity: string;
|
|
671
|
+
pool_current_tick: number;
|
|
672
|
+
pool_current_market_cap: string;
|
|
673
|
+
pool_address: string;
|
|
674
|
+
pool_migration_timestamp: Date | null;
|
|
675
|
+
pool_type: string;
|
|
676
|
+
base_token: {
|
|
677
|
+
token_address: string;
|
|
678
|
+
token_name: string;
|
|
679
|
+
token_description: string | null;
|
|
680
|
+
token_symbol: string;
|
|
681
|
+
token_uri_data: {
|
|
682
|
+
name?: string | undefined;
|
|
683
|
+
description?: string | undefined;
|
|
684
|
+
image_hash?: string | undefined;
|
|
685
|
+
fee_receiver?: string | undefined;
|
|
686
|
+
social_links?: string[] | undefined;
|
|
687
|
+
vesting_recipients?: {
|
|
688
|
+
address: string;
|
|
689
|
+
percentage: number;
|
|
690
|
+
}[] | undefined;
|
|
691
|
+
} | null;
|
|
692
|
+
token_image_public_url: string | null;
|
|
693
|
+
token_creator_address: string;
|
|
694
|
+
token_fee_receiver_address: string;
|
|
695
|
+
token_vesting_recipient_addresses: string[];
|
|
696
|
+
integrator_address: string;
|
|
697
|
+
};
|
|
698
|
+
};
|
|
699
|
+
asset_status?: string | undefined;
|
|
531
700
|
}>;
|
|
532
701
|
declare const assetContract: {
|
|
533
702
|
listAssets: {
|
|
534
703
|
description: "List all assets for an integrator, with optional status filtering, pagination and default ordering by creation timestamp";
|
|
535
704
|
query: z.ZodObject<{
|
|
536
705
|
chainId: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
537
|
-
status: z.ZodDefault<z.ZodOptional<z.
|
|
706
|
+
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<[AssetStatus.ALL, AssetStatus.GRADUATED, AssetStatus.INCOMING, AssetStatus.LIVE]>>>;
|
|
538
707
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
539
708
|
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
540
709
|
}, "strip", z.ZodTypeAny, {
|
|
541
|
-
status: AssetStatus;
|
|
710
|
+
status: AssetStatus.LIVE | AssetStatus.GRADUATED | AssetStatus.INCOMING | AssetStatus.ALL;
|
|
542
711
|
chainId: number;
|
|
543
712
|
limit: number;
|
|
544
713
|
offset: number;
|
|
545
714
|
}, {
|
|
546
|
-
status?: AssetStatus | undefined;
|
|
715
|
+
status?: AssetStatus.LIVE | AssetStatus.GRADUATED | AssetStatus.INCOMING | AssetStatus.ALL | undefined;
|
|
547
716
|
chainId?: number | undefined;
|
|
548
717
|
limit?: number | undefined;
|
|
549
718
|
offset?: number | undefined;
|
|
@@ -552,12 +721,13 @@ declare const assetContract: {
|
|
|
552
721
|
path: "/assets/";
|
|
553
722
|
responses: {
|
|
554
723
|
200: z.ZodObject<{
|
|
555
|
-
result: z.ZodArray<z.ZodObject<{
|
|
724
|
+
result: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
556
725
|
asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
557
726
|
asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
558
727
|
asset_creation_timestamp: z.ZodDate;
|
|
559
728
|
asset_current_pool: z.ZodString;
|
|
560
729
|
asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
730
|
+
asset_status: z.ZodDefault<z.ZodString>;
|
|
561
731
|
auction_pool: z.ZodObject<{
|
|
562
732
|
pool_current_price: z.ZodString;
|
|
563
733
|
pool_current_sqrt_price: z.ZodString;
|
|
@@ -917,6 +1087,173 @@ declare const assetContract: {
|
|
|
917
1087
|
};
|
|
918
1088
|
}>;
|
|
919
1089
|
}, "strip", z.ZodTypeAny, {
|
|
1090
|
+
asset_address: `0x${string}`;
|
|
1091
|
+
asset_numeraire_address: `0x${string}`;
|
|
1092
|
+
asset_creation_timestamp: Date;
|
|
1093
|
+
asset_current_pool: string;
|
|
1094
|
+
asset_migration_timestamp: Date | null;
|
|
1095
|
+
asset_status: string;
|
|
1096
|
+
auction_pool: {
|
|
1097
|
+
pool_current_price: string;
|
|
1098
|
+
pool_current_sqrt_price: string;
|
|
1099
|
+
pool_current_fdv: string;
|
|
1100
|
+
pool_current_liquidity: string;
|
|
1101
|
+
pool_current_tick: number;
|
|
1102
|
+
pool_last_epoch: number;
|
|
1103
|
+
pool_current_market_cap: string;
|
|
1104
|
+
pool_current_fees_accrued: string;
|
|
1105
|
+
pool_current_total_proceeds: string;
|
|
1106
|
+
pool_current_total_tokens_sold: string;
|
|
1107
|
+
pool_last_epoch_total_tokens_sold: string;
|
|
1108
|
+
pool_current_sale_progress_percentage: number;
|
|
1109
|
+
pool_config_max_proceeds: string;
|
|
1110
|
+
pool_config_min_proceeds: string;
|
|
1111
|
+
pool_id: string;
|
|
1112
|
+
pool_address: `0x${string}`;
|
|
1113
|
+
pool_config_starting_time: string;
|
|
1114
|
+
pool_config_ending_time: string;
|
|
1115
|
+
pool_migration_timestamp: Date | null;
|
|
1116
|
+
pool_type: string;
|
|
1117
|
+
base_token: {
|
|
1118
|
+
token_address: `0x${string}`;
|
|
1119
|
+
token_name: string;
|
|
1120
|
+
token_description: string | null;
|
|
1121
|
+
token_symbol: string;
|
|
1122
|
+
token_uri_data: {
|
|
1123
|
+
name?: string | undefined;
|
|
1124
|
+
description?: string | undefined;
|
|
1125
|
+
image_hash?: string | undefined;
|
|
1126
|
+
fee_receiver?: string | undefined;
|
|
1127
|
+
social_links?: string[] | undefined;
|
|
1128
|
+
vesting_recipients?: {
|
|
1129
|
+
address: string;
|
|
1130
|
+
percentage: number;
|
|
1131
|
+
}[] | undefined;
|
|
1132
|
+
} | null;
|
|
1133
|
+
token_image_public_url: string | null;
|
|
1134
|
+
token_creator_address: `0x${string}`;
|
|
1135
|
+
token_fee_receiver_address: `0x${string}`;
|
|
1136
|
+
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1137
|
+
};
|
|
1138
|
+
};
|
|
1139
|
+
graduation_pool: {
|
|
1140
|
+
pool_current_price: string;
|
|
1141
|
+
pool_current_sqrt_price: string;
|
|
1142
|
+
pool_current_fdv: string;
|
|
1143
|
+
pool_current_liquidity: string;
|
|
1144
|
+
pool_current_tick: number;
|
|
1145
|
+
pool_current_market_cap: string;
|
|
1146
|
+
pool_address: `0x${string}`;
|
|
1147
|
+
pool_migration_timestamp: Date | null;
|
|
1148
|
+
pool_type: string;
|
|
1149
|
+
base_token: {
|
|
1150
|
+
token_address: `0x${string}`;
|
|
1151
|
+
token_name: string;
|
|
1152
|
+
token_description: string | null;
|
|
1153
|
+
token_symbol: string;
|
|
1154
|
+
token_uri_data: {
|
|
1155
|
+
name?: string | undefined;
|
|
1156
|
+
description?: string | undefined;
|
|
1157
|
+
image_hash?: string | undefined;
|
|
1158
|
+
fee_receiver?: string | undefined;
|
|
1159
|
+
social_links?: string[] | undefined;
|
|
1160
|
+
vesting_recipients?: {
|
|
1161
|
+
address: string;
|
|
1162
|
+
percentage: number;
|
|
1163
|
+
}[] | undefined;
|
|
1164
|
+
} | null;
|
|
1165
|
+
token_image_public_url: string | null;
|
|
1166
|
+
token_creator_address: `0x${string}`;
|
|
1167
|
+
token_fee_receiver_address: `0x${string}`;
|
|
1168
|
+
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1169
|
+
integrator_address: string;
|
|
1170
|
+
};
|
|
1171
|
+
};
|
|
1172
|
+
}, {
|
|
1173
|
+
asset_address: string;
|
|
1174
|
+
asset_numeraire_address: string;
|
|
1175
|
+
asset_creation_timestamp: Date;
|
|
1176
|
+
asset_current_pool: string;
|
|
1177
|
+
asset_migration_timestamp: Date | null;
|
|
1178
|
+
auction_pool: {
|
|
1179
|
+
pool_current_price: string;
|
|
1180
|
+
pool_current_sqrt_price: string;
|
|
1181
|
+
pool_current_fdv: string;
|
|
1182
|
+
pool_current_liquidity: string;
|
|
1183
|
+
pool_current_tick: number;
|
|
1184
|
+
pool_last_epoch: number;
|
|
1185
|
+
pool_current_market_cap: string;
|
|
1186
|
+
pool_current_fees_accrued: string;
|
|
1187
|
+
pool_current_total_proceeds: string;
|
|
1188
|
+
pool_current_total_tokens_sold: string;
|
|
1189
|
+
pool_last_epoch_total_tokens_sold: string;
|
|
1190
|
+
pool_current_sale_progress_percentage: number;
|
|
1191
|
+
pool_config_max_proceeds: string;
|
|
1192
|
+
pool_config_min_proceeds: string;
|
|
1193
|
+
pool_id: string;
|
|
1194
|
+
pool_address: string;
|
|
1195
|
+
pool_config_starting_time: string;
|
|
1196
|
+
pool_config_ending_time: string;
|
|
1197
|
+
pool_migration_timestamp: Date | null;
|
|
1198
|
+
pool_type: string;
|
|
1199
|
+
base_token: {
|
|
1200
|
+
token_address: string;
|
|
1201
|
+
token_name: string;
|
|
1202
|
+
token_description: string | null;
|
|
1203
|
+
token_symbol: string;
|
|
1204
|
+
token_uri_data: {
|
|
1205
|
+
name?: string | undefined;
|
|
1206
|
+
description?: string | undefined;
|
|
1207
|
+
image_hash?: string | undefined;
|
|
1208
|
+
fee_receiver?: string | undefined;
|
|
1209
|
+
social_links?: string[] | undefined;
|
|
1210
|
+
vesting_recipients?: {
|
|
1211
|
+
address: string;
|
|
1212
|
+
percentage: number;
|
|
1213
|
+
}[] | undefined;
|
|
1214
|
+
} | null;
|
|
1215
|
+
token_image_public_url: string | null;
|
|
1216
|
+
token_creator_address: string;
|
|
1217
|
+
token_fee_receiver_address: string;
|
|
1218
|
+
token_vesting_recipient_addresses: string[];
|
|
1219
|
+
};
|
|
1220
|
+
};
|
|
1221
|
+
graduation_pool: {
|
|
1222
|
+
pool_current_price: string;
|
|
1223
|
+
pool_current_sqrt_price: string;
|
|
1224
|
+
pool_current_fdv: string;
|
|
1225
|
+
pool_current_liquidity: string;
|
|
1226
|
+
pool_current_tick: number;
|
|
1227
|
+
pool_current_market_cap: string;
|
|
1228
|
+
pool_address: string;
|
|
1229
|
+
pool_migration_timestamp: Date | null;
|
|
1230
|
+
pool_type: string;
|
|
1231
|
+
base_token: {
|
|
1232
|
+
token_address: string;
|
|
1233
|
+
token_name: string;
|
|
1234
|
+
token_description: string | null;
|
|
1235
|
+
token_symbol: string;
|
|
1236
|
+
token_uri_data: {
|
|
1237
|
+
name?: string | undefined;
|
|
1238
|
+
description?: string | undefined;
|
|
1239
|
+
image_hash?: string | undefined;
|
|
1240
|
+
fee_receiver?: string | undefined;
|
|
1241
|
+
social_links?: string[] | undefined;
|
|
1242
|
+
vesting_recipients?: {
|
|
1243
|
+
address: string;
|
|
1244
|
+
percentage: number;
|
|
1245
|
+
}[] | undefined;
|
|
1246
|
+
} | null;
|
|
1247
|
+
token_image_public_url: string | null;
|
|
1248
|
+
token_creator_address: string;
|
|
1249
|
+
token_fee_receiver_address: string;
|
|
1250
|
+
token_vesting_recipient_addresses: string[];
|
|
1251
|
+
integrator_address: string;
|
|
1252
|
+
};
|
|
1253
|
+
};
|
|
1254
|
+
asset_status?: string | undefined;
|
|
1255
|
+
}>, {
|
|
1256
|
+
asset_status: string;
|
|
920
1257
|
asset_address: `0x${string}`;
|
|
921
1258
|
asset_numeraire_address: `0x${string}`;
|
|
922
1259
|
asset_creation_timestamp: Date;
|
|
@@ -1080,9 +1417,11 @@ declare const assetContract: {
|
|
|
1080
1417
|
integrator_address: string;
|
|
1081
1418
|
};
|
|
1082
1419
|
};
|
|
1420
|
+
asset_status?: string | undefined;
|
|
1083
1421
|
}>, "many">;
|
|
1084
1422
|
}, "strip", z.ZodTypeAny, {
|
|
1085
1423
|
result: {
|
|
1424
|
+
asset_status: string;
|
|
1086
1425
|
asset_address: `0x${string}`;
|
|
1087
1426
|
asset_numeraire_address: `0x${string}`;
|
|
1088
1427
|
asset_creation_timestamp: Date;
|
|
@@ -1248,6 +1587,7 @@ declare const assetContract: {
|
|
|
1248
1587
|
integrator_address: string;
|
|
1249
1588
|
};
|
|
1250
1589
|
};
|
|
1590
|
+
asset_status?: string | undefined;
|
|
1251
1591
|
}[];
|
|
1252
1592
|
}>;
|
|
1253
1593
|
};
|
|
@@ -1271,12 +1611,13 @@ declare const assetContract: {
|
|
|
1271
1611
|
path: "/assets/search";
|
|
1272
1612
|
responses: {
|
|
1273
1613
|
200: z.ZodObject<{
|
|
1274
|
-
result: z.ZodArray<z.ZodObject<{
|
|
1614
|
+
result: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
1275
1615
|
asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1276
1616
|
asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1277
1617
|
asset_creation_timestamp: z.ZodDate;
|
|
1278
1618
|
asset_current_pool: z.ZodString;
|
|
1279
1619
|
asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
1620
|
+
asset_status: z.ZodDefault<z.ZodString>;
|
|
1280
1621
|
auction_pool: z.ZodObject<{
|
|
1281
1622
|
pool_current_price: z.ZodString;
|
|
1282
1623
|
pool_current_sqrt_price: z.ZodString;
|
|
@@ -1547,9 +1888,156 @@ declare const assetContract: {
|
|
|
1547
1888
|
token_creator_address: `0x${string}`;
|
|
1548
1889
|
token_fee_receiver_address: `0x${string}`;
|
|
1549
1890
|
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1550
|
-
integrator_address: string;
|
|
1551
|
-
}, {
|
|
1552
|
-
token_address: string;
|
|
1891
|
+
integrator_address: string;
|
|
1892
|
+
}, {
|
|
1893
|
+
token_address: string;
|
|
1894
|
+
token_name: string;
|
|
1895
|
+
token_description: string | null;
|
|
1896
|
+
token_symbol: string;
|
|
1897
|
+
token_uri_data: {
|
|
1898
|
+
name?: string | undefined;
|
|
1899
|
+
description?: string | undefined;
|
|
1900
|
+
image_hash?: string | undefined;
|
|
1901
|
+
fee_receiver?: string | undefined;
|
|
1902
|
+
social_links?: string[] | undefined;
|
|
1903
|
+
vesting_recipients?: {
|
|
1904
|
+
address: string;
|
|
1905
|
+
percentage: number;
|
|
1906
|
+
}[] | undefined;
|
|
1907
|
+
} | null;
|
|
1908
|
+
token_image_public_url: string | null;
|
|
1909
|
+
token_creator_address: string;
|
|
1910
|
+
token_fee_receiver_address: string;
|
|
1911
|
+
token_vesting_recipient_addresses: string[];
|
|
1912
|
+
integrator_address: string;
|
|
1913
|
+
}>;
|
|
1914
|
+
}, "strip", z.ZodTypeAny, {
|
|
1915
|
+
pool_current_price: string;
|
|
1916
|
+
pool_current_sqrt_price: string;
|
|
1917
|
+
pool_current_fdv: string;
|
|
1918
|
+
pool_current_liquidity: string;
|
|
1919
|
+
pool_current_tick: number;
|
|
1920
|
+
pool_current_market_cap: string;
|
|
1921
|
+
pool_address: `0x${string}`;
|
|
1922
|
+
pool_migration_timestamp: Date | null;
|
|
1923
|
+
pool_type: string;
|
|
1924
|
+
base_token: {
|
|
1925
|
+
token_address: `0x${string}`;
|
|
1926
|
+
token_name: string;
|
|
1927
|
+
token_description: string | null;
|
|
1928
|
+
token_symbol: string;
|
|
1929
|
+
token_uri_data: {
|
|
1930
|
+
name?: string | undefined;
|
|
1931
|
+
description?: string | undefined;
|
|
1932
|
+
image_hash?: string | undefined;
|
|
1933
|
+
fee_receiver?: string | undefined;
|
|
1934
|
+
social_links?: string[] | undefined;
|
|
1935
|
+
vesting_recipients?: {
|
|
1936
|
+
address: string;
|
|
1937
|
+
percentage: number;
|
|
1938
|
+
}[] | undefined;
|
|
1939
|
+
} | null;
|
|
1940
|
+
token_image_public_url: string | null;
|
|
1941
|
+
token_creator_address: `0x${string}`;
|
|
1942
|
+
token_fee_receiver_address: `0x${string}`;
|
|
1943
|
+
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1944
|
+
integrator_address: string;
|
|
1945
|
+
};
|
|
1946
|
+
}, {
|
|
1947
|
+
pool_current_price: string;
|
|
1948
|
+
pool_current_sqrt_price: string;
|
|
1949
|
+
pool_current_fdv: string;
|
|
1950
|
+
pool_current_liquidity: string;
|
|
1951
|
+
pool_current_tick: number;
|
|
1952
|
+
pool_current_market_cap: string;
|
|
1953
|
+
pool_address: string;
|
|
1954
|
+
pool_migration_timestamp: Date | null;
|
|
1955
|
+
pool_type: string;
|
|
1956
|
+
base_token: {
|
|
1957
|
+
token_address: string;
|
|
1958
|
+
token_name: string;
|
|
1959
|
+
token_description: string | null;
|
|
1960
|
+
token_symbol: string;
|
|
1961
|
+
token_uri_data: {
|
|
1962
|
+
name?: string | undefined;
|
|
1963
|
+
description?: string | undefined;
|
|
1964
|
+
image_hash?: string | undefined;
|
|
1965
|
+
fee_receiver?: string | undefined;
|
|
1966
|
+
social_links?: string[] | undefined;
|
|
1967
|
+
vesting_recipients?: {
|
|
1968
|
+
address: string;
|
|
1969
|
+
percentage: number;
|
|
1970
|
+
}[] | undefined;
|
|
1971
|
+
} | null;
|
|
1972
|
+
token_image_public_url: string | null;
|
|
1973
|
+
token_creator_address: string;
|
|
1974
|
+
token_fee_receiver_address: string;
|
|
1975
|
+
token_vesting_recipient_addresses: string[];
|
|
1976
|
+
integrator_address: string;
|
|
1977
|
+
};
|
|
1978
|
+
}>;
|
|
1979
|
+
}, "strip", z.ZodTypeAny, {
|
|
1980
|
+
asset_address: `0x${string}`;
|
|
1981
|
+
asset_numeraire_address: `0x${string}`;
|
|
1982
|
+
asset_creation_timestamp: Date;
|
|
1983
|
+
asset_current_pool: string;
|
|
1984
|
+
asset_migration_timestamp: Date | null;
|
|
1985
|
+
asset_status: string;
|
|
1986
|
+
auction_pool: {
|
|
1987
|
+
pool_current_price: string;
|
|
1988
|
+
pool_current_sqrt_price: string;
|
|
1989
|
+
pool_current_fdv: string;
|
|
1990
|
+
pool_current_liquidity: string;
|
|
1991
|
+
pool_current_tick: number;
|
|
1992
|
+
pool_last_epoch: number;
|
|
1993
|
+
pool_current_market_cap: string;
|
|
1994
|
+
pool_current_fees_accrued: string;
|
|
1995
|
+
pool_current_total_proceeds: string;
|
|
1996
|
+
pool_current_total_tokens_sold: string;
|
|
1997
|
+
pool_last_epoch_total_tokens_sold: string;
|
|
1998
|
+
pool_current_sale_progress_percentage: number;
|
|
1999
|
+
pool_config_max_proceeds: string;
|
|
2000
|
+
pool_config_min_proceeds: string;
|
|
2001
|
+
pool_id: string;
|
|
2002
|
+
pool_address: `0x${string}`;
|
|
2003
|
+
pool_config_starting_time: string;
|
|
2004
|
+
pool_config_ending_time: string;
|
|
2005
|
+
pool_migration_timestamp: Date | null;
|
|
2006
|
+
pool_type: string;
|
|
2007
|
+
base_token: {
|
|
2008
|
+
token_address: `0x${string}`;
|
|
2009
|
+
token_name: string;
|
|
2010
|
+
token_description: string | null;
|
|
2011
|
+
token_symbol: string;
|
|
2012
|
+
token_uri_data: {
|
|
2013
|
+
name?: string | undefined;
|
|
2014
|
+
description?: string | undefined;
|
|
2015
|
+
image_hash?: string | undefined;
|
|
2016
|
+
fee_receiver?: string | undefined;
|
|
2017
|
+
social_links?: string[] | undefined;
|
|
2018
|
+
vesting_recipients?: {
|
|
2019
|
+
address: string;
|
|
2020
|
+
percentage: number;
|
|
2021
|
+
}[] | undefined;
|
|
2022
|
+
} | null;
|
|
2023
|
+
token_image_public_url: string | null;
|
|
2024
|
+
token_creator_address: `0x${string}`;
|
|
2025
|
+
token_fee_receiver_address: `0x${string}`;
|
|
2026
|
+
token_vesting_recipient_addresses: `0x${string}`[];
|
|
2027
|
+
};
|
|
2028
|
+
};
|
|
2029
|
+
graduation_pool: {
|
|
2030
|
+
pool_current_price: string;
|
|
2031
|
+
pool_current_sqrt_price: string;
|
|
2032
|
+
pool_current_fdv: string;
|
|
2033
|
+
pool_current_liquidity: string;
|
|
2034
|
+
pool_current_tick: number;
|
|
2035
|
+
pool_current_market_cap: string;
|
|
2036
|
+
pool_address: `0x${string}`;
|
|
2037
|
+
pool_migration_timestamp: Date | null;
|
|
2038
|
+
pool_type: string;
|
|
2039
|
+
base_token: {
|
|
2040
|
+
token_address: `0x${string}`;
|
|
1553
2041
|
token_name: string;
|
|
1554
2042
|
token_description: string | null;
|
|
1555
2043
|
token_symbol: string;
|
|
@@ -1565,23 +2053,41 @@ declare const assetContract: {
|
|
|
1565
2053
|
}[] | undefined;
|
|
1566
2054
|
} | null;
|
|
1567
2055
|
token_image_public_url: string | null;
|
|
1568
|
-
token_creator_address: string
|
|
1569
|
-
token_fee_receiver_address: string
|
|
1570
|
-
token_vesting_recipient_addresses: string[];
|
|
2056
|
+
token_creator_address: `0x${string}`;
|
|
2057
|
+
token_fee_receiver_address: `0x${string}`;
|
|
2058
|
+
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1571
2059
|
integrator_address: string;
|
|
1572
|
-
}
|
|
1573
|
-
}
|
|
2060
|
+
};
|
|
2061
|
+
};
|
|
2062
|
+
}, {
|
|
2063
|
+
asset_address: string;
|
|
2064
|
+
asset_numeraire_address: string;
|
|
2065
|
+
asset_creation_timestamp: Date;
|
|
2066
|
+
asset_current_pool: string;
|
|
2067
|
+
asset_migration_timestamp: Date | null;
|
|
2068
|
+
auction_pool: {
|
|
1574
2069
|
pool_current_price: string;
|
|
1575
2070
|
pool_current_sqrt_price: string;
|
|
1576
2071
|
pool_current_fdv: string;
|
|
1577
2072
|
pool_current_liquidity: string;
|
|
1578
2073
|
pool_current_tick: number;
|
|
2074
|
+
pool_last_epoch: number;
|
|
1579
2075
|
pool_current_market_cap: string;
|
|
1580
|
-
|
|
2076
|
+
pool_current_fees_accrued: string;
|
|
2077
|
+
pool_current_total_proceeds: string;
|
|
2078
|
+
pool_current_total_tokens_sold: string;
|
|
2079
|
+
pool_last_epoch_total_tokens_sold: string;
|
|
2080
|
+
pool_current_sale_progress_percentage: number;
|
|
2081
|
+
pool_config_max_proceeds: string;
|
|
2082
|
+
pool_config_min_proceeds: string;
|
|
2083
|
+
pool_id: string;
|
|
2084
|
+
pool_address: string;
|
|
2085
|
+
pool_config_starting_time: string;
|
|
2086
|
+
pool_config_ending_time: string;
|
|
1581
2087
|
pool_migration_timestamp: Date | null;
|
|
1582
2088
|
pool_type: string;
|
|
1583
2089
|
base_token: {
|
|
1584
|
-
token_address:
|
|
2090
|
+
token_address: string;
|
|
1585
2091
|
token_name: string;
|
|
1586
2092
|
token_description: string | null;
|
|
1587
2093
|
token_symbol: string;
|
|
@@ -1597,12 +2103,12 @@ declare const assetContract: {
|
|
|
1597
2103
|
}[] | undefined;
|
|
1598
2104
|
} | null;
|
|
1599
2105
|
token_image_public_url: string | null;
|
|
1600
|
-
token_creator_address:
|
|
1601
|
-
token_fee_receiver_address:
|
|
1602
|
-
token_vesting_recipient_addresses:
|
|
1603
|
-
integrator_address: string;
|
|
2106
|
+
token_creator_address: string;
|
|
2107
|
+
token_fee_receiver_address: string;
|
|
2108
|
+
token_vesting_recipient_addresses: string[];
|
|
1604
2109
|
};
|
|
1605
|
-
}
|
|
2110
|
+
};
|
|
2111
|
+
graduation_pool: {
|
|
1606
2112
|
pool_current_price: string;
|
|
1607
2113
|
pool_current_sqrt_price: string;
|
|
1608
2114
|
pool_current_fdv: string;
|
|
@@ -1634,8 +2140,10 @@ declare const assetContract: {
|
|
|
1634
2140
|
token_vesting_recipient_addresses: string[];
|
|
1635
2141
|
integrator_address: string;
|
|
1636
2142
|
};
|
|
1637
|
-
}
|
|
1638
|
-
|
|
2143
|
+
};
|
|
2144
|
+
asset_status?: string | undefined;
|
|
2145
|
+
}>, {
|
|
2146
|
+
asset_status: string;
|
|
1639
2147
|
asset_address: `0x${string}`;
|
|
1640
2148
|
asset_numeraire_address: `0x${string}`;
|
|
1641
2149
|
asset_creation_timestamp: Date;
|
|
@@ -1799,9 +2307,11 @@ declare const assetContract: {
|
|
|
1799
2307
|
integrator_address: string;
|
|
1800
2308
|
};
|
|
1801
2309
|
};
|
|
2310
|
+
asset_status?: string | undefined;
|
|
1802
2311
|
}>, "many">;
|
|
1803
2312
|
}, "strip", z.ZodTypeAny, {
|
|
1804
2313
|
result: {
|
|
2314
|
+
asset_status: string;
|
|
1805
2315
|
asset_address: `0x${string}`;
|
|
1806
2316
|
asset_numeraire_address: `0x${string}`;
|
|
1807
2317
|
asset_creation_timestamp: Date;
|
|
@@ -1967,6 +2477,7 @@ declare const assetContract: {
|
|
|
1967
2477
|
integrator_address: string;
|
|
1968
2478
|
};
|
|
1969
2479
|
};
|
|
2480
|
+
asset_status?: string | undefined;
|
|
1970
2481
|
}[];
|
|
1971
2482
|
}>;
|
|
1972
2483
|
};
|
|
@@ -1991,12 +2502,13 @@ declare const assetContract: {
|
|
|
1991
2502
|
path: "/assets/:assetAddress";
|
|
1992
2503
|
responses: {
|
|
1993
2504
|
200: z.ZodObject<{
|
|
1994
|
-
result: z.ZodObject<{
|
|
2505
|
+
result: z.ZodEffects<z.ZodObject<{
|
|
1995
2506
|
asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1996
2507
|
asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1997
2508
|
asset_creation_timestamp: z.ZodDate;
|
|
1998
2509
|
asset_current_pool: z.ZodString;
|
|
1999
2510
|
asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
2511
|
+
asset_status: z.ZodDefault<z.ZodString>;
|
|
2000
2512
|
auction_pool: z.ZodObject<{
|
|
2001
2513
|
pool_current_price: z.ZodString;
|
|
2002
2514
|
pool_current_sqrt_price: z.ZodString;
|
|
@@ -2356,6 +2868,173 @@ declare const assetContract: {
|
|
|
2356
2868
|
};
|
|
2357
2869
|
}>;
|
|
2358
2870
|
}, "strip", z.ZodTypeAny, {
|
|
2871
|
+
asset_address: `0x${string}`;
|
|
2872
|
+
asset_numeraire_address: `0x${string}`;
|
|
2873
|
+
asset_creation_timestamp: Date;
|
|
2874
|
+
asset_current_pool: string;
|
|
2875
|
+
asset_migration_timestamp: Date | null;
|
|
2876
|
+
asset_status: string;
|
|
2877
|
+
auction_pool: {
|
|
2878
|
+
pool_current_price: string;
|
|
2879
|
+
pool_current_sqrt_price: string;
|
|
2880
|
+
pool_current_fdv: string;
|
|
2881
|
+
pool_current_liquidity: string;
|
|
2882
|
+
pool_current_tick: number;
|
|
2883
|
+
pool_last_epoch: number;
|
|
2884
|
+
pool_current_market_cap: string;
|
|
2885
|
+
pool_current_fees_accrued: string;
|
|
2886
|
+
pool_current_total_proceeds: string;
|
|
2887
|
+
pool_current_total_tokens_sold: string;
|
|
2888
|
+
pool_last_epoch_total_tokens_sold: string;
|
|
2889
|
+
pool_current_sale_progress_percentage: number;
|
|
2890
|
+
pool_config_max_proceeds: string;
|
|
2891
|
+
pool_config_min_proceeds: string;
|
|
2892
|
+
pool_id: string;
|
|
2893
|
+
pool_address: `0x${string}`;
|
|
2894
|
+
pool_config_starting_time: string;
|
|
2895
|
+
pool_config_ending_time: string;
|
|
2896
|
+
pool_migration_timestamp: Date | null;
|
|
2897
|
+
pool_type: string;
|
|
2898
|
+
base_token: {
|
|
2899
|
+
token_address: `0x${string}`;
|
|
2900
|
+
token_name: string;
|
|
2901
|
+
token_description: string | null;
|
|
2902
|
+
token_symbol: string;
|
|
2903
|
+
token_uri_data: {
|
|
2904
|
+
name?: string | undefined;
|
|
2905
|
+
description?: string | undefined;
|
|
2906
|
+
image_hash?: string | undefined;
|
|
2907
|
+
fee_receiver?: string | undefined;
|
|
2908
|
+
social_links?: string[] | undefined;
|
|
2909
|
+
vesting_recipients?: {
|
|
2910
|
+
address: string;
|
|
2911
|
+
percentage: number;
|
|
2912
|
+
}[] | undefined;
|
|
2913
|
+
} | null;
|
|
2914
|
+
token_image_public_url: string | null;
|
|
2915
|
+
token_creator_address: `0x${string}`;
|
|
2916
|
+
token_fee_receiver_address: `0x${string}`;
|
|
2917
|
+
token_vesting_recipient_addresses: `0x${string}`[];
|
|
2918
|
+
};
|
|
2919
|
+
};
|
|
2920
|
+
graduation_pool: {
|
|
2921
|
+
pool_current_price: string;
|
|
2922
|
+
pool_current_sqrt_price: string;
|
|
2923
|
+
pool_current_fdv: string;
|
|
2924
|
+
pool_current_liquidity: string;
|
|
2925
|
+
pool_current_tick: number;
|
|
2926
|
+
pool_current_market_cap: string;
|
|
2927
|
+
pool_address: `0x${string}`;
|
|
2928
|
+
pool_migration_timestamp: Date | null;
|
|
2929
|
+
pool_type: string;
|
|
2930
|
+
base_token: {
|
|
2931
|
+
token_address: `0x${string}`;
|
|
2932
|
+
token_name: string;
|
|
2933
|
+
token_description: string | null;
|
|
2934
|
+
token_symbol: string;
|
|
2935
|
+
token_uri_data: {
|
|
2936
|
+
name?: string | undefined;
|
|
2937
|
+
description?: string | undefined;
|
|
2938
|
+
image_hash?: string | undefined;
|
|
2939
|
+
fee_receiver?: string | undefined;
|
|
2940
|
+
social_links?: string[] | undefined;
|
|
2941
|
+
vesting_recipients?: {
|
|
2942
|
+
address: string;
|
|
2943
|
+
percentage: number;
|
|
2944
|
+
}[] | undefined;
|
|
2945
|
+
} | null;
|
|
2946
|
+
token_image_public_url: string | null;
|
|
2947
|
+
token_creator_address: `0x${string}`;
|
|
2948
|
+
token_fee_receiver_address: `0x${string}`;
|
|
2949
|
+
token_vesting_recipient_addresses: `0x${string}`[];
|
|
2950
|
+
integrator_address: string;
|
|
2951
|
+
};
|
|
2952
|
+
};
|
|
2953
|
+
}, {
|
|
2954
|
+
asset_address: string;
|
|
2955
|
+
asset_numeraire_address: string;
|
|
2956
|
+
asset_creation_timestamp: Date;
|
|
2957
|
+
asset_current_pool: string;
|
|
2958
|
+
asset_migration_timestamp: Date | null;
|
|
2959
|
+
auction_pool: {
|
|
2960
|
+
pool_current_price: string;
|
|
2961
|
+
pool_current_sqrt_price: string;
|
|
2962
|
+
pool_current_fdv: string;
|
|
2963
|
+
pool_current_liquidity: string;
|
|
2964
|
+
pool_current_tick: number;
|
|
2965
|
+
pool_last_epoch: number;
|
|
2966
|
+
pool_current_market_cap: string;
|
|
2967
|
+
pool_current_fees_accrued: string;
|
|
2968
|
+
pool_current_total_proceeds: string;
|
|
2969
|
+
pool_current_total_tokens_sold: string;
|
|
2970
|
+
pool_last_epoch_total_tokens_sold: string;
|
|
2971
|
+
pool_current_sale_progress_percentage: number;
|
|
2972
|
+
pool_config_max_proceeds: string;
|
|
2973
|
+
pool_config_min_proceeds: string;
|
|
2974
|
+
pool_id: string;
|
|
2975
|
+
pool_address: string;
|
|
2976
|
+
pool_config_starting_time: string;
|
|
2977
|
+
pool_config_ending_time: string;
|
|
2978
|
+
pool_migration_timestamp: Date | null;
|
|
2979
|
+
pool_type: string;
|
|
2980
|
+
base_token: {
|
|
2981
|
+
token_address: string;
|
|
2982
|
+
token_name: string;
|
|
2983
|
+
token_description: string | null;
|
|
2984
|
+
token_symbol: string;
|
|
2985
|
+
token_uri_data: {
|
|
2986
|
+
name?: string | undefined;
|
|
2987
|
+
description?: string | undefined;
|
|
2988
|
+
image_hash?: string | undefined;
|
|
2989
|
+
fee_receiver?: string | undefined;
|
|
2990
|
+
social_links?: string[] | undefined;
|
|
2991
|
+
vesting_recipients?: {
|
|
2992
|
+
address: string;
|
|
2993
|
+
percentage: number;
|
|
2994
|
+
}[] | undefined;
|
|
2995
|
+
} | null;
|
|
2996
|
+
token_image_public_url: string | null;
|
|
2997
|
+
token_creator_address: string;
|
|
2998
|
+
token_fee_receiver_address: string;
|
|
2999
|
+
token_vesting_recipient_addresses: string[];
|
|
3000
|
+
};
|
|
3001
|
+
};
|
|
3002
|
+
graduation_pool: {
|
|
3003
|
+
pool_current_price: string;
|
|
3004
|
+
pool_current_sqrt_price: string;
|
|
3005
|
+
pool_current_fdv: string;
|
|
3006
|
+
pool_current_liquidity: string;
|
|
3007
|
+
pool_current_tick: number;
|
|
3008
|
+
pool_current_market_cap: string;
|
|
3009
|
+
pool_address: string;
|
|
3010
|
+
pool_migration_timestamp: Date | null;
|
|
3011
|
+
pool_type: string;
|
|
3012
|
+
base_token: {
|
|
3013
|
+
token_address: string;
|
|
3014
|
+
token_name: string;
|
|
3015
|
+
token_description: string | null;
|
|
3016
|
+
token_symbol: string;
|
|
3017
|
+
token_uri_data: {
|
|
3018
|
+
name?: string | undefined;
|
|
3019
|
+
description?: string | undefined;
|
|
3020
|
+
image_hash?: string | undefined;
|
|
3021
|
+
fee_receiver?: string | undefined;
|
|
3022
|
+
social_links?: string[] | undefined;
|
|
3023
|
+
vesting_recipients?: {
|
|
3024
|
+
address: string;
|
|
3025
|
+
percentage: number;
|
|
3026
|
+
}[] | undefined;
|
|
3027
|
+
} | null;
|
|
3028
|
+
token_image_public_url: string | null;
|
|
3029
|
+
token_creator_address: string;
|
|
3030
|
+
token_fee_receiver_address: string;
|
|
3031
|
+
token_vesting_recipient_addresses: string[];
|
|
3032
|
+
integrator_address: string;
|
|
3033
|
+
};
|
|
3034
|
+
};
|
|
3035
|
+
asset_status?: string | undefined;
|
|
3036
|
+
}>, {
|
|
3037
|
+
asset_status: string;
|
|
2359
3038
|
asset_address: `0x${string}`;
|
|
2360
3039
|
asset_numeraire_address: `0x${string}`;
|
|
2361
3040
|
asset_creation_timestamp: Date;
|
|
@@ -2519,9 +3198,11 @@ declare const assetContract: {
|
|
|
2519
3198
|
integrator_address: string;
|
|
2520
3199
|
};
|
|
2521
3200
|
};
|
|
3201
|
+
asset_status?: string | undefined;
|
|
2522
3202
|
}>;
|
|
2523
3203
|
}, "strip", z.ZodTypeAny, {
|
|
2524
3204
|
result: {
|
|
3205
|
+
asset_status: string;
|
|
2525
3206
|
asset_address: `0x${string}`;
|
|
2526
3207
|
asset_numeraire_address: `0x${string}`;
|
|
2527
3208
|
asset_creation_timestamp: Date;
|
|
@@ -2687,6 +3368,7 @@ declare const assetContract: {
|
|
|
2687
3368
|
integrator_address: string;
|
|
2688
3369
|
};
|
|
2689
3370
|
};
|
|
3371
|
+
asset_status?: string | undefined;
|
|
2690
3372
|
};
|
|
2691
3373
|
}>;
|
|
2692
3374
|
};
|