@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
|
@@ -4,16 +4,16 @@ export declare const rootContract: {
|
|
|
4
4
|
description: "List all assets for an integrator, with optional status filtering, pagination and default ordering by creation timestamp";
|
|
5
5
|
query: import("zod").ZodObject<{
|
|
6
6
|
chainId: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
|
|
7
|
-
status: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").
|
|
7
|
+
status: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<[import("..").AssetStatus.ALL, import("..").AssetStatus.GRADUATED, import("..").AssetStatus.INCOMING, import("..").AssetStatus.LIVE]>>>;
|
|
8
8
|
limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
9
9
|
offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
10
10
|
}, "strip", import("zod").ZodTypeAny, {
|
|
11
|
-
status: import("..").AssetStatus;
|
|
11
|
+
status: import("..").AssetStatus.LIVE | import("..").AssetStatus.GRADUATED | import("..").AssetStatus.INCOMING | import("..").AssetStatus.ALL;
|
|
12
12
|
chainId: number;
|
|
13
13
|
limit: number;
|
|
14
14
|
offset: number;
|
|
15
15
|
}, {
|
|
16
|
-
status?: import("..").AssetStatus | undefined;
|
|
16
|
+
status?: import("..").AssetStatus.LIVE | import("..").AssetStatus.GRADUATED | import("..").AssetStatus.INCOMING | import("..").AssetStatus.ALL | undefined;
|
|
17
17
|
chainId?: number | undefined;
|
|
18
18
|
limit?: number | undefined;
|
|
19
19
|
offset?: number | undefined;
|
|
@@ -22,12 +22,13 @@ export declare const rootContract: {
|
|
|
22
22
|
path: "/assets/";
|
|
23
23
|
responses: {
|
|
24
24
|
200: import("zod").ZodObject<{
|
|
25
|
-
result: import("zod").ZodArray<import("zod").ZodObject<{
|
|
25
|
+
result: import("zod").ZodArray<import("zod").ZodEffects<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
28
|
asset_creation_timestamp: import("zod").ZodDate;
|
|
29
29
|
asset_current_pool: import("zod").ZodString;
|
|
30
30
|
asset_migration_timestamp: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
31
|
+
asset_status: import("zod").ZodDefault<import("zod").ZodString>;
|
|
31
32
|
auction_pool: import("zod").ZodObject<{
|
|
32
33
|
pool_current_price: import("zod").ZodString;
|
|
33
34
|
pool_current_sqrt_price: import("zod").ZodString;
|
|
@@ -387,6 +388,173 @@ export declare const rootContract: {
|
|
|
387
388
|
};
|
|
388
389
|
}>;
|
|
389
390
|
}, "strip", import("zod").ZodTypeAny, {
|
|
391
|
+
asset_address: `0x${string}`;
|
|
392
|
+
asset_numeraire_address: `0x${string}`;
|
|
393
|
+
asset_creation_timestamp: Date;
|
|
394
|
+
asset_current_pool: string;
|
|
395
|
+
asset_migration_timestamp: Date | null;
|
|
396
|
+
asset_status: string;
|
|
397
|
+
auction_pool: {
|
|
398
|
+
pool_current_price: string;
|
|
399
|
+
pool_current_sqrt_price: string;
|
|
400
|
+
pool_current_fdv: string;
|
|
401
|
+
pool_current_liquidity: string;
|
|
402
|
+
pool_current_tick: number;
|
|
403
|
+
pool_last_epoch: number;
|
|
404
|
+
pool_current_market_cap: string;
|
|
405
|
+
pool_current_fees_accrued: string;
|
|
406
|
+
pool_current_total_proceeds: string;
|
|
407
|
+
pool_current_total_tokens_sold: string;
|
|
408
|
+
pool_last_epoch_total_tokens_sold: string;
|
|
409
|
+
pool_current_sale_progress_percentage: number;
|
|
410
|
+
pool_config_max_proceeds: string;
|
|
411
|
+
pool_config_min_proceeds: string;
|
|
412
|
+
pool_id: string;
|
|
413
|
+
pool_address: `0x${string}`;
|
|
414
|
+
pool_config_starting_time: string;
|
|
415
|
+
pool_config_ending_time: string;
|
|
416
|
+
pool_migration_timestamp: Date | null;
|
|
417
|
+
pool_type: string;
|
|
418
|
+
base_token: {
|
|
419
|
+
token_address: `0x${string}`;
|
|
420
|
+
token_name: string;
|
|
421
|
+
token_description: string | null;
|
|
422
|
+
token_symbol: string;
|
|
423
|
+
token_uri_data: {
|
|
424
|
+
name?: string | undefined;
|
|
425
|
+
description?: string | undefined;
|
|
426
|
+
image_hash?: string | undefined;
|
|
427
|
+
fee_receiver?: string | undefined;
|
|
428
|
+
social_links?: string[] | undefined;
|
|
429
|
+
vesting_recipients?: {
|
|
430
|
+
address: string;
|
|
431
|
+
percentage: number;
|
|
432
|
+
}[] | undefined;
|
|
433
|
+
} | null;
|
|
434
|
+
token_image_public_url: string | null;
|
|
435
|
+
token_creator_address: `0x${string}`;
|
|
436
|
+
token_fee_receiver_address: `0x${string}`;
|
|
437
|
+
token_vesting_recipient_addresses: `0x${string}`[];
|
|
438
|
+
};
|
|
439
|
+
};
|
|
440
|
+
graduation_pool: {
|
|
441
|
+
pool_current_price: string;
|
|
442
|
+
pool_current_sqrt_price: string;
|
|
443
|
+
pool_current_fdv: string;
|
|
444
|
+
pool_current_liquidity: string;
|
|
445
|
+
pool_current_tick: number;
|
|
446
|
+
pool_current_market_cap: string;
|
|
447
|
+
pool_address: `0x${string}`;
|
|
448
|
+
pool_migration_timestamp: Date | null;
|
|
449
|
+
pool_type: string;
|
|
450
|
+
base_token: {
|
|
451
|
+
token_address: `0x${string}`;
|
|
452
|
+
token_name: string;
|
|
453
|
+
token_description: string | null;
|
|
454
|
+
token_symbol: string;
|
|
455
|
+
token_uri_data: {
|
|
456
|
+
name?: string | undefined;
|
|
457
|
+
description?: string | undefined;
|
|
458
|
+
image_hash?: string | undefined;
|
|
459
|
+
fee_receiver?: string | undefined;
|
|
460
|
+
social_links?: string[] | undefined;
|
|
461
|
+
vesting_recipients?: {
|
|
462
|
+
address: string;
|
|
463
|
+
percentage: number;
|
|
464
|
+
}[] | undefined;
|
|
465
|
+
} | null;
|
|
466
|
+
token_image_public_url: string | null;
|
|
467
|
+
token_creator_address: `0x${string}`;
|
|
468
|
+
token_fee_receiver_address: `0x${string}`;
|
|
469
|
+
token_vesting_recipient_addresses: `0x${string}`[];
|
|
470
|
+
integrator_address: string;
|
|
471
|
+
};
|
|
472
|
+
};
|
|
473
|
+
}, {
|
|
474
|
+
asset_address: string;
|
|
475
|
+
asset_numeraire_address: string;
|
|
476
|
+
asset_creation_timestamp: Date;
|
|
477
|
+
asset_current_pool: string;
|
|
478
|
+
asset_migration_timestamp: Date | null;
|
|
479
|
+
auction_pool: {
|
|
480
|
+
pool_current_price: string;
|
|
481
|
+
pool_current_sqrt_price: string;
|
|
482
|
+
pool_current_fdv: string;
|
|
483
|
+
pool_current_liquidity: string;
|
|
484
|
+
pool_current_tick: number;
|
|
485
|
+
pool_last_epoch: number;
|
|
486
|
+
pool_current_market_cap: string;
|
|
487
|
+
pool_current_fees_accrued: string;
|
|
488
|
+
pool_current_total_proceeds: string;
|
|
489
|
+
pool_current_total_tokens_sold: string;
|
|
490
|
+
pool_last_epoch_total_tokens_sold: string;
|
|
491
|
+
pool_current_sale_progress_percentage: number;
|
|
492
|
+
pool_config_max_proceeds: string;
|
|
493
|
+
pool_config_min_proceeds: string;
|
|
494
|
+
pool_id: string;
|
|
495
|
+
pool_address: string;
|
|
496
|
+
pool_config_starting_time: string;
|
|
497
|
+
pool_config_ending_time: string;
|
|
498
|
+
pool_migration_timestamp: Date | null;
|
|
499
|
+
pool_type: string;
|
|
500
|
+
base_token: {
|
|
501
|
+
token_address: string;
|
|
502
|
+
token_name: string;
|
|
503
|
+
token_description: string | null;
|
|
504
|
+
token_symbol: string;
|
|
505
|
+
token_uri_data: {
|
|
506
|
+
name?: string | undefined;
|
|
507
|
+
description?: string | undefined;
|
|
508
|
+
image_hash?: string | undefined;
|
|
509
|
+
fee_receiver?: string | undefined;
|
|
510
|
+
social_links?: string[] | undefined;
|
|
511
|
+
vesting_recipients?: {
|
|
512
|
+
address: string;
|
|
513
|
+
percentage: number;
|
|
514
|
+
}[] | undefined;
|
|
515
|
+
} | null;
|
|
516
|
+
token_image_public_url: string | null;
|
|
517
|
+
token_creator_address: string;
|
|
518
|
+
token_fee_receiver_address: string;
|
|
519
|
+
token_vesting_recipient_addresses: string[];
|
|
520
|
+
};
|
|
521
|
+
};
|
|
522
|
+
graduation_pool: {
|
|
523
|
+
pool_current_price: string;
|
|
524
|
+
pool_current_sqrt_price: string;
|
|
525
|
+
pool_current_fdv: string;
|
|
526
|
+
pool_current_liquidity: string;
|
|
527
|
+
pool_current_tick: number;
|
|
528
|
+
pool_current_market_cap: string;
|
|
529
|
+
pool_address: string;
|
|
530
|
+
pool_migration_timestamp: Date | null;
|
|
531
|
+
pool_type: string;
|
|
532
|
+
base_token: {
|
|
533
|
+
token_address: string;
|
|
534
|
+
token_name: string;
|
|
535
|
+
token_description: string | null;
|
|
536
|
+
token_symbol: string;
|
|
537
|
+
token_uri_data: {
|
|
538
|
+
name?: string | undefined;
|
|
539
|
+
description?: string | undefined;
|
|
540
|
+
image_hash?: string | undefined;
|
|
541
|
+
fee_receiver?: string | undefined;
|
|
542
|
+
social_links?: string[] | undefined;
|
|
543
|
+
vesting_recipients?: {
|
|
544
|
+
address: string;
|
|
545
|
+
percentage: number;
|
|
546
|
+
}[] | undefined;
|
|
547
|
+
} | null;
|
|
548
|
+
token_image_public_url: string | null;
|
|
549
|
+
token_creator_address: string;
|
|
550
|
+
token_fee_receiver_address: string;
|
|
551
|
+
token_vesting_recipient_addresses: string[];
|
|
552
|
+
integrator_address: string;
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
asset_status?: string | undefined;
|
|
556
|
+
}>, {
|
|
557
|
+
asset_status: string;
|
|
390
558
|
asset_address: `0x${string}`;
|
|
391
559
|
asset_numeraire_address: `0x${string}`;
|
|
392
560
|
asset_creation_timestamp: Date;
|
|
@@ -550,9 +718,11 @@ export declare const rootContract: {
|
|
|
550
718
|
integrator_address: string;
|
|
551
719
|
};
|
|
552
720
|
};
|
|
721
|
+
asset_status?: string | undefined;
|
|
553
722
|
}>, "many">;
|
|
554
723
|
}, "strip", import("zod").ZodTypeAny, {
|
|
555
724
|
result: {
|
|
725
|
+
asset_status: string;
|
|
556
726
|
asset_address: `0x${string}`;
|
|
557
727
|
asset_numeraire_address: `0x${string}`;
|
|
558
728
|
asset_creation_timestamp: Date;
|
|
@@ -718,6 +888,7 @@ export declare const rootContract: {
|
|
|
718
888
|
integrator_address: string;
|
|
719
889
|
};
|
|
720
890
|
};
|
|
891
|
+
asset_status?: string | undefined;
|
|
721
892
|
}[];
|
|
722
893
|
}>;
|
|
723
894
|
};
|
|
@@ -741,12 +912,13 @@ export declare const rootContract: {
|
|
|
741
912
|
path: "/assets/search";
|
|
742
913
|
responses: {
|
|
743
914
|
200: import("zod").ZodObject<{
|
|
744
|
-
result: import("zod").ZodArray<import("zod").ZodObject<{
|
|
915
|
+
result: import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodObject<{
|
|
745
916
|
asset_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
746
917
|
asset_numeraire_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
747
918
|
asset_creation_timestamp: import("zod").ZodDate;
|
|
748
919
|
asset_current_pool: import("zod").ZodString;
|
|
749
920
|
asset_migration_timestamp: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
921
|
+
asset_status: import("zod").ZodDefault<import("zod").ZodString>;
|
|
750
922
|
auction_pool: import("zod").ZodObject<{
|
|
751
923
|
pool_current_price: import("zod").ZodString;
|
|
752
924
|
pool_current_sqrt_price: import("zod").ZodString;
|
|
@@ -1106,6 +1278,173 @@ export declare const rootContract: {
|
|
|
1106
1278
|
};
|
|
1107
1279
|
}>;
|
|
1108
1280
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1281
|
+
asset_address: `0x${string}`;
|
|
1282
|
+
asset_numeraire_address: `0x${string}`;
|
|
1283
|
+
asset_creation_timestamp: Date;
|
|
1284
|
+
asset_current_pool: string;
|
|
1285
|
+
asset_migration_timestamp: Date | null;
|
|
1286
|
+
asset_status: string;
|
|
1287
|
+
auction_pool: {
|
|
1288
|
+
pool_current_price: string;
|
|
1289
|
+
pool_current_sqrt_price: string;
|
|
1290
|
+
pool_current_fdv: string;
|
|
1291
|
+
pool_current_liquidity: string;
|
|
1292
|
+
pool_current_tick: number;
|
|
1293
|
+
pool_last_epoch: number;
|
|
1294
|
+
pool_current_market_cap: string;
|
|
1295
|
+
pool_current_fees_accrued: string;
|
|
1296
|
+
pool_current_total_proceeds: string;
|
|
1297
|
+
pool_current_total_tokens_sold: string;
|
|
1298
|
+
pool_last_epoch_total_tokens_sold: string;
|
|
1299
|
+
pool_current_sale_progress_percentage: number;
|
|
1300
|
+
pool_config_max_proceeds: string;
|
|
1301
|
+
pool_config_min_proceeds: string;
|
|
1302
|
+
pool_id: string;
|
|
1303
|
+
pool_address: `0x${string}`;
|
|
1304
|
+
pool_config_starting_time: string;
|
|
1305
|
+
pool_config_ending_time: string;
|
|
1306
|
+
pool_migration_timestamp: Date | null;
|
|
1307
|
+
pool_type: string;
|
|
1308
|
+
base_token: {
|
|
1309
|
+
token_address: `0x${string}`;
|
|
1310
|
+
token_name: string;
|
|
1311
|
+
token_description: string | null;
|
|
1312
|
+
token_symbol: string;
|
|
1313
|
+
token_uri_data: {
|
|
1314
|
+
name?: string | undefined;
|
|
1315
|
+
description?: string | undefined;
|
|
1316
|
+
image_hash?: string | undefined;
|
|
1317
|
+
fee_receiver?: string | undefined;
|
|
1318
|
+
social_links?: string[] | undefined;
|
|
1319
|
+
vesting_recipients?: {
|
|
1320
|
+
address: string;
|
|
1321
|
+
percentage: number;
|
|
1322
|
+
}[] | undefined;
|
|
1323
|
+
} | null;
|
|
1324
|
+
token_image_public_url: string | null;
|
|
1325
|
+
token_creator_address: `0x${string}`;
|
|
1326
|
+
token_fee_receiver_address: `0x${string}`;
|
|
1327
|
+
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1328
|
+
};
|
|
1329
|
+
};
|
|
1330
|
+
graduation_pool: {
|
|
1331
|
+
pool_current_price: string;
|
|
1332
|
+
pool_current_sqrt_price: string;
|
|
1333
|
+
pool_current_fdv: string;
|
|
1334
|
+
pool_current_liquidity: string;
|
|
1335
|
+
pool_current_tick: number;
|
|
1336
|
+
pool_current_market_cap: string;
|
|
1337
|
+
pool_address: `0x${string}`;
|
|
1338
|
+
pool_migration_timestamp: Date | null;
|
|
1339
|
+
pool_type: string;
|
|
1340
|
+
base_token: {
|
|
1341
|
+
token_address: `0x${string}`;
|
|
1342
|
+
token_name: string;
|
|
1343
|
+
token_description: string | null;
|
|
1344
|
+
token_symbol: string;
|
|
1345
|
+
token_uri_data: {
|
|
1346
|
+
name?: string | undefined;
|
|
1347
|
+
description?: string | undefined;
|
|
1348
|
+
image_hash?: string | undefined;
|
|
1349
|
+
fee_receiver?: string | undefined;
|
|
1350
|
+
social_links?: string[] | undefined;
|
|
1351
|
+
vesting_recipients?: {
|
|
1352
|
+
address: string;
|
|
1353
|
+
percentage: number;
|
|
1354
|
+
}[] | undefined;
|
|
1355
|
+
} | null;
|
|
1356
|
+
token_image_public_url: string | null;
|
|
1357
|
+
token_creator_address: `0x${string}`;
|
|
1358
|
+
token_fee_receiver_address: `0x${string}`;
|
|
1359
|
+
token_vesting_recipient_addresses: `0x${string}`[];
|
|
1360
|
+
integrator_address: string;
|
|
1361
|
+
};
|
|
1362
|
+
};
|
|
1363
|
+
}, {
|
|
1364
|
+
asset_address: string;
|
|
1365
|
+
asset_numeraire_address: string;
|
|
1366
|
+
asset_creation_timestamp: Date;
|
|
1367
|
+
asset_current_pool: string;
|
|
1368
|
+
asset_migration_timestamp: Date | null;
|
|
1369
|
+
auction_pool: {
|
|
1370
|
+
pool_current_price: string;
|
|
1371
|
+
pool_current_sqrt_price: string;
|
|
1372
|
+
pool_current_fdv: string;
|
|
1373
|
+
pool_current_liquidity: string;
|
|
1374
|
+
pool_current_tick: number;
|
|
1375
|
+
pool_last_epoch: number;
|
|
1376
|
+
pool_current_market_cap: string;
|
|
1377
|
+
pool_current_fees_accrued: string;
|
|
1378
|
+
pool_current_total_proceeds: string;
|
|
1379
|
+
pool_current_total_tokens_sold: string;
|
|
1380
|
+
pool_last_epoch_total_tokens_sold: string;
|
|
1381
|
+
pool_current_sale_progress_percentage: number;
|
|
1382
|
+
pool_config_max_proceeds: string;
|
|
1383
|
+
pool_config_min_proceeds: string;
|
|
1384
|
+
pool_id: string;
|
|
1385
|
+
pool_address: string;
|
|
1386
|
+
pool_config_starting_time: string;
|
|
1387
|
+
pool_config_ending_time: string;
|
|
1388
|
+
pool_migration_timestamp: Date | null;
|
|
1389
|
+
pool_type: string;
|
|
1390
|
+
base_token: {
|
|
1391
|
+
token_address: string;
|
|
1392
|
+
token_name: string;
|
|
1393
|
+
token_description: string | null;
|
|
1394
|
+
token_symbol: string;
|
|
1395
|
+
token_uri_data: {
|
|
1396
|
+
name?: string | undefined;
|
|
1397
|
+
description?: string | undefined;
|
|
1398
|
+
image_hash?: string | undefined;
|
|
1399
|
+
fee_receiver?: string | undefined;
|
|
1400
|
+
social_links?: string[] | undefined;
|
|
1401
|
+
vesting_recipients?: {
|
|
1402
|
+
address: string;
|
|
1403
|
+
percentage: number;
|
|
1404
|
+
}[] | undefined;
|
|
1405
|
+
} | null;
|
|
1406
|
+
token_image_public_url: string | null;
|
|
1407
|
+
token_creator_address: string;
|
|
1408
|
+
token_fee_receiver_address: string;
|
|
1409
|
+
token_vesting_recipient_addresses: string[];
|
|
1410
|
+
};
|
|
1411
|
+
};
|
|
1412
|
+
graduation_pool: {
|
|
1413
|
+
pool_current_price: string;
|
|
1414
|
+
pool_current_sqrt_price: string;
|
|
1415
|
+
pool_current_fdv: string;
|
|
1416
|
+
pool_current_liquidity: string;
|
|
1417
|
+
pool_current_tick: number;
|
|
1418
|
+
pool_current_market_cap: string;
|
|
1419
|
+
pool_address: string;
|
|
1420
|
+
pool_migration_timestamp: Date | null;
|
|
1421
|
+
pool_type: string;
|
|
1422
|
+
base_token: {
|
|
1423
|
+
token_address: string;
|
|
1424
|
+
token_name: string;
|
|
1425
|
+
token_description: string | null;
|
|
1426
|
+
token_symbol: string;
|
|
1427
|
+
token_uri_data: {
|
|
1428
|
+
name?: string | undefined;
|
|
1429
|
+
description?: string | undefined;
|
|
1430
|
+
image_hash?: string | undefined;
|
|
1431
|
+
fee_receiver?: string | undefined;
|
|
1432
|
+
social_links?: string[] | undefined;
|
|
1433
|
+
vesting_recipients?: {
|
|
1434
|
+
address: string;
|
|
1435
|
+
percentage: number;
|
|
1436
|
+
}[] | undefined;
|
|
1437
|
+
} | null;
|
|
1438
|
+
token_image_public_url: string | null;
|
|
1439
|
+
token_creator_address: string;
|
|
1440
|
+
token_fee_receiver_address: string;
|
|
1441
|
+
token_vesting_recipient_addresses: string[];
|
|
1442
|
+
integrator_address: string;
|
|
1443
|
+
};
|
|
1444
|
+
};
|
|
1445
|
+
asset_status?: string | undefined;
|
|
1446
|
+
}>, {
|
|
1447
|
+
asset_status: string;
|
|
1109
1448
|
asset_address: `0x${string}`;
|
|
1110
1449
|
asset_numeraire_address: `0x${string}`;
|
|
1111
1450
|
asset_creation_timestamp: Date;
|
|
@@ -1269,9 +1608,11 @@ export declare const rootContract: {
|
|
|
1269
1608
|
integrator_address: string;
|
|
1270
1609
|
};
|
|
1271
1610
|
};
|
|
1611
|
+
asset_status?: string | undefined;
|
|
1272
1612
|
}>, "many">;
|
|
1273
1613
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1274
1614
|
result: {
|
|
1615
|
+
asset_status: string;
|
|
1275
1616
|
asset_address: `0x${string}`;
|
|
1276
1617
|
asset_numeraire_address: `0x${string}`;
|
|
1277
1618
|
asset_creation_timestamp: Date;
|
|
@@ -1437,6 +1778,7 @@ export declare const rootContract: {
|
|
|
1437
1778
|
integrator_address: string;
|
|
1438
1779
|
};
|
|
1439
1780
|
};
|
|
1781
|
+
asset_status?: string | undefined;
|
|
1440
1782
|
}[];
|
|
1441
1783
|
}>;
|
|
1442
1784
|
};
|
|
@@ -1461,12 +1803,13 @@ export declare const rootContract: {
|
|
|
1461
1803
|
path: "/assets/:assetAddress";
|
|
1462
1804
|
responses: {
|
|
1463
1805
|
200: import("zod").ZodObject<{
|
|
1464
|
-
result: import("zod").ZodObject<{
|
|
1806
|
+
result: import("zod").ZodEffects<import("zod").ZodObject<{
|
|
1465
1807
|
asset_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
1466
1808
|
asset_numeraire_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
1467
1809
|
asset_creation_timestamp: import("zod").ZodDate;
|
|
1468
1810
|
asset_current_pool: import("zod").ZodString;
|
|
1469
1811
|
asset_migration_timestamp: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
1812
|
+
asset_status: import("zod").ZodDefault<import("zod").ZodString>;
|
|
1470
1813
|
auction_pool: import("zod").ZodObject<{
|
|
1471
1814
|
pool_current_price: import("zod").ZodString;
|
|
1472
1815
|
pool_current_sqrt_price: import("zod").ZodString;
|
|
@@ -1826,6 +2169,173 @@ export declare const rootContract: {
|
|
|
1826
2169
|
};
|
|
1827
2170
|
}>;
|
|
1828
2171
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2172
|
+
asset_address: `0x${string}`;
|
|
2173
|
+
asset_numeraire_address: `0x${string}`;
|
|
2174
|
+
asset_creation_timestamp: Date;
|
|
2175
|
+
asset_current_pool: string;
|
|
2176
|
+
asset_migration_timestamp: Date | null;
|
|
2177
|
+
asset_status: string;
|
|
2178
|
+
auction_pool: {
|
|
2179
|
+
pool_current_price: string;
|
|
2180
|
+
pool_current_sqrt_price: string;
|
|
2181
|
+
pool_current_fdv: string;
|
|
2182
|
+
pool_current_liquidity: string;
|
|
2183
|
+
pool_current_tick: number;
|
|
2184
|
+
pool_last_epoch: number;
|
|
2185
|
+
pool_current_market_cap: string;
|
|
2186
|
+
pool_current_fees_accrued: string;
|
|
2187
|
+
pool_current_total_proceeds: string;
|
|
2188
|
+
pool_current_total_tokens_sold: string;
|
|
2189
|
+
pool_last_epoch_total_tokens_sold: string;
|
|
2190
|
+
pool_current_sale_progress_percentage: number;
|
|
2191
|
+
pool_config_max_proceeds: string;
|
|
2192
|
+
pool_config_min_proceeds: string;
|
|
2193
|
+
pool_id: string;
|
|
2194
|
+
pool_address: `0x${string}`;
|
|
2195
|
+
pool_config_starting_time: string;
|
|
2196
|
+
pool_config_ending_time: string;
|
|
2197
|
+
pool_migration_timestamp: Date | null;
|
|
2198
|
+
pool_type: string;
|
|
2199
|
+
base_token: {
|
|
2200
|
+
token_address: `0x${string}`;
|
|
2201
|
+
token_name: string;
|
|
2202
|
+
token_description: string | null;
|
|
2203
|
+
token_symbol: string;
|
|
2204
|
+
token_uri_data: {
|
|
2205
|
+
name?: string | undefined;
|
|
2206
|
+
description?: string | undefined;
|
|
2207
|
+
image_hash?: string | undefined;
|
|
2208
|
+
fee_receiver?: string | undefined;
|
|
2209
|
+
social_links?: string[] | undefined;
|
|
2210
|
+
vesting_recipients?: {
|
|
2211
|
+
address: string;
|
|
2212
|
+
percentage: number;
|
|
2213
|
+
}[] | undefined;
|
|
2214
|
+
} | null;
|
|
2215
|
+
token_image_public_url: string | null;
|
|
2216
|
+
token_creator_address: `0x${string}`;
|
|
2217
|
+
token_fee_receiver_address: `0x${string}`;
|
|
2218
|
+
token_vesting_recipient_addresses: `0x${string}`[];
|
|
2219
|
+
};
|
|
2220
|
+
};
|
|
2221
|
+
graduation_pool: {
|
|
2222
|
+
pool_current_price: string;
|
|
2223
|
+
pool_current_sqrt_price: string;
|
|
2224
|
+
pool_current_fdv: string;
|
|
2225
|
+
pool_current_liquidity: string;
|
|
2226
|
+
pool_current_tick: number;
|
|
2227
|
+
pool_current_market_cap: string;
|
|
2228
|
+
pool_address: `0x${string}`;
|
|
2229
|
+
pool_migration_timestamp: Date | null;
|
|
2230
|
+
pool_type: string;
|
|
2231
|
+
base_token: {
|
|
2232
|
+
token_address: `0x${string}`;
|
|
2233
|
+
token_name: string;
|
|
2234
|
+
token_description: string | null;
|
|
2235
|
+
token_symbol: string;
|
|
2236
|
+
token_uri_data: {
|
|
2237
|
+
name?: string | undefined;
|
|
2238
|
+
description?: string | undefined;
|
|
2239
|
+
image_hash?: string | undefined;
|
|
2240
|
+
fee_receiver?: string | undefined;
|
|
2241
|
+
social_links?: string[] | undefined;
|
|
2242
|
+
vesting_recipients?: {
|
|
2243
|
+
address: string;
|
|
2244
|
+
percentage: number;
|
|
2245
|
+
}[] | undefined;
|
|
2246
|
+
} | null;
|
|
2247
|
+
token_image_public_url: string | null;
|
|
2248
|
+
token_creator_address: `0x${string}`;
|
|
2249
|
+
token_fee_receiver_address: `0x${string}`;
|
|
2250
|
+
token_vesting_recipient_addresses: `0x${string}`[];
|
|
2251
|
+
integrator_address: string;
|
|
2252
|
+
};
|
|
2253
|
+
};
|
|
2254
|
+
}, {
|
|
2255
|
+
asset_address: string;
|
|
2256
|
+
asset_numeraire_address: string;
|
|
2257
|
+
asset_creation_timestamp: Date;
|
|
2258
|
+
asset_current_pool: string;
|
|
2259
|
+
asset_migration_timestamp: Date | null;
|
|
2260
|
+
auction_pool: {
|
|
2261
|
+
pool_current_price: string;
|
|
2262
|
+
pool_current_sqrt_price: string;
|
|
2263
|
+
pool_current_fdv: string;
|
|
2264
|
+
pool_current_liquidity: string;
|
|
2265
|
+
pool_current_tick: number;
|
|
2266
|
+
pool_last_epoch: number;
|
|
2267
|
+
pool_current_market_cap: string;
|
|
2268
|
+
pool_current_fees_accrued: string;
|
|
2269
|
+
pool_current_total_proceeds: string;
|
|
2270
|
+
pool_current_total_tokens_sold: string;
|
|
2271
|
+
pool_last_epoch_total_tokens_sold: string;
|
|
2272
|
+
pool_current_sale_progress_percentage: number;
|
|
2273
|
+
pool_config_max_proceeds: string;
|
|
2274
|
+
pool_config_min_proceeds: string;
|
|
2275
|
+
pool_id: string;
|
|
2276
|
+
pool_address: string;
|
|
2277
|
+
pool_config_starting_time: string;
|
|
2278
|
+
pool_config_ending_time: string;
|
|
2279
|
+
pool_migration_timestamp: Date | null;
|
|
2280
|
+
pool_type: string;
|
|
2281
|
+
base_token: {
|
|
2282
|
+
token_address: string;
|
|
2283
|
+
token_name: string;
|
|
2284
|
+
token_description: string | null;
|
|
2285
|
+
token_symbol: string;
|
|
2286
|
+
token_uri_data: {
|
|
2287
|
+
name?: string | undefined;
|
|
2288
|
+
description?: string | undefined;
|
|
2289
|
+
image_hash?: string | undefined;
|
|
2290
|
+
fee_receiver?: string | undefined;
|
|
2291
|
+
social_links?: string[] | undefined;
|
|
2292
|
+
vesting_recipients?: {
|
|
2293
|
+
address: string;
|
|
2294
|
+
percentage: number;
|
|
2295
|
+
}[] | undefined;
|
|
2296
|
+
} | null;
|
|
2297
|
+
token_image_public_url: string | null;
|
|
2298
|
+
token_creator_address: string;
|
|
2299
|
+
token_fee_receiver_address: string;
|
|
2300
|
+
token_vesting_recipient_addresses: string[];
|
|
2301
|
+
};
|
|
2302
|
+
};
|
|
2303
|
+
graduation_pool: {
|
|
2304
|
+
pool_current_price: string;
|
|
2305
|
+
pool_current_sqrt_price: string;
|
|
2306
|
+
pool_current_fdv: string;
|
|
2307
|
+
pool_current_liquidity: string;
|
|
2308
|
+
pool_current_tick: number;
|
|
2309
|
+
pool_current_market_cap: string;
|
|
2310
|
+
pool_address: string;
|
|
2311
|
+
pool_migration_timestamp: Date | null;
|
|
2312
|
+
pool_type: string;
|
|
2313
|
+
base_token: {
|
|
2314
|
+
token_address: string;
|
|
2315
|
+
token_name: string;
|
|
2316
|
+
token_description: string | null;
|
|
2317
|
+
token_symbol: string;
|
|
2318
|
+
token_uri_data: {
|
|
2319
|
+
name?: string | undefined;
|
|
2320
|
+
description?: string | undefined;
|
|
2321
|
+
image_hash?: string | undefined;
|
|
2322
|
+
fee_receiver?: string | undefined;
|
|
2323
|
+
social_links?: string[] | undefined;
|
|
2324
|
+
vesting_recipients?: {
|
|
2325
|
+
address: string;
|
|
2326
|
+
percentage: number;
|
|
2327
|
+
}[] | undefined;
|
|
2328
|
+
} | null;
|
|
2329
|
+
token_image_public_url: string | null;
|
|
2330
|
+
token_creator_address: string;
|
|
2331
|
+
token_fee_receiver_address: string;
|
|
2332
|
+
token_vesting_recipient_addresses: string[];
|
|
2333
|
+
integrator_address: string;
|
|
2334
|
+
};
|
|
2335
|
+
};
|
|
2336
|
+
asset_status?: string | undefined;
|
|
2337
|
+
}>, {
|
|
2338
|
+
asset_status: string;
|
|
1829
2339
|
asset_address: `0x${string}`;
|
|
1830
2340
|
asset_numeraire_address: `0x${string}`;
|
|
1831
2341
|
asset_creation_timestamp: Date;
|
|
@@ -1989,9 +2499,11 @@ export declare const rootContract: {
|
|
|
1989
2499
|
integrator_address: string;
|
|
1990
2500
|
};
|
|
1991
2501
|
};
|
|
2502
|
+
asset_status?: string | undefined;
|
|
1992
2503
|
}>;
|
|
1993
2504
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1994
2505
|
result: {
|
|
2506
|
+
asset_status: string;
|
|
1995
2507
|
asset_address: `0x${string}`;
|
|
1996
2508
|
asset_numeraire_address: `0x${string}`;
|
|
1997
2509
|
asset_creation_timestamp: Date;
|
|
@@ -2157,6 +2669,7 @@ export declare const rootContract: {
|
|
|
2157
2669
|
integrator_address: string;
|
|
2158
2670
|
};
|
|
2159
2671
|
};
|
|
2672
|
+
asset_status?: string | undefined;
|
|
2160
2673
|
};
|
|
2161
2674
|
}>;
|
|
2162
2675
|
};
|