@longdotxyz/shared 0.0.34 → 0.0.35
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
|
@@ -8,11 +8,12 @@ const contract = (0, core_1.initContract)();
|
|
|
8
8
|
const AssetResponse = zod_1.default.object({
|
|
9
9
|
asset_address: zod_1.default.string().pipe(types_1.hex).describe("**Address** — EVM address of the asset contract (newly created token in auction). This is the unique identifier for the token on the blockchain and can be used to interact with the token contract directly or add it to wallets."),
|
|
10
10
|
asset_numeraire_address: zod_1.default.string().pipe(types_1.hex).describe("**Quote Token Address** — EVM address of the numeraire (quote) token used for pricing this asset and directly paired with the asset in the auction."),
|
|
11
|
-
asset_creation_timestamp: zod_1.default.
|
|
11
|
+
asset_creation_timestamp: zod_1.default.date().describe("**Created At** — Date when the asset was initially created and deployed to the blockchain. Use this to calculate asset age or filter by creation date."),
|
|
12
|
+
asset_current_pool: zod_1.default.string().describe("**Current Pool** - The current pool that the asset is in. Can be `auction` or `graduation`."),
|
|
12
13
|
asset_migration_timestamp: zod_1.default
|
|
13
|
-
.
|
|
14
|
+
.date()
|
|
14
15
|
.nullable()
|
|
15
|
-
.describe("**Migrated At** —
|
|
16
|
+
.describe("**Migrated At** — Date when the asset was migrated from the auction pool to the graduation pool. Returns `null` if the asset hasn't migrated yet (still in auction phase) or auction ended unsuccessfully."),
|
|
16
17
|
auction_pool: zod_1.default
|
|
17
18
|
.object({
|
|
18
19
|
pool_current_price: zod_1.default.string().describe('**Price** — Current token price in the numeraire (quote) token. Returned as a decimal string to preserve precision (e.g., `"1.234567"`). To display: multiply by your quote token decimals.'),
|
|
@@ -37,12 +38,12 @@ const AssetResponse = zod_1.default.object({
|
|
|
37
38
|
pool_config_min_proceeds: zod_1.default.string().describe("**Min Raise** — Minimum amount required to be raised for successful auction. If not met by `pool_config_ending_time`, the auction may be canceled and funds returned. Set for advanced integrations"),
|
|
38
39
|
pool_id: zod_1.default.string().describe("**Pool ID** — The Unique Uniswap V4 pool identifier for this pool instance. Use this to track the pool across different endpoints or link to detailed pool pages."),
|
|
39
40
|
pool_address: zod_1.default.string().pipe(types_1.hex).describe("**Pool Address** — EVM address of the pool smart contract. Use this to interact directly with the pool on-chain (e.g., for swaps, adding liquidity) or view in block explorers."),
|
|
40
|
-
pool_config_starting_time: zod_1.default.string().describe('**Starts At** — Unix timestamp
|
|
41
|
+
pool_config_starting_time: zod_1.default.string().describe('**Starts At** — Unix timestamp when the auction begins accepting trades (e.g., `"1759330983"`). Trades before this time will revert.'),
|
|
41
42
|
pool_config_ending_time: zod_1.default.string().describe('**Ends At** — Unix timestamp as string when the auction phase concludes (e.g., `"1759352583"`). After this, the pool may migrate if targets are met.'),
|
|
42
43
|
pool_migration_timestamp: zod_1.default
|
|
43
|
-
.
|
|
44
|
+
.date()
|
|
44
45
|
.nullable()
|
|
45
|
-
.describe("**Migrated At** —
|
|
46
|
+
.describe("**Migrated At** — Date when this pool migrated to the graduation pool. Returns `null` if still in active auction or if the auction ended unsuccessfully. Once migrated, this pool becomes read-only and trading moves to `graduation_pool`."),
|
|
46
47
|
pool_type: zod_1.default.string().describe('**Pool Type** — Uniswap protocol version used for this pool. Values: `"v2"`, `"v3"`, or `"v4"`. Use this for trading routing, quote calculations, and protocol-specific integrations (e.g., concentrated liquidity on V3/V4).'),
|
|
47
48
|
base_token: zod_1.default
|
|
48
49
|
.object({
|
|
@@ -80,7 +81,7 @@ const AssetResponse = zod_1.default.object({
|
|
|
80
81
|
pool_current_tick: zod_1.default.number().describe("**Tick** — Current tick index in the Uniswap V3/V4 price curve. See auction pool's [`pool_current_tick`](#pool_current_tick) for details."),
|
|
81
82
|
pool_current_market_cap: zod_1.default.string().describe("**Market Cap** — Post-graduation market cap based on circulating supply and current trading price. This reflects real market valuation."),
|
|
82
83
|
pool_address: zod_1.default.string().pipe(types_1.hex).describe("**Pool Address** — EVM address of the Uniswap V3 pool contract for secondary trading. Use this address to execute swaps, add liquidity, or track on-chain activity."),
|
|
83
|
-
pool_migration_timestamp: zod_1.default.
|
|
84
|
+
pool_migration_timestamp: zod_1.default.date().nullable().describe("**Graduated At** — Date when the token graduated from auction to open market. Returns `null` if still in auction phase. Marks the transition to price-discovery trading."),
|
|
84
85
|
pool_type: zod_1.default.string().describe('**Pool Type** — Uniswap protocol version used for this graduation pool. Values: `"v2"`, `"v3"`, or `"v4"`. Use this for trading routing, quote calculations, and protocol-specific integrations'),
|
|
85
86
|
base_token: zod_1.default
|
|
86
87
|
.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"asset.contract.js","sourceRoot":"","sources":["../../src/contracts/asset.contract.ts"],"names":[],"mappings":";;;AAAA,wCAA6C;AAC7C,6BAAoB;AAEpB,oCAAqD;AAErD,MAAM,QAAQ,GAAG,IAAA,mBAAY,GAAE,CAAC;AAEhC,MAAM,aAAa,GAAG,aAAC,CAAC,MAAM,CAAC;IAC3B,aAAa,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,WAAG,CAAC,CAAC,QAAQ,CAAC,oOAAoO,CAAC;IAClR,uBAAuB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,WAAG,CAAC,CAAC,QAAQ,CAAC,qJAAqJ,CAAC;IAC7M,wBAAwB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"asset.contract.js","sourceRoot":"","sources":["../../src/contracts/asset.contract.ts"],"names":[],"mappings":"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"}
|
|
@@ -25,8 +25,9 @@ export declare const rootContract: {
|
|
|
25
25
|
result: import("zod").ZodArray<import("zod").ZodObject<{
|
|
26
26
|
asset_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
27
27
|
asset_numeraire_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
28
|
-
asset_creation_timestamp: import("zod").
|
|
29
|
-
|
|
28
|
+
asset_creation_timestamp: import("zod").ZodDate;
|
|
29
|
+
asset_current_pool: import("zod").ZodString;
|
|
30
|
+
asset_migration_timestamp: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
30
31
|
auction_pool: import("zod").ZodObject<{
|
|
31
32
|
pool_current_price: import("zod").ZodString;
|
|
32
33
|
pool_current_sqrt_price: import("zod").ZodString;
|
|
@@ -46,7 +47,7 @@ export declare const rootContract: {
|
|
|
46
47
|
pool_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
47
48
|
pool_config_starting_time: import("zod").ZodString;
|
|
48
49
|
pool_config_ending_time: import("zod").ZodString;
|
|
49
|
-
pool_migration_timestamp: import("zod").ZodNullable<import("zod").
|
|
50
|
+
pool_migration_timestamp: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
50
51
|
pool_type: import("zod").ZodString;
|
|
51
52
|
base_token: import("zod").ZodObject<{
|
|
52
53
|
token_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
@@ -154,7 +155,7 @@ export declare const rootContract: {
|
|
|
154
155
|
pool_address: `0x${string}`;
|
|
155
156
|
pool_config_starting_time: string;
|
|
156
157
|
pool_config_ending_time: string;
|
|
157
|
-
pool_migration_timestamp:
|
|
158
|
+
pool_migration_timestamp: Date | null;
|
|
158
159
|
pool_type: string;
|
|
159
160
|
base_token: {
|
|
160
161
|
token_address: `0x${string}`;
|
|
@@ -196,7 +197,7 @@ export declare const rootContract: {
|
|
|
196
197
|
pool_address: string;
|
|
197
198
|
pool_config_starting_time: string;
|
|
198
199
|
pool_config_ending_time: string;
|
|
199
|
-
pool_migration_timestamp:
|
|
200
|
+
pool_migration_timestamp: Date | null;
|
|
200
201
|
pool_type: string;
|
|
201
202
|
base_token: {
|
|
202
203
|
token_address: string;
|
|
@@ -228,7 +229,7 @@ export declare const rootContract: {
|
|
|
228
229
|
pool_current_tick: import("zod").ZodNumber;
|
|
229
230
|
pool_current_market_cap: import("zod").ZodString;
|
|
230
231
|
pool_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
231
|
-
pool_migration_timestamp: import("zod").ZodNullable<import("zod").
|
|
232
|
+
pool_migration_timestamp: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
232
233
|
pool_type: import("zod").ZodString;
|
|
233
234
|
base_token: import("zod").ZodObject<{
|
|
234
235
|
token_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
@@ -328,7 +329,7 @@ export declare const rootContract: {
|
|
|
328
329
|
pool_current_tick: number;
|
|
329
330
|
pool_current_market_cap: string;
|
|
330
331
|
pool_address: `0x${string}`;
|
|
331
|
-
pool_migration_timestamp:
|
|
332
|
+
pool_migration_timestamp: Date | null;
|
|
332
333
|
pool_type: string;
|
|
333
334
|
base_token: {
|
|
334
335
|
token_address: `0x${string}`;
|
|
@@ -360,7 +361,7 @@ export declare const rootContract: {
|
|
|
360
361
|
pool_current_tick: number;
|
|
361
362
|
pool_current_market_cap: string;
|
|
362
363
|
pool_address: string;
|
|
363
|
-
pool_migration_timestamp:
|
|
364
|
+
pool_migration_timestamp: Date | null;
|
|
364
365
|
pool_type: string;
|
|
365
366
|
base_token: {
|
|
366
367
|
token_address: string;
|
|
@@ -388,8 +389,9 @@ export declare const rootContract: {
|
|
|
388
389
|
}, "strip", import("zod").ZodTypeAny, {
|
|
389
390
|
asset_address: `0x${string}`;
|
|
390
391
|
asset_numeraire_address: `0x${string}`;
|
|
391
|
-
asset_creation_timestamp:
|
|
392
|
-
|
|
392
|
+
asset_creation_timestamp: Date;
|
|
393
|
+
asset_current_pool: string;
|
|
394
|
+
asset_migration_timestamp: Date | null;
|
|
393
395
|
auction_pool: {
|
|
394
396
|
pool_current_price: string;
|
|
395
397
|
pool_current_sqrt_price: string;
|
|
@@ -409,7 +411,7 @@ export declare const rootContract: {
|
|
|
409
411
|
pool_address: `0x${string}`;
|
|
410
412
|
pool_config_starting_time: string;
|
|
411
413
|
pool_config_ending_time: string;
|
|
412
|
-
pool_migration_timestamp:
|
|
414
|
+
pool_migration_timestamp: Date | null;
|
|
413
415
|
pool_type: string;
|
|
414
416
|
base_token: {
|
|
415
417
|
token_address: `0x${string}`;
|
|
@@ -441,7 +443,7 @@ export declare const rootContract: {
|
|
|
441
443
|
pool_current_tick: number;
|
|
442
444
|
pool_current_market_cap: string;
|
|
443
445
|
pool_address: `0x${string}`;
|
|
444
|
-
pool_migration_timestamp:
|
|
446
|
+
pool_migration_timestamp: Date | null;
|
|
445
447
|
pool_type: string;
|
|
446
448
|
base_token: {
|
|
447
449
|
token_address: `0x${string}`;
|
|
@@ -469,8 +471,9 @@ export declare const rootContract: {
|
|
|
469
471
|
}, {
|
|
470
472
|
asset_address: string;
|
|
471
473
|
asset_numeraire_address: string;
|
|
472
|
-
asset_creation_timestamp:
|
|
473
|
-
|
|
474
|
+
asset_creation_timestamp: Date;
|
|
475
|
+
asset_current_pool: string;
|
|
476
|
+
asset_migration_timestamp: Date | null;
|
|
474
477
|
auction_pool: {
|
|
475
478
|
pool_current_price: string;
|
|
476
479
|
pool_current_sqrt_price: string;
|
|
@@ -490,7 +493,7 @@ export declare const rootContract: {
|
|
|
490
493
|
pool_address: string;
|
|
491
494
|
pool_config_starting_time: string;
|
|
492
495
|
pool_config_ending_time: string;
|
|
493
|
-
pool_migration_timestamp:
|
|
496
|
+
pool_migration_timestamp: Date | null;
|
|
494
497
|
pool_type: string;
|
|
495
498
|
base_token: {
|
|
496
499
|
token_address: string;
|
|
@@ -522,7 +525,7 @@ export declare const rootContract: {
|
|
|
522
525
|
pool_current_tick: number;
|
|
523
526
|
pool_current_market_cap: string;
|
|
524
527
|
pool_address: string;
|
|
525
|
-
pool_migration_timestamp:
|
|
528
|
+
pool_migration_timestamp: Date | null;
|
|
526
529
|
pool_type: string;
|
|
527
530
|
base_token: {
|
|
528
531
|
token_address: string;
|
|
@@ -552,8 +555,9 @@ export declare const rootContract: {
|
|
|
552
555
|
result: {
|
|
553
556
|
asset_address: `0x${string}`;
|
|
554
557
|
asset_numeraire_address: `0x${string}`;
|
|
555
|
-
asset_creation_timestamp:
|
|
556
|
-
|
|
558
|
+
asset_creation_timestamp: Date;
|
|
559
|
+
asset_current_pool: string;
|
|
560
|
+
asset_migration_timestamp: Date | null;
|
|
557
561
|
auction_pool: {
|
|
558
562
|
pool_current_price: string;
|
|
559
563
|
pool_current_sqrt_price: string;
|
|
@@ -573,7 +577,7 @@ export declare const rootContract: {
|
|
|
573
577
|
pool_address: `0x${string}`;
|
|
574
578
|
pool_config_starting_time: string;
|
|
575
579
|
pool_config_ending_time: string;
|
|
576
|
-
pool_migration_timestamp:
|
|
580
|
+
pool_migration_timestamp: Date | null;
|
|
577
581
|
pool_type: string;
|
|
578
582
|
base_token: {
|
|
579
583
|
token_address: `0x${string}`;
|
|
@@ -605,7 +609,7 @@ export declare const rootContract: {
|
|
|
605
609
|
pool_current_tick: number;
|
|
606
610
|
pool_current_market_cap: string;
|
|
607
611
|
pool_address: `0x${string}`;
|
|
608
|
-
pool_migration_timestamp:
|
|
612
|
+
pool_migration_timestamp: Date | null;
|
|
609
613
|
pool_type: string;
|
|
610
614
|
base_token: {
|
|
611
615
|
token_address: `0x${string}`;
|
|
@@ -635,8 +639,9 @@ export declare const rootContract: {
|
|
|
635
639
|
result: {
|
|
636
640
|
asset_address: string;
|
|
637
641
|
asset_numeraire_address: string;
|
|
638
|
-
asset_creation_timestamp:
|
|
639
|
-
|
|
642
|
+
asset_creation_timestamp: Date;
|
|
643
|
+
asset_current_pool: string;
|
|
644
|
+
asset_migration_timestamp: Date | null;
|
|
640
645
|
auction_pool: {
|
|
641
646
|
pool_current_price: string;
|
|
642
647
|
pool_current_sqrt_price: string;
|
|
@@ -656,7 +661,7 @@ export declare const rootContract: {
|
|
|
656
661
|
pool_address: string;
|
|
657
662
|
pool_config_starting_time: string;
|
|
658
663
|
pool_config_ending_time: string;
|
|
659
|
-
pool_migration_timestamp:
|
|
664
|
+
pool_migration_timestamp: Date | null;
|
|
660
665
|
pool_type: string;
|
|
661
666
|
base_token: {
|
|
662
667
|
token_address: string;
|
|
@@ -688,7 +693,7 @@ export declare const rootContract: {
|
|
|
688
693
|
pool_current_tick: number;
|
|
689
694
|
pool_current_market_cap: string;
|
|
690
695
|
pool_address: string;
|
|
691
|
-
pool_migration_timestamp:
|
|
696
|
+
pool_migration_timestamp: Date | null;
|
|
692
697
|
pool_type: string;
|
|
693
698
|
base_token: {
|
|
694
699
|
token_address: string;
|
|
@@ -739,8 +744,9 @@ export declare const rootContract: {
|
|
|
739
744
|
result: import("zod").ZodArray<import("zod").ZodObject<{
|
|
740
745
|
asset_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
741
746
|
asset_numeraire_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
742
|
-
asset_creation_timestamp: import("zod").
|
|
743
|
-
|
|
747
|
+
asset_creation_timestamp: import("zod").ZodDate;
|
|
748
|
+
asset_current_pool: import("zod").ZodString;
|
|
749
|
+
asset_migration_timestamp: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
744
750
|
auction_pool: import("zod").ZodObject<{
|
|
745
751
|
pool_current_price: import("zod").ZodString;
|
|
746
752
|
pool_current_sqrt_price: import("zod").ZodString;
|
|
@@ -760,7 +766,7 @@ export declare const rootContract: {
|
|
|
760
766
|
pool_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
761
767
|
pool_config_starting_time: import("zod").ZodString;
|
|
762
768
|
pool_config_ending_time: import("zod").ZodString;
|
|
763
|
-
pool_migration_timestamp: import("zod").ZodNullable<import("zod").
|
|
769
|
+
pool_migration_timestamp: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
764
770
|
pool_type: import("zod").ZodString;
|
|
765
771
|
base_token: import("zod").ZodObject<{
|
|
766
772
|
token_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
@@ -868,7 +874,7 @@ export declare const rootContract: {
|
|
|
868
874
|
pool_address: `0x${string}`;
|
|
869
875
|
pool_config_starting_time: string;
|
|
870
876
|
pool_config_ending_time: string;
|
|
871
|
-
pool_migration_timestamp:
|
|
877
|
+
pool_migration_timestamp: Date | null;
|
|
872
878
|
pool_type: string;
|
|
873
879
|
base_token: {
|
|
874
880
|
token_address: `0x${string}`;
|
|
@@ -910,7 +916,7 @@ export declare const rootContract: {
|
|
|
910
916
|
pool_address: string;
|
|
911
917
|
pool_config_starting_time: string;
|
|
912
918
|
pool_config_ending_time: string;
|
|
913
|
-
pool_migration_timestamp:
|
|
919
|
+
pool_migration_timestamp: Date | null;
|
|
914
920
|
pool_type: string;
|
|
915
921
|
base_token: {
|
|
916
922
|
token_address: string;
|
|
@@ -942,7 +948,7 @@ export declare const rootContract: {
|
|
|
942
948
|
pool_current_tick: import("zod").ZodNumber;
|
|
943
949
|
pool_current_market_cap: import("zod").ZodString;
|
|
944
950
|
pool_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
945
|
-
pool_migration_timestamp: import("zod").ZodNullable<import("zod").
|
|
951
|
+
pool_migration_timestamp: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
946
952
|
pool_type: import("zod").ZodString;
|
|
947
953
|
base_token: import("zod").ZodObject<{
|
|
948
954
|
token_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
@@ -1042,7 +1048,7 @@ export declare const rootContract: {
|
|
|
1042
1048
|
pool_current_tick: number;
|
|
1043
1049
|
pool_current_market_cap: string;
|
|
1044
1050
|
pool_address: `0x${string}`;
|
|
1045
|
-
pool_migration_timestamp:
|
|
1051
|
+
pool_migration_timestamp: Date | null;
|
|
1046
1052
|
pool_type: string;
|
|
1047
1053
|
base_token: {
|
|
1048
1054
|
token_address: `0x${string}`;
|
|
@@ -1074,7 +1080,7 @@ export declare const rootContract: {
|
|
|
1074
1080
|
pool_current_tick: number;
|
|
1075
1081
|
pool_current_market_cap: string;
|
|
1076
1082
|
pool_address: string;
|
|
1077
|
-
pool_migration_timestamp:
|
|
1083
|
+
pool_migration_timestamp: Date | null;
|
|
1078
1084
|
pool_type: string;
|
|
1079
1085
|
base_token: {
|
|
1080
1086
|
token_address: string;
|
|
@@ -1102,8 +1108,9 @@ export declare const rootContract: {
|
|
|
1102
1108
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1103
1109
|
asset_address: `0x${string}`;
|
|
1104
1110
|
asset_numeraire_address: `0x${string}`;
|
|
1105
|
-
asset_creation_timestamp:
|
|
1106
|
-
|
|
1111
|
+
asset_creation_timestamp: Date;
|
|
1112
|
+
asset_current_pool: string;
|
|
1113
|
+
asset_migration_timestamp: Date | null;
|
|
1107
1114
|
auction_pool: {
|
|
1108
1115
|
pool_current_price: string;
|
|
1109
1116
|
pool_current_sqrt_price: string;
|
|
@@ -1123,7 +1130,7 @@ export declare const rootContract: {
|
|
|
1123
1130
|
pool_address: `0x${string}`;
|
|
1124
1131
|
pool_config_starting_time: string;
|
|
1125
1132
|
pool_config_ending_time: string;
|
|
1126
|
-
pool_migration_timestamp:
|
|
1133
|
+
pool_migration_timestamp: Date | null;
|
|
1127
1134
|
pool_type: string;
|
|
1128
1135
|
base_token: {
|
|
1129
1136
|
token_address: `0x${string}`;
|
|
@@ -1155,7 +1162,7 @@ export declare const rootContract: {
|
|
|
1155
1162
|
pool_current_tick: number;
|
|
1156
1163
|
pool_current_market_cap: string;
|
|
1157
1164
|
pool_address: `0x${string}`;
|
|
1158
|
-
pool_migration_timestamp:
|
|
1165
|
+
pool_migration_timestamp: Date | null;
|
|
1159
1166
|
pool_type: string;
|
|
1160
1167
|
base_token: {
|
|
1161
1168
|
token_address: `0x${string}`;
|
|
@@ -1183,8 +1190,9 @@ export declare const rootContract: {
|
|
|
1183
1190
|
}, {
|
|
1184
1191
|
asset_address: string;
|
|
1185
1192
|
asset_numeraire_address: string;
|
|
1186
|
-
asset_creation_timestamp:
|
|
1187
|
-
|
|
1193
|
+
asset_creation_timestamp: Date;
|
|
1194
|
+
asset_current_pool: string;
|
|
1195
|
+
asset_migration_timestamp: Date | null;
|
|
1188
1196
|
auction_pool: {
|
|
1189
1197
|
pool_current_price: string;
|
|
1190
1198
|
pool_current_sqrt_price: string;
|
|
@@ -1204,7 +1212,7 @@ export declare const rootContract: {
|
|
|
1204
1212
|
pool_address: string;
|
|
1205
1213
|
pool_config_starting_time: string;
|
|
1206
1214
|
pool_config_ending_time: string;
|
|
1207
|
-
pool_migration_timestamp:
|
|
1215
|
+
pool_migration_timestamp: Date | null;
|
|
1208
1216
|
pool_type: string;
|
|
1209
1217
|
base_token: {
|
|
1210
1218
|
token_address: string;
|
|
@@ -1236,7 +1244,7 @@ export declare const rootContract: {
|
|
|
1236
1244
|
pool_current_tick: number;
|
|
1237
1245
|
pool_current_market_cap: string;
|
|
1238
1246
|
pool_address: string;
|
|
1239
|
-
pool_migration_timestamp:
|
|
1247
|
+
pool_migration_timestamp: Date | null;
|
|
1240
1248
|
pool_type: string;
|
|
1241
1249
|
base_token: {
|
|
1242
1250
|
token_address: string;
|
|
@@ -1266,8 +1274,9 @@ export declare const rootContract: {
|
|
|
1266
1274
|
result: {
|
|
1267
1275
|
asset_address: `0x${string}`;
|
|
1268
1276
|
asset_numeraire_address: `0x${string}`;
|
|
1269
|
-
asset_creation_timestamp:
|
|
1270
|
-
|
|
1277
|
+
asset_creation_timestamp: Date;
|
|
1278
|
+
asset_current_pool: string;
|
|
1279
|
+
asset_migration_timestamp: Date | null;
|
|
1271
1280
|
auction_pool: {
|
|
1272
1281
|
pool_current_price: string;
|
|
1273
1282
|
pool_current_sqrt_price: string;
|
|
@@ -1287,7 +1296,7 @@ export declare const rootContract: {
|
|
|
1287
1296
|
pool_address: `0x${string}`;
|
|
1288
1297
|
pool_config_starting_time: string;
|
|
1289
1298
|
pool_config_ending_time: string;
|
|
1290
|
-
pool_migration_timestamp:
|
|
1299
|
+
pool_migration_timestamp: Date | null;
|
|
1291
1300
|
pool_type: string;
|
|
1292
1301
|
base_token: {
|
|
1293
1302
|
token_address: `0x${string}`;
|
|
@@ -1319,7 +1328,7 @@ export declare const rootContract: {
|
|
|
1319
1328
|
pool_current_tick: number;
|
|
1320
1329
|
pool_current_market_cap: string;
|
|
1321
1330
|
pool_address: `0x${string}`;
|
|
1322
|
-
pool_migration_timestamp:
|
|
1331
|
+
pool_migration_timestamp: Date | null;
|
|
1323
1332
|
pool_type: string;
|
|
1324
1333
|
base_token: {
|
|
1325
1334
|
token_address: `0x${string}`;
|
|
@@ -1349,8 +1358,9 @@ export declare const rootContract: {
|
|
|
1349
1358
|
result: {
|
|
1350
1359
|
asset_address: string;
|
|
1351
1360
|
asset_numeraire_address: string;
|
|
1352
|
-
asset_creation_timestamp:
|
|
1353
|
-
|
|
1361
|
+
asset_creation_timestamp: Date;
|
|
1362
|
+
asset_current_pool: string;
|
|
1363
|
+
asset_migration_timestamp: Date | null;
|
|
1354
1364
|
auction_pool: {
|
|
1355
1365
|
pool_current_price: string;
|
|
1356
1366
|
pool_current_sqrt_price: string;
|
|
@@ -1370,7 +1380,7 @@ export declare const rootContract: {
|
|
|
1370
1380
|
pool_address: string;
|
|
1371
1381
|
pool_config_starting_time: string;
|
|
1372
1382
|
pool_config_ending_time: string;
|
|
1373
|
-
pool_migration_timestamp:
|
|
1383
|
+
pool_migration_timestamp: Date | null;
|
|
1374
1384
|
pool_type: string;
|
|
1375
1385
|
base_token: {
|
|
1376
1386
|
token_address: string;
|
|
@@ -1402,7 +1412,7 @@ export declare const rootContract: {
|
|
|
1402
1412
|
pool_current_tick: number;
|
|
1403
1413
|
pool_current_market_cap: string;
|
|
1404
1414
|
pool_address: string;
|
|
1405
|
-
pool_migration_timestamp:
|
|
1415
|
+
pool_migration_timestamp: Date | null;
|
|
1406
1416
|
pool_type: string;
|
|
1407
1417
|
base_token: {
|
|
1408
1418
|
token_address: string;
|
|
@@ -1454,8 +1464,9 @@ export declare const rootContract: {
|
|
|
1454
1464
|
result: import("zod").ZodObject<{
|
|
1455
1465
|
asset_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
1456
1466
|
asset_numeraire_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
1457
|
-
asset_creation_timestamp: import("zod").
|
|
1458
|
-
|
|
1467
|
+
asset_creation_timestamp: import("zod").ZodDate;
|
|
1468
|
+
asset_current_pool: import("zod").ZodString;
|
|
1469
|
+
asset_migration_timestamp: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
1459
1470
|
auction_pool: import("zod").ZodObject<{
|
|
1460
1471
|
pool_current_price: import("zod").ZodString;
|
|
1461
1472
|
pool_current_sqrt_price: import("zod").ZodString;
|
|
@@ -1475,7 +1486,7 @@ export declare const rootContract: {
|
|
|
1475
1486
|
pool_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
1476
1487
|
pool_config_starting_time: import("zod").ZodString;
|
|
1477
1488
|
pool_config_ending_time: import("zod").ZodString;
|
|
1478
|
-
pool_migration_timestamp: import("zod").ZodNullable<import("zod").
|
|
1489
|
+
pool_migration_timestamp: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
1479
1490
|
pool_type: import("zod").ZodString;
|
|
1480
1491
|
base_token: import("zod").ZodObject<{
|
|
1481
1492
|
token_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
@@ -1583,7 +1594,7 @@ export declare const rootContract: {
|
|
|
1583
1594
|
pool_address: `0x${string}`;
|
|
1584
1595
|
pool_config_starting_time: string;
|
|
1585
1596
|
pool_config_ending_time: string;
|
|
1586
|
-
pool_migration_timestamp:
|
|
1597
|
+
pool_migration_timestamp: Date | null;
|
|
1587
1598
|
pool_type: string;
|
|
1588
1599
|
base_token: {
|
|
1589
1600
|
token_address: `0x${string}`;
|
|
@@ -1625,7 +1636,7 @@ export declare const rootContract: {
|
|
|
1625
1636
|
pool_address: string;
|
|
1626
1637
|
pool_config_starting_time: string;
|
|
1627
1638
|
pool_config_ending_time: string;
|
|
1628
|
-
pool_migration_timestamp:
|
|
1639
|
+
pool_migration_timestamp: Date | null;
|
|
1629
1640
|
pool_type: string;
|
|
1630
1641
|
base_token: {
|
|
1631
1642
|
token_address: string;
|
|
@@ -1657,7 +1668,7 @@ export declare const rootContract: {
|
|
|
1657
1668
|
pool_current_tick: import("zod").ZodNumber;
|
|
1658
1669
|
pool_current_market_cap: import("zod").ZodString;
|
|
1659
1670
|
pool_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
1660
|
-
pool_migration_timestamp: import("zod").ZodNullable<import("zod").
|
|
1671
|
+
pool_migration_timestamp: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
1661
1672
|
pool_type: import("zod").ZodString;
|
|
1662
1673
|
base_token: import("zod").ZodObject<{
|
|
1663
1674
|
token_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
@@ -1757,7 +1768,7 @@ export declare const rootContract: {
|
|
|
1757
1768
|
pool_current_tick: number;
|
|
1758
1769
|
pool_current_market_cap: string;
|
|
1759
1770
|
pool_address: `0x${string}`;
|
|
1760
|
-
pool_migration_timestamp:
|
|
1771
|
+
pool_migration_timestamp: Date | null;
|
|
1761
1772
|
pool_type: string;
|
|
1762
1773
|
base_token: {
|
|
1763
1774
|
token_address: `0x${string}`;
|
|
@@ -1789,7 +1800,7 @@ export declare const rootContract: {
|
|
|
1789
1800
|
pool_current_tick: number;
|
|
1790
1801
|
pool_current_market_cap: string;
|
|
1791
1802
|
pool_address: string;
|
|
1792
|
-
pool_migration_timestamp:
|
|
1803
|
+
pool_migration_timestamp: Date | null;
|
|
1793
1804
|
pool_type: string;
|
|
1794
1805
|
base_token: {
|
|
1795
1806
|
token_address: string;
|
|
@@ -1817,8 +1828,9 @@ export declare const rootContract: {
|
|
|
1817
1828
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1818
1829
|
asset_address: `0x${string}`;
|
|
1819
1830
|
asset_numeraire_address: `0x${string}`;
|
|
1820
|
-
asset_creation_timestamp:
|
|
1821
|
-
|
|
1831
|
+
asset_creation_timestamp: Date;
|
|
1832
|
+
asset_current_pool: string;
|
|
1833
|
+
asset_migration_timestamp: Date | null;
|
|
1822
1834
|
auction_pool: {
|
|
1823
1835
|
pool_current_price: string;
|
|
1824
1836
|
pool_current_sqrt_price: string;
|
|
@@ -1838,7 +1850,7 @@ export declare const rootContract: {
|
|
|
1838
1850
|
pool_address: `0x${string}`;
|
|
1839
1851
|
pool_config_starting_time: string;
|
|
1840
1852
|
pool_config_ending_time: string;
|
|
1841
|
-
pool_migration_timestamp:
|
|
1853
|
+
pool_migration_timestamp: Date | null;
|
|
1842
1854
|
pool_type: string;
|
|
1843
1855
|
base_token: {
|
|
1844
1856
|
token_address: `0x${string}`;
|
|
@@ -1870,7 +1882,7 @@ export declare const rootContract: {
|
|
|
1870
1882
|
pool_current_tick: number;
|
|
1871
1883
|
pool_current_market_cap: string;
|
|
1872
1884
|
pool_address: `0x${string}`;
|
|
1873
|
-
pool_migration_timestamp:
|
|
1885
|
+
pool_migration_timestamp: Date | null;
|
|
1874
1886
|
pool_type: string;
|
|
1875
1887
|
base_token: {
|
|
1876
1888
|
token_address: `0x${string}`;
|
|
@@ -1898,8 +1910,9 @@ export declare const rootContract: {
|
|
|
1898
1910
|
}, {
|
|
1899
1911
|
asset_address: string;
|
|
1900
1912
|
asset_numeraire_address: string;
|
|
1901
|
-
asset_creation_timestamp:
|
|
1902
|
-
|
|
1913
|
+
asset_creation_timestamp: Date;
|
|
1914
|
+
asset_current_pool: string;
|
|
1915
|
+
asset_migration_timestamp: Date | null;
|
|
1903
1916
|
auction_pool: {
|
|
1904
1917
|
pool_current_price: string;
|
|
1905
1918
|
pool_current_sqrt_price: string;
|
|
@@ -1919,7 +1932,7 @@ export declare const rootContract: {
|
|
|
1919
1932
|
pool_address: string;
|
|
1920
1933
|
pool_config_starting_time: string;
|
|
1921
1934
|
pool_config_ending_time: string;
|
|
1922
|
-
pool_migration_timestamp:
|
|
1935
|
+
pool_migration_timestamp: Date | null;
|
|
1923
1936
|
pool_type: string;
|
|
1924
1937
|
base_token: {
|
|
1925
1938
|
token_address: string;
|
|
@@ -1951,7 +1964,7 @@ export declare const rootContract: {
|
|
|
1951
1964
|
pool_current_tick: number;
|
|
1952
1965
|
pool_current_market_cap: string;
|
|
1953
1966
|
pool_address: string;
|
|
1954
|
-
pool_migration_timestamp:
|
|
1967
|
+
pool_migration_timestamp: Date | null;
|
|
1955
1968
|
pool_type: string;
|
|
1956
1969
|
base_token: {
|
|
1957
1970
|
token_address: string;
|
|
@@ -1981,8 +1994,9 @@ export declare const rootContract: {
|
|
|
1981
1994
|
result: {
|
|
1982
1995
|
asset_address: `0x${string}`;
|
|
1983
1996
|
asset_numeraire_address: `0x${string}`;
|
|
1984
|
-
asset_creation_timestamp:
|
|
1985
|
-
|
|
1997
|
+
asset_creation_timestamp: Date;
|
|
1998
|
+
asset_current_pool: string;
|
|
1999
|
+
asset_migration_timestamp: Date | null;
|
|
1986
2000
|
auction_pool: {
|
|
1987
2001
|
pool_current_price: string;
|
|
1988
2002
|
pool_current_sqrt_price: string;
|
|
@@ -2002,7 +2016,7 @@ export declare const rootContract: {
|
|
|
2002
2016
|
pool_address: `0x${string}`;
|
|
2003
2017
|
pool_config_starting_time: string;
|
|
2004
2018
|
pool_config_ending_time: string;
|
|
2005
|
-
pool_migration_timestamp:
|
|
2019
|
+
pool_migration_timestamp: Date | null;
|
|
2006
2020
|
pool_type: string;
|
|
2007
2021
|
base_token: {
|
|
2008
2022
|
token_address: `0x${string}`;
|
|
@@ -2034,7 +2048,7 @@ export declare const rootContract: {
|
|
|
2034
2048
|
pool_current_tick: number;
|
|
2035
2049
|
pool_current_market_cap: string;
|
|
2036
2050
|
pool_address: `0x${string}`;
|
|
2037
|
-
pool_migration_timestamp:
|
|
2051
|
+
pool_migration_timestamp: Date | null;
|
|
2038
2052
|
pool_type: string;
|
|
2039
2053
|
base_token: {
|
|
2040
2054
|
token_address: `0x${string}`;
|
|
@@ -2064,8 +2078,9 @@ export declare const rootContract: {
|
|
|
2064
2078
|
result: {
|
|
2065
2079
|
asset_address: string;
|
|
2066
2080
|
asset_numeraire_address: string;
|
|
2067
|
-
asset_creation_timestamp:
|
|
2068
|
-
|
|
2081
|
+
asset_creation_timestamp: Date;
|
|
2082
|
+
asset_current_pool: string;
|
|
2083
|
+
asset_migration_timestamp: Date | null;
|
|
2069
2084
|
auction_pool: {
|
|
2070
2085
|
pool_current_price: string;
|
|
2071
2086
|
pool_current_sqrt_price: string;
|
|
@@ -2085,7 +2100,7 @@ export declare const rootContract: {
|
|
|
2085
2100
|
pool_address: string;
|
|
2086
2101
|
pool_config_starting_time: string;
|
|
2087
2102
|
pool_config_ending_time: string;
|
|
2088
|
-
pool_migration_timestamp:
|
|
2103
|
+
pool_migration_timestamp: Date | null;
|
|
2089
2104
|
pool_type: string;
|
|
2090
2105
|
base_token: {
|
|
2091
2106
|
token_address: string;
|
|
@@ -2117,7 +2132,7 @@ export declare const rootContract: {
|
|
|
2117
2132
|
pool_current_tick: number;
|
|
2118
2133
|
pool_current_market_cap: string;
|
|
2119
2134
|
pool_address: string;
|
|
2120
|
-
pool_migration_timestamp:
|
|
2135
|
+
pool_migration_timestamp: Date | null;
|
|
2121
2136
|
pool_type: string;
|
|
2122
2137
|
base_token: {
|
|
2123
2138
|
token_address: string;
|