@longdotxyz/shared 0.0.34 → 0.0.36
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 +106 -88
- package/dist/contracts/asset.contract.js +8 -7
- package/dist/contracts/asset.contract.js.map +1 -1
- package/dist/contracts/index.d.ts +87 -72
- package/dist/graphql/generated.d.ts +66 -94
- package/dist/graphql/generated.js +2 -0
- package/dist/graphql/generated.js.map +1 -1
- package/package.json +1 -1
|
@@ -3,8 +3,9 @@ import { AssetStatus } from "../types";
|
|
|
3
3
|
declare const AssetResponse: 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
|
-
asset_creation_timestamp: z.
|
|
7
|
-
|
|
6
|
+
asset_creation_timestamp: z.ZodDate;
|
|
7
|
+
asset_current_pool: z.ZodString;
|
|
8
|
+
asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
8
9
|
auction_pool: z.ZodObject<{
|
|
9
10
|
pool_current_price: z.ZodString;
|
|
10
11
|
pool_current_sqrt_price: z.ZodString;
|
|
@@ -24,7 +25,7 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
24
25
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
25
26
|
pool_config_starting_time: z.ZodString;
|
|
26
27
|
pool_config_ending_time: z.ZodString;
|
|
27
|
-
pool_migration_timestamp: z.ZodNullable<z.
|
|
28
|
+
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
28
29
|
pool_type: z.ZodString;
|
|
29
30
|
base_token: z.ZodObject<{
|
|
30
31
|
token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -132,7 +133,7 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
132
133
|
pool_address: `0x${string}`;
|
|
133
134
|
pool_config_starting_time: string;
|
|
134
135
|
pool_config_ending_time: string;
|
|
135
|
-
pool_migration_timestamp:
|
|
136
|
+
pool_migration_timestamp: Date | null;
|
|
136
137
|
pool_type: string;
|
|
137
138
|
base_token: {
|
|
138
139
|
token_address: `0x${string}`;
|
|
@@ -174,7 +175,7 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
174
175
|
pool_address: string;
|
|
175
176
|
pool_config_starting_time: string;
|
|
176
177
|
pool_config_ending_time: string;
|
|
177
|
-
pool_migration_timestamp:
|
|
178
|
+
pool_migration_timestamp: Date | null;
|
|
178
179
|
pool_type: string;
|
|
179
180
|
base_token: {
|
|
180
181
|
token_address: string;
|
|
@@ -206,7 +207,7 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
206
207
|
pool_current_tick: z.ZodNumber;
|
|
207
208
|
pool_current_market_cap: z.ZodString;
|
|
208
209
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
209
|
-
pool_migration_timestamp: z.ZodNullable<z.
|
|
210
|
+
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
210
211
|
pool_type: z.ZodString;
|
|
211
212
|
base_token: z.ZodObject<{
|
|
212
213
|
token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -306,7 +307,7 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
306
307
|
pool_current_tick: number;
|
|
307
308
|
pool_current_market_cap: string;
|
|
308
309
|
pool_address: `0x${string}`;
|
|
309
|
-
pool_migration_timestamp:
|
|
310
|
+
pool_migration_timestamp: Date | null;
|
|
310
311
|
pool_type: string;
|
|
311
312
|
base_token: {
|
|
312
313
|
token_address: `0x${string}`;
|
|
@@ -338,7 +339,7 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
338
339
|
pool_current_tick: number;
|
|
339
340
|
pool_current_market_cap: string;
|
|
340
341
|
pool_address: string;
|
|
341
|
-
pool_migration_timestamp:
|
|
342
|
+
pool_migration_timestamp: Date | null;
|
|
342
343
|
pool_type: string;
|
|
343
344
|
base_token: {
|
|
344
345
|
token_address: string;
|
|
@@ -366,8 +367,9 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
366
367
|
}, "strip", z.ZodTypeAny, {
|
|
367
368
|
asset_address: `0x${string}`;
|
|
368
369
|
asset_numeraire_address: `0x${string}`;
|
|
369
|
-
asset_creation_timestamp:
|
|
370
|
-
|
|
370
|
+
asset_creation_timestamp: Date;
|
|
371
|
+
asset_current_pool: string;
|
|
372
|
+
asset_migration_timestamp: Date | null;
|
|
371
373
|
auction_pool: {
|
|
372
374
|
pool_current_price: string;
|
|
373
375
|
pool_current_sqrt_price: string;
|
|
@@ -387,7 +389,7 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
387
389
|
pool_address: `0x${string}`;
|
|
388
390
|
pool_config_starting_time: string;
|
|
389
391
|
pool_config_ending_time: string;
|
|
390
|
-
pool_migration_timestamp:
|
|
392
|
+
pool_migration_timestamp: Date | null;
|
|
391
393
|
pool_type: string;
|
|
392
394
|
base_token: {
|
|
393
395
|
token_address: `0x${string}`;
|
|
@@ -419,7 +421,7 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
419
421
|
pool_current_tick: number;
|
|
420
422
|
pool_current_market_cap: string;
|
|
421
423
|
pool_address: `0x${string}`;
|
|
422
|
-
pool_migration_timestamp:
|
|
424
|
+
pool_migration_timestamp: Date | null;
|
|
423
425
|
pool_type: string;
|
|
424
426
|
base_token: {
|
|
425
427
|
token_address: `0x${string}`;
|
|
@@ -447,8 +449,9 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
447
449
|
}, {
|
|
448
450
|
asset_address: string;
|
|
449
451
|
asset_numeraire_address: string;
|
|
450
|
-
asset_creation_timestamp:
|
|
451
|
-
|
|
452
|
+
asset_creation_timestamp: Date;
|
|
453
|
+
asset_current_pool: string;
|
|
454
|
+
asset_migration_timestamp: Date | null;
|
|
452
455
|
auction_pool: {
|
|
453
456
|
pool_current_price: string;
|
|
454
457
|
pool_current_sqrt_price: string;
|
|
@@ -468,7 +471,7 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
468
471
|
pool_address: string;
|
|
469
472
|
pool_config_starting_time: string;
|
|
470
473
|
pool_config_ending_time: string;
|
|
471
|
-
pool_migration_timestamp:
|
|
474
|
+
pool_migration_timestamp: Date | null;
|
|
472
475
|
pool_type: string;
|
|
473
476
|
base_token: {
|
|
474
477
|
token_address: string;
|
|
@@ -500,7 +503,7 @@ declare const AssetResponse: z.ZodObject<{
|
|
|
500
503
|
pool_current_tick: number;
|
|
501
504
|
pool_current_market_cap: string;
|
|
502
505
|
pool_address: string;
|
|
503
|
-
pool_migration_timestamp:
|
|
506
|
+
pool_migration_timestamp: Date | null;
|
|
504
507
|
pool_type: string;
|
|
505
508
|
base_token: {
|
|
506
509
|
token_address: string;
|
|
@@ -552,8 +555,9 @@ declare const assetContract: {
|
|
|
552
555
|
result: z.ZodArray<z.ZodObject<{
|
|
553
556
|
asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
554
557
|
asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
555
|
-
asset_creation_timestamp: z.
|
|
556
|
-
|
|
558
|
+
asset_creation_timestamp: z.ZodDate;
|
|
559
|
+
asset_current_pool: z.ZodString;
|
|
560
|
+
asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
557
561
|
auction_pool: z.ZodObject<{
|
|
558
562
|
pool_current_price: z.ZodString;
|
|
559
563
|
pool_current_sqrt_price: z.ZodString;
|
|
@@ -573,7 +577,7 @@ declare const assetContract: {
|
|
|
573
577
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
574
578
|
pool_config_starting_time: z.ZodString;
|
|
575
579
|
pool_config_ending_time: z.ZodString;
|
|
576
|
-
pool_migration_timestamp: z.ZodNullable<z.
|
|
580
|
+
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
577
581
|
pool_type: z.ZodString;
|
|
578
582
|
base_token: z.ZodObject<{
|
|
579
583
|
token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -681,7 +685,7 @@ declare const assetContract: {
|
|
|
681
685
|
pool_address: `0x${string}`;
|
|
682
686
|
pool_config_starting_time: string;
|
|
683
687
|
pool_config_ending_time: string;
|
|
684
|
-
pool_migration_timestamp:
|
|
688
|
+
pool_migration_timestamp: Date | null;
|
|
685
689
|
pool_type: string;
|
|
686
690
|
base_token: {
|
|
687
691
|
token_address: `0x${string}`;
|
|
@@ -723,7 +727,7 @@ declare const assetContract: {
|
|
|
723
727
|
pool_address: string;
|
|
724
728
|
pool_config_starting_time: string;
|
|
725
729
|
pool_config_ending_time: string;
|
|
726
|
-
pool_migration_timestamp:
|
|
730
|
+
pool_migration_timestamp: Date | null;
|
|
727
731
|
pool_type: string;
|
|
728
732
|
base_token: {
|
|
729
733
|
token_address: string;
|
|
@@ -755,7 +759,7 @@ declare const assetContract: {
|
|
|
755
759
|
pool_current_tick: z.ZodNumber;
|
|
756
760
|
pool_current_market_cap: z.ZodString;
|
|
757
761
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
758
|
-
pool_migration_timestamp: z.ZodNullable<z.
|
|
762
|
+
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
759
763
|
pool_type: z.ZodString;
|
|
760
764
|
base_token: z.ZodObject<{
|
|
761
765
|
token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -855,7 +859,7 @@ declare const assetContract: {
|
|
|
855
859
|
pool_current_tick: number;
|
|
856
860
|
pool_current_market_cap: string;
|
|
857
861
|
pool_address: `0x${string}`;
|
|
858
|
-
pool_migration_timestamp:
|
|
862
|
+
pool_migration_timestamp: Date | null;
|
|
859
863
|
pool_type: string;
|
|
860
864
|
base_token: {
|
|
861
865
|
token_address: `0x${string}`;
|
|
@@ -887,7 +891,7 @@ declare const assetContract: {
|
|
|
887
891
|
pool_current_tick: number;
|
|
888
892
|
pool_current_market_cap: string;
|
|
889
893
|
pool_address: string;
|
|
890
|
-
pool_migration_timestamp:
|
|
894
|
+
pool_migration_timestamp: Date | null;
|
|
891
895
|
pool_type: string;
|
|
892
896
|
base_token: {
|
|
893
897
|
token_address: string;
|
|
@@ -915,8 +919,9 @@ declare const assetContract: {
|
|
|
915
919
|
}, "strip", z.ZodTypeAny, {
|
|
916
920
|
asset_address: `0x${string}`;
|
|
917
921
|
asset_numeraire_address: `0x${string}`;
|
|
918
|
-
asset_creation_timestamp:
|
|
919
|
-
|
|
922
|
+
asset_creation_timestamp: Date;
|
|
923
|
+
asset_current_pool: string;
|
|
924
|
+
asset_migration_timestamp: Date | null;
|
|
920
925
|
auction_pool: {
|
|
921
926
|
pool_current_price: string;
|
|
922
927
|
pool_current_sqrt_price: string;
|
|
@@ -936,7 +941,7 @@ declare const assetContract: {
|
|
|
936
941
|
pool_address: `0x${string}`;
|
|
937
942
|
pool_config_starting_time: string;
|
|
938
943
|
pool_config_ending_time: string;
|
|
939
|
-
pool_migration_timestamp:
|
|
944
|
+
pool_migration_timestamp: Date | null;
|
|
940
945
|
pool_type: string;
|
|
941
946
|
base_token: {
|
|
942
947
|
token_address: `0x${string}`;
|
|
@@ -968,7 +973,7 @@ declare const assetContract: {
|
|
|
968
973
|
pool_current_tick: number;
|
|
969
974
|
pool_current_market_cap: string;
|
|
970
975
|
pool_address: `0x${string}`;
|
|
971
|
-
pool_migration_timestamp:
|
|
976
|
+
pool_migration_timestamp: Date | null;
|
|
972
977
|
pool_type: string;
|
|
973
978
|
base_token: {
|
|
974
979
|
token_address: `0x${string}`;
|
|
@@ -996,8 +1001,9 @@ declare const assetContract: {
|
|
|
996
1001
|
}, {
|
|
997
1002
|
asset_address: string;
|
|
998
1003
|
asset_numeraire_address: string;
|
|
999
|
-
asset_creation_timestamp:
|
|
1000
|
-
|
|
1004
|
+
asset_creation_timestamp: Date;
|
|
1005
|
+
asset_current_pool: string;
|
|
1006
|
+
asset_migration_timestamp: Date | null;
|
|
1001
1007
|
auction_pool: {
|
|
1002
1008
|
pool_current_price: string;
|
|
1003
1009
|
pool_current_sqrt_price: string;
|
|
@@ -1017,7 +1023,7 @@ declare const assetContract: {
|
|
|
1017
1023
|
pool_address: string;
|
|
1018
1024
|
pool_config_starting_time: string;
|
|
1019
1025
|
pool_config_ending_time: string;
|
|
1020
|
-
pool_migration_timestamp:
|
|
1026
|
+
pool_migration_timestamp: Date | null;
|
|
1021
1027
|
pool_type: string;
|
|
1022
1028
|
base_token: {
|
|
1023
1029
|
token_address: string;
|
|
@@ -1049,7 +1055,7 @@ declare const assetContract: {
|
|
|
1049
1055
|
pool_current_tick: number;
|
|
1050
1056
|
pool_current_market_cap: string;
|
|
1051
1057
|
pool_address: string;
|
|
1052
|
-
pool_migration_timestamp:
|
|
1058
|
+
pool_migration_timestamp: Date | null;
|
|
1053
1059
|
pool_type: string;
|
|
1054
1060
|
base_token: {
|
|
1055
1061
|
token_address: string;
|
|
@@ -1079,8 +1085,9 @@ declare const assetContract: {
|
|
|
1079
1085
|
result: {
|
|
1080
1086
|
asset_address: `0x${string}`;
|
|
1081
1087
|
asset_numeraire_address: `0x${string}`;
|
|
1082
|
-
asset_creation_timestamp:
|
|
1083
|
-
|
|
1088
|
+
asset_creation_timestamp: Date;
|
|
1089
|
+
asset_current_pool: string;
|
|
1090
|
+
asset_migration_timestamp: Date | null;
|
|
1084
1091
|
auction_pool: {
|
|
1085
1092
|
pool_current_price: string;
|
|
1086
1093
|
pool_current_sqrt_price: string;
|
|
@@ -1100,7 +1107,7 @@ declare const assetContract: {
|
|
|
1100
1107
|
pool_address: `0x${string}`;
|
|
1101
1108
|
pool_config_starting_time: string;
|
|
1102
1109
|
pool_config_ending_time: string;
|
|
1103
|
-
pool_migration_timestamp:
|
|
1110
|
+
pool_migration_timestamp: Date | null;
|
|
1104
1111
|
pool_type: string;
|
|
1105
1112
|
base_token: {
|
|
1106
1113
|
token_address: `0x${string}`;
|
|
@@ -1132,7 +1139,7 @@ declare const assetContract: {
|
|
|
1132
1139
|
pool_current_tick: number;
|
|
1133
1140
|
pool_current_market_cap: string;
|
|
1134
1141
|
pool_address: `0x${string}`;
|
|
1135
|
-
pool_migration_timestamp:
|
|
1142
|
+
pool_migration_timestamp: Date | null;
|
|
1136
1143
|
pool_type: string;
|
|
1137
1144
|
base_token: {
|
|
1138
1145
|
token_address: `0x${string}`;
|
|
@@ -1162,8 +1169,9 @@ declare const assetContract: {
|
|
|
1162
1169
|
result: {
|
|
1163
1170
|
asset_address: string;
|
|
1164
1171
|
asset_numeraire_address: string;
|
|
1165
|
-
asset_creation_timestamp:
|
|
1166
|
-
|
|
1172
|
+
asset_creation_timestamp: Date;
|
|
1173
|
+
asset_current_pool: string;
|
|
1174
|
+
asset_migration_timestamp: Date | null;
|
|
1167
1175
|
auction_pool: {
|
|
1168
1176
|
pool_current_price: string;
|
|
1169
1177
|
pool_current_sqrt_price: string;
|
|
@@ -1183,7 +1191,7 @@ declare const assetContract: {
|
|
|
1183
1191
|
pool_address: string;
|
|
1184
1192
|
pool_config_starting_time: string;
|
|
1185
1193
|
pool_config_ending_time: string;
|
|
1186
|
-
pool_migration_timestamp:
|
|
1194
|
+
pool_migration_timestamp: Date | null;
|
|
1187
1195
|
pool_type: string;
|
|
1188
1196
|
base_token: {
|
|
1189
1197
|
token_address: string;
|
|
@@ -1215,7 +1223,7 @@ declare const assetContract: {
|
|
|
1215
1223
|
pool_current_tick: number;
|
|
1216
1224
|
pool_current_market_cap: string;
|
|
1217
1225
|
pool_address: string;
|
|
1218
|
-
pool_migration_timestamp:
|
|
1226
|
+
pool_migration_timestamp: Date | null;
|
|
1219
1227
|
pool_type: string;
|
|
1220
1228
|
base_token: {
|
|
1221
1229
|
token_address: string;
|
|
@@ -1266,8 +1274,9 @@ declare const assetContract: {
|
|
|
1266
1274
|
result: z.ZodArray<z.ZodObject<{
|
|
1267
1275
|
asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1268
1276
|
asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1269
|
-
asset_creation_timestamp: z.
|
|
1270
|
-
|
|
1277
|
+
asset_creation_timestamp: z.ZodDate;
|
|
1278
|
+
asset_current_pool: z.ZodString;
|
|
1279
|
+
asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
1271
1280
|
auction_pool: z.ZodObject<{
|
|
1272
1281
|
pool_current_price: z.ZodString;
|
|
1273
1282
|
pool_current_sqrt_price: z.ZodString;
|
|
@@ -1287,7 +1296,7 @@ declare const assetContract: {
|
|
|
1287
1296
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1288
1297
|
pool_config_starting_time: z.ZodString;
|
|
1289
1298
|
pool_config_ending_time: z.ZodString;
|
|
1290
|
-
pool_migration_timestamp: z.ZodNullable<z.
|
|
1299
|
+
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
1291
1300
|
pool_type: z.ZodString;
|
|
1292
1301
|
base_token: z.ZodObject<{
|
|
1293
1302
|
token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -1395,7 +1404,7 @@ declare const assetContract: {
|
|
|
1395
1404
|
pool_address: `0x${string}`;
|
|
1396
1405
|
pool_config_starting_time: string;
|
|
1397
1406
|
pool_config_ending_time: string;
|
|
1398
|
-
pool_migration_timestamp:
|
|
1407
|
+
pool_migration_timestamp: Date | null;
|
|
1399
1408
|
pool_type: string;
|
|
1400
1409
|
base_token: {
|
|
1401
1410
|
token_address: `0x${string}`;
|
|
@@ -1437,7 +1446,7 @@ declare const assetContract: {
|
|
|
1437
1446
|
pool_address: string;
|
|
1438
1447
|
pool_config_starting_time: string;
|
|
1439
1448
|
pool_config_ending_time: string;
|
|
1440
|
-
pool_migration_timestamp:
|
|
1449
|
+
pool_migration_timestamp: Date | null;
|
|
1441
1450
|
pool_type: string;
|
|
1442
1451
|
base_token: {
|
|
1443
1452
|
token_address: string;
|
|
@@ -1469,7 +1478,7 @@ declare const assetContract: {
|
|
|
1469
1478
|
pool_current_tick: z.ZodNumber;
|
|
1470
1479
|
pool_current_market_cap: z.ZodString;
|
|
1471
1480
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1472
|
-
pool_migration_timestamp: z.ZodNullable<z.
|
|
1481
|
+
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
1473
1482
|
pool_type: z.ZodString;
|
|
1474
1483
|
base_token: z.ZodObject<{
|
|
1475
1484
|
token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -1569,7 +1578,7 @@ declare const assetContract: {
|
|
|
1569
1578
|
pool_current_tick: number;
|
|
1570
1579
|
pool_current_market_cap: string;
|
|
1571
1580
|
pool_address: `0x${string}`;
|
|
1572
|
-
pool_migration_timestamp:
|
|
1581
|
+
pool_migration_timestamp: Date | null;
|
|
1573
1582
|
pool_type: string;
|
|
1574
1583
|
base_token: {
|
|
1575
1584
|
token_address: `0x${string}`;
|
|
@@ -1601,7 +1610,7 @@ declare const assetContract: {
|
|
|
1601
1610
|
pool_current_tick: number;
|
|
1602
1611
|
pool_current_market_cap: string;
|
|
1603
1612
|
pool_address: string;
|
|
1604
|
-
pool_migration_timestamp:
|
|
1613
|
+
pool_migration_timestamp: Date | null;
|
|
1605
1614
|
pool_type: string;
|
|
1606
1615
|
base_token: {
|
|
1607
1616
|
token_address: string;
|
|
@@ -1629,8 +1638,9 @@ declare const assetContract: {
|
|
|
1629
1638
|
}, "strip", z.ZodTypeAny, {
|
|
1630
1639
|
asset_address: `0x${string}`;
|
|
1631
1640
|
asset_numeraire_address: `0x${string}`;
|
|
1632
|
-
asset_creation_timestamp:
|
|
1633
|
-
|
|
1641
|
+
asset_creation_timestamp: Date;
|
|
1642
|
+
asset_current_pool: string;
|
|
1643
|
+
asset_migration_timestamp: Date | null;
|
|
1634
1644
|
auction_pool: {
|
|
1635
1645
|
pool_current_price: string;
|
|
1636
1646
|
pool_current_sqrt_price: string;
|
|
@@ -1650,7 +1660,7 @@ declare const assetContract: {
|
|
|
1650
1660
|
pool_address: `0x${string}`;
|
|
1651
1661
|
pool_config_starting_time: string;
|
|
1652
1662
|
pool_config_ending_time: string;
|
|
1653
|
-
pool_migration_timestamp:
|
|
1663
|
+
pool_migration_timestamp: Date | null;
|
|
1654
1664
|
pool_type: string;
|
|
1655
1665
|
base_token: {
|
|
1656
1666
|
token_address: `0x${string}`;
|
|
@@ -1682,7 +1692,7 @@ declare const assetContract: {
|
|
|
1682
1692
|
pool_current_tick: number;
|
|
1683
1693
|
pool_current_market_cap: string;
|
|
1684
1694
|
pool_address: `0x${string}`;
|
|
1685
|
-
pool_migration_timestamp:
|
|
1695
|
+
pool_migration_timestamp: Date | null;
|
|
1686
1696
|
pool_type: string;
|
|
1687
1697
|
base_token: {
|
|
1688
1698
|
token_address: `0x${string}`;
|
|
@@ -1710,8 +1720,9 @@ declare const assetContract: {
|
|
|
1710
1720
|
}, {
|
|
1711
1721
|
asset_address: string;
|
|
1712
1722
|
asset_numeraire_address: string;
|
|
1713
|
-
asset_creation_timestamp:
|
|
1714
|
-
|
|
1723
|
+
asset_creation_timestamp: Date;
|
|
1724
|
+
asset_current_pool: string;
|
|
1725
|
+
asset_migration_timestamp: Date | null;
|
|
1715
1726
|
auction_pool: {
|
|
1716
1727
|
pool_current_price: string;
|
|
1717
1728
|
pool_current_sqrt_price: string;
|
|
@@ -1731,7 +1742,7 @@ declare const assetContract: {
|
|
|
1731
1742
|
pool_address: string;
|
|
1732
1743
|
pool_config_starting_time: string;
|
|
1733
1744
|
pool_config_ending_time: string;
|
|
1734
|
-
pool_migration_timestamp:
|
|
1745
|
+
pool_migration_timestamp: Date | null;
|
|
1735
1746
|
pool_type: string;
|
|
1736
1747
|
base_token: {
|
|
1737
1748
|
token_address: string;
|
|
@@ -1763,7 +1774,7 @@ declare const assetContract: {
|
|
|
1763
1774
|
pool_current_tick: number;
|
|
1764
1775
|
pool_current_market_cap: string;
|
|
1765
1776
|
pool_address: string;
|
|
1766
|
-
pool_migration_timestamp:
|
|
1777
|
+
pool_migration_timestamp: Date | null;
|
|
1767
1778
|
pool_type: string;
|
|
1768
1779
|
base_token: {
|
|
1769
1780
|
token_address: string;
|
|
@@ -1793,8 +1804,9 @@ declare const assetContract: {
|
|
|
1793
1804
|
result: {
|
|
1794
1805
|
asset_address: `0x${string}`;
|
|
1795
1806
|
asset_numeraire_address: `0x${string}`;
|
|
1796
|
-
asset_creation_timestamp:
|
|
1797
|
-
|
|
1807
|
+
asset_creation_timestamp: Date;
|
|
1808
|
+
asset_current_pool: string;
|
|
1809
|
+
asset_migration_timestamp: Date | null;
|
|
1798
1810
|
auction_pool: {
|
|
1799
1811
|
pool_current_price: string;
|
|
1800
1812
|
pool_current_sqrt_price: string;
|
|
@@ -1814,7 +1826,7 @@ declare const assetContract: {
|
|
|
1814
1826
|
pool_address: `0x${string}`;
|
|
1815
1827
|
pool_config_starting_time: string;
|
|
1816
1828
|
pool_config_ending_time: string;
|
|
1817
|
-
pool_migration_timestamp:
|
|
1829
|
+
pool_migration_timestamp: Date | null;
|
|
1818
1830
|
pool_type: string;
|
|
1819
1831
|
base_token: {
|
|
1820
1832
|
token_address: `0x${string}`;
|
|
@@ -1846,7 +1858,7 @@ declare const assetContract: {
|
|
|
1846
1858
|
pool_current_tick: number;
|
|
1847
1859
|
pool_current_market_cap: string;
|
|
1848
1860
|
pool_address: `0x${string}`;
|
|
1849
|
-
pool_migration_timestamp:
|
|
1861
|
+
pool_migration_timestamp: Date | null;
|
|
1850
1862
|
pool_type: string;
|
|
1851
1863
|
base_token: {
|
|
1852
1864
|
token_address: `0x${string}`;
|
|
@@ -1876,8 +1888,9 @@ declare const assetContract: {
|
|
|
1876
1888
|
result: {
|
|
1877
1889
|
asset_address: string;
|
|
1878
1890
|
asset_numeraire_address: string;
|
|
1879
|
-
asset_creation_timestamp:
|
|
1880
|
-
|
|
1891
|
+
asset_creation_timestamp: Date;
|
|
1892
|
+
asset_current_pool: string;
|
|
1893
|
+
asset_migration_timestamp: Date | null;
|
|
1881
1894
|
auction_pool: {
|
|
1882
1895
|
pool_current_price: string;
|
|
1883
1896
|
pool_current_sqrt_price: string;
|
|
@@ -1897,7 +1910,7 @@ declare const assetContract: {
|
|
|
1897
1910
|
pool_address: string;
|
|
1898
1911
|
pool_config_starting_time: string;
|
|
1899
1912
|
pool_config_ending_time: string;
|
|
1900
|
-
pool_migration_timestamp:
|
|
1913
|
+
pool_migration_timestamp: Date | null;
|
|
1901
1914
|
pool_type: string;
|
|
1902
1915
|
base_token: {
|
|
1903
1916
|
token_address: string;
|
|
@@ -1929,7 +1942,7 @@ declare const assetContract: {
|
|
|
1929
1942
|
pool_current_tick: number;
|
|
1930
1943
|
pool_current_market_cap: string;
|
|
1931
1944
|
pool_address: string;
|
|
1932
|
-
pool_migration_timestamp:
|
|
1945
|
+
pool_migration_timestamp: Date | null;
|
|
1933
1946
|
pool_type: string;
|
|
1934
1947
|
base_token: {
|
|
1935
1948
|
token_address: string;
|
|
@@ -1981,8 +1994,9 @@ declare const assetContract: {
|
|
|
1981
1994
|
result: z.ZodObject<{
|
|
1982
1995
|
asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1983
1996
|
asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1984
|
-
asset_creation_timestamp: z.
|
|
1985
|
-
|
|
1997
|
+
asset_creation_timestamp: z.ZodDate;
|
|
1998
|
+
asset_current_pool: z.ZodString;
|
|
1999
|
+
asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
1986
2000
|
auction_pool: z.ZodObject<{
|
|
1987
2001
|
pool_current_price: z.ZodString;
|
|
1988
2002
|
pool_current_sqrt_price: z.ZodString;
|
|
@@ -2002,7 +2016,7 @@ declare const assetContract: {
|
|
|
2002
2016
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
2003
2017
|
pool_config_starting_time: z.ZodString;
|
|
2004
2018
|
pool_config_ending_time: z.ZodString;
|
|
2005
|
-
pool_migration_timestamp: z.ZodNullable<z.
|
|
2019
|
+
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
2006
2020
|
pool_type: z.ZodString;
|
|
2007
2021
|
base_token: z.ZodObject<{
|
|
2008
2022
|
token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -2110,7 +2124,7 @@ declare const assetContract: {
|
|
|
2110
2124
|
pool_address: `0x${string}`;
|
|
2111
2125
|
pool_config_starting_time: string;
|
|
2112
2126
|
pool_config_ending_time: string;
|
|
2113
|
-
pool_migration_timestamp:
|
|
2127
|
+
pool_migration_timestamp: Date | null;
|
|
2114
2128
|
pool_type: string;
|
|
2115
2129
|
base_token: {
|
|
2116
2130
|
token_address: `0x${string}`;
|
|
@@ -2152,7 +2166,7 @@ declare const assetContract: {
|
|
|
2152
2166
|
pool_address: string;
|
|
2153
2167
|
pool_config_starting_time: string;
|
|
2154
2168
|
pool_config_ending_time: string;
|
|
2155
|
-
pool_migration_timestamp:
|
|
2169
|
+
pool_migration_timestamp: Date | null;
|
|
2156
2170
|
pool_type: string;
|
|
2157
2171
|
base_token: {
|
|
2158
2172
|
token_address: string;
|
|
@@ -2184,7 +2198,7 @@ declare const assetContract: {
|
|
|
2184
2198
|
pool_current_tick: z.ZodNumber;
|
|
2185
2199
|
pool_current_market_cap: z.ZodString;
|
|
2186
2200
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
2187
|
-
pool_migration_timestamp: z.ZodNullable<z.
|
|
2201
|
+
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
2188
2202
|
pool_type: z.ZodString;
|
|
2189
2203
|
base_token: z.ZodObject<{
|
|
2190
2204
|
token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
@@ -2284,7 +2298,7 @@ declare const assetContract: {
|
|
|
2284
2298
|
pool_current_tick: number;
|
|
2285
2299
|
pool_current_market_cap: string;
|
|
2286
2300
|
pool_address: `0x${string}`;
|
|
2287
|
-
pool_migration_timestamp:
|
|
2301
|
+
pool_migration_timestamp: Date | null;
|
|
2288
2302
|
pool_type: string;
|
|
2289
2303
|
base_token: {
|
|
2290
2304
|
token_address: `0x${string}`;
|
|
@@ -2316,7 +2330,7 @@ declare const assetContract: {
|
|
|
2316
2330
|
pool_current_tick: number;
|
|
2317
2331
|
pool_current_market_cap: string;
|
|
2318
2332
|
pool_address: string;
|
|
2319
|
-
pool_migration_timestamp:
|
|
2333
|
+
pool_migration_timestamp: Date | null;
|
|
2320
2334
|
pool_type: string;
|
|
2321
2335
|
base_token: {
|
|
2322
2336
|
token_address: string;
|
|
@@ -2344,8 +2358,9 @@ declare const assetContract: {
|
|
|
2344
2358
|
}, "strip", z.ZodTypeAny, {
|
|
2345
2359
|
asset_address: `0x${string}`;
|
|
2346
2360
|
asset_numeraire_address: `0x${string}`;
|
|
2347
|
-
asset_creation_timestamp:
|
|
2348
|
-
|
|
2361
|
+
asset_creation_timestamp: Date;
|
|
2362
|
+
asset_current_pool: string;
|
|
2363
|
+
asset_migration_timestamp: Date | null;
|
|
2349
2364
|
auction_pool: {
|
|
2350
2365
|
pool_current_price: string;
|
|
2351
2366
|
pool_current_sqrt_price: string;
|
|
@@ -2365,7 +2380,7 @@ declare const assetContract: {
|
|
|
2365
2380
|
pool_address: `0x${string}`;
|
|
2366
2381
|
pool_config_starting_time: string;
|
|
2367
2382
|
pool_config_ending_time: string;
|
|
2368
|
-
pool_migration_timestamp:
|
|
2383
|
+
pool_migration_timestamp: Date | null;
|
|
2369
2384
|
pool_type: string;
|
|
2370
2385
|
base_token: {
|
|
2371
2386
|
token_address: `0x${string}`;
|
|
@@ -2397,7 +2412,7 @@ declare const assetContract: {
|
|
|
2397
2412
|
pool_current_tick: number;
|
|
2398
2413
|
pool_current_market_cap: string;
|
|
2399
2414
|
pool_address: `0x${string}`;
|
|
2400
|
-
pool_migration_timestamp:
|
|
2415
|
+
pool_migration_timestamp: Date | null;
|
|
2401
2416
|
pool_type: string;
|
|
2402
2417
|
base_token: {
|
|
2403
2418
|
token_address: `0x${string}`;
|
|
@@ -2425,8 +2440,9 @@ declare const assetContract: {
|
|
|
2425
2440
|
}, {
|
|
2426
2441
|
asset_address: string;
|
|
2427
2442
|
asset_numeraire_address: string;
|
|
2428
|
-
asset_creation_timestamp:
|
|
2429
|
-
|
|
2443
|
+
asset_creation_timestamp: Date;
|
|
2444
|
+
asset_current_pool: string;
|
|
2445
|
+
asset_migration_timestamp: Date | null;
|
|
2430
2446
|
auction_pool: {
|
|
2431
2447
|
pool_current_price: string;
|
|
2432
2448
|
pool_current_sqrt_price: string;
|
|
@@ -2446,7 +2462,7 @@ declare const assetContract: {
|
|
|
2446
2462
|
pool_address: string;
|
|
2447
2463
|
pool_config_starting_time: string;
|
|
2448
2464
|
pool_config_ending_time: string;
|
|
2449
|
-
pool_migration_timestamp:
|
|
2465
|
+
pool_migration_timestamp: Date | null;
|
|
2450
2466
|
pool_type: string;
|
|
2451
2467
|
base_token: {
|
|
2452
2468
|
token_address: string;
|
|
@@ -2478,7 +2494,7 @@ declare const assetContract: {
|
|
|
2478
2494
|
pool_current_tick: number;
|
|
2479
2495
|
pool_current_market_cap: string;
|
|
2480
2496
|
pool_address: string;
|
|
2481
|
-
pool_migration_timestamp:
|
|
2497
|
+
pool_migration_timestamp: Date | null;
|
|
2482
2498
|
pool_type: string;
|
|
2483
2499
|
base_token: {
|
|
2484
2500
|
token_address: string;
|
|
@@ -2508,8 +2524,9 @@ declare const assetContract: {
|
|
|
2508
2524
|
result: {
|
|
2509
2525
|
asset_address: `0x${string}`;
|
|
2510
2526
|
asset_numeraire_address: `0x${string}`;
|
|
2511
|
-
asset_creation_timestamp:
|
|
2512
|
-
|
|
2527
|
+
asset_creation_timestamp: Date;
|
|
2528
|
+
asset_current_pool: string;
|
|
2529
|
+
asset_migration_timestamp: Date | null;
|
|
2513
2530
|
auction_pool: {
|
|
2514
2531
|
pool_current_price: string;
|
|
2515
2532
|
pool_current_sqrt_price: string;
|
|
@@ -2529,7 +2546,7 @@ declare const assetContract: {
|
|
|
2529
2546
|
pool_address: `0x${string}`;
|
|
2530
2547
|
pool_config_starting_time: string;
|
|
2531
2548
|
pool_config_ending_time: string;
|
|
2532
|
-
pool_migration_timestamp:
|
|
2549
|
+
pool_migration_timestamp: Date | null;
|
|
2533
2550
|
pool_type: string;
|
|
2534
2551
|
base_token: {
|
|
2535
2552
|
token_address: `0x${string}`;
|
|
@@ -2561,7 +2578,7 @@ declare const assetContract: {
|
|
|
2561
2578
|
pool_current_tick: number;
|
|
2562
2579
|
pool_current_market_cap: string;
|
|
2563
2580
|
pool_address: `0x${string}`;
|
|
2564
|
-
pool_migration_timestamp:
|
|
2581
|
+
pool_migration_timestamp: Date | null;
|
|
2565
2582
|
pool_type: string;
|
|
2566
2583
|
base_token: {
|
|
2567
2584
|
token_address: `0x${string}`;
|
|
@@ -2591,8 +2608,9 @@ declare const assetContract: {
|
|
|
2591
2608
|
result: {
|
|
2592
2609
|
asset_address: string;
|
|
2593
2610
|
asset_numeraire_address: string;
|
|
2594
|
-
asset_creation_timestamp:
|
|
2595
|
-
|
|
2611
|
+
asset_creation_timestamp: Date;
|
|
2612
|
+
asset_current_pool: string;
|
|
2613
|
+
asset_migration_timestamp: Date | null;
|
|
2596
2614
|
auction_pool: {
|
|
2597
2615
|
pool_current_price: string;
|
|
2598
2616
|
pool_current_sqrt_price: string;
|
|
@@ -2612,7 +2630,7 @@ declare const assetContract: {
|
|
|
2612
2630
|
pool_address: string;
|
|
2613
2631
|
pool_config_starting_time: string;
|
|
2614
2632
|
pool_config_ending_time: string;
|
|
2615
|
-
pool_migration_timestamp:
|
|
2633
|
+
pool_migration_timestamp: Date | null;
|
|
2616
2634
|
pool_type: string;
|
|
2617
2635
|
base_token: {
|
|
2618
2636
|
token_address: string;
|
|
@@ -2644,7 +2662,7 @@ declare const assetContract: {
|
|
|
2644
2662
|
pool_current_tick: number;
|
|
2645
2663
|
pool_current_market_cap: string;
|
|
2646
2664
|
pool_address: string;
|
|
2647
|
-
pool_migration_timestamp:
|
|
2665
|
+
pool_migration_timestamp: Date | null;
|
|
2648
2666
|
pool_type: string;
|
|
2649
2667
|
base_token: {
|
|
2650
2668
|
token_address: string;
|