@merkl/api 1.9.31 → 1.9.32
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/src/eden/index.d.ts +180 -12
- package/dist/src/index.d.ts +180 -12
- package/dist/src/modules/v4/apr/apr.model.d.ts +1 -0
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +28 -0
- package/dist/src/modules/v4/campaign/campaign.formatter.js.map +1 -1
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +2 -0
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +7 -0
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +9 -0
- package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +20 -0
- package/dist/src/modules/v4/campaignStatus/campaignStatus.controller.d.ts +2 -0
- package/dist/src/modules/v4/campaignStatus/campaignStatus.service.d.ts +4 -0
- package/dist/src/modules/v4/carousel/carousel.controller.d.ts +22 -0
- package/dist/src/modules/v4/carousel/carousel.repository.d.ts +6 -0
- package/dist/src/modules/v4/carousel/carousel.service.d.ts +18 -0
- package/dist/src/modules/v4/computedValue/computedValue.controller.d.ts +2 -0
- package/dist/src/modules/v4/config/config.controller.d.ts +5 -0
- package/dist/src/modules/v4/config/config.service.d.ts +5 -0
- package/dist/src/modules/v4/creator/creator.controller.d.ts +5 -0
- package/dist/src/modules/v4/dispute/dispute.controller.d.ts +1 -0
- package/dist/src/modules/v4/dispute/dispute.service.d.ts +1 -0
- package/dist/src/modules/v4/dynamicData/dynamicData.service.d.ts +2 -0
- package/dist/src/modules/v4/legacy-claims/claims.controller.d.ts +1 -0
- package/dist/src/modules/v4/legacy-claims/claims.service.d.ts +1 -0
- package/dist/src/modules/v4/legacy-claims/claims.service.js.map +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +36 -0
- package/dist/src/modules/v4/opportunity/opportunity.formatter.d.ts +11 -6
- package/dist/src/modules/v4/opportunity/opportunity.formatter.js.map +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +12 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +21 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +47 -12
- package/dist/src/modules/v4/payload/payload.controller.d.ts +9 -0
- package/dist/src/modules/v4/payload/payload.service.d.ts +12 -0
- package/dist/src/modules/v4/program/program.controller.d.ts +12 -0
- package/dist/src/modules/v4/program/program.repository.d.ts +4 -0
- package/dist/src/modules/v4/program/program.service.d.ts +12 -0
- package/dist/src/modules/v4/programPayload/programPayload.controller.d.ts +1 -0
- package/dist/src/modules/v4/programPayload/programPayload.service.d.ts +1 -0
- package/dist/src/modules/v4/reward/reward.model.d.ts +2 -0
- package/dist/src/modules/v4/reward/reward.repository.d.ts +3 -0
- package/dist/src/modules/v4/reward/reward.service.d.ts +58 -36
- package/dist/src/modules/v4/reward/reward.service.js.map +1 -1
- package/dist/src/modules/v4/router.d.ts +180 -12
- package/dist/src/modules/v4/token/token.controller.d.ts +9 -0
- package/dist/src/modules/v4/token/token.formatter.d.ts +1 -1
- package/dist/src/modules/v4/token/token.formatter.js.map +1 -1
- package/dist/src/modules/v4/token/token.model.d.ts +2 -0
- package/dist/src/modules/v4/token/token.model.js.map +1 -1
- package/dist/src/modules/v4/token/token.repository.d.ts +3 -1
- package/dist/src/modules/v4/token/token.repository.js.map +1 -1
- package/dist/src/modules/v4/token/token.service.d.ts +1 -0
- package/dist/src/modules/v4/token/token.service.js.map +1 -1
- package/dist/src/modules/v4/uniswap/uniswap.controller.d.ts +8 -0
- package/dist/src/modules/v4/uniswap/uniswap.service.d.ts +4 -0
- package/dist/src/modules/v4/user/user.controller.d.ts +19 -12
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -101,6 +101,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
101
101
|
updatedAt?: number | null | undefined;
|
|
102
102
|
priceSource?: string | null | undefined;
|
|
103
103
|
displaySymbol?: string | undefined;
|
|
104
|
+
underlyingTokenId?: string | undefined;
|
|
104
105
|
}[];
|
|
105
106
|
chain: {
|
|
106
107
|
id: number;
|
|
@@ -169,6 +170,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
169
170
|
updatedAt?: number | null | undefined;
|
|
170
171
|
priceSource?: string | null | undefined;
|
|
171
172
|
displaySymbol?: string | undefined;
|
|
173
|
+
underlyingTokenId?: string | undefined;
|
|
172
174
|
} | undefined;
|
|
173
175
|
} | undefined;
|
|
174
176
|
tvlRecord?: {
|
|
@@ -203,6 +205,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
203
205
|
updatedAt?: number | null | undefined;
|
|
204
206
|
priceSource?: string | null | undefined;
|
|
205
207
|
displaySymbol?: string | undefined;
|
|
208
|
+
underlyingTokenId?: string | undefined;
|
|
206
209
|
};
|
|
207
210
|
amount: string | bigint;
|
|
208
211
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -260,6 +263,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
260
263
|
updatedAt?: number | null | undefined;
|
|
261
264
|
priceSource?: string | null | undefined;
|
|
262
265
|
displaySymbol?: string | undefined;
|
|
266
|
+
underlyingTokenId?: string | undefined;
|
|
263
267
|
};
|
|
264
268
|
opportunityId?: string | undefined;
|
|
265
269
|
distributionChain?: {
|
|
@@ -311,6 +315,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
311
315
|
updatedAt?: number | null | undefined;
|
|
312
316
|
priceSource?: string | null | undefined;
|
|
313
317
|
displaySymbol?: string | undefined;
|
|
318
|
+
underlyingTokenId?: string | undefined;
|
|
314
319
|
};
|
|
315
320
|
amount: string | bigint;
|
|
316
321
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -406,6 +411,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
406
411
|
updatedAt?: number | null | undefined;
|
|
407
412
|
priceSource?: string | null | undefined;
|
|
408
413
|
displaySymbol?: string | undefined;
|
|
414
|
+
underlyingTokenId?: string | undefined;
|
|
409
415
|
}[];
|
|
410
416
|
chain: {
|
|
411
417
|
id: number;
|
|
@@ -474,6 +480,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
474
480
|
updatedAt?: number | null | undefined;
|
|
475
481
|
priceSource?: string | null | undefined;
|
|
476
482
|
displaySymbol?: string | undefined;
|
|
483
|
+
underlyingTokenId?: string | undefined;
|
|
477
484
|
} | undefined;
|
|
478
485
|
} | undefined;
|
|
479
486
|
tvlRecord?: {
|
|
@@ -508,6 +515,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
508
515
|
updatedAt?: number | null | undefined;
|
|
509
516
|
priceSource?: string | null | undefined;
|
|
510
517
|
displaySymbol?: string | undefined;
|
|
518
|
+
underlyingTokenId?: string | undefined;
|
|
511
519
|
};
|
|
512
520
|
amount: string | bigint;
|
|
513
521
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -565,6 +573,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
565
573
|
updatedAt?: number | null | undefined;
|
|
566
574
|
priceSource?: string | null | undefined;
|
|
567
575
|
displaySymbol?: string | undefined;
|
|
576
|
+
underlyingTokenId?: string | undefined;
|
|
568
577
|
};
|
|
569
578
|
opportunityId?: string | undefined;
|
|
570
579
|
distributionChain?: {
|
|
@@ -616,6 +625,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
616
625
|
updatedAt?: number | null | undefined;
|
|
617
626
|
priceSource?: string | null | undefined;
|
|
618
627
|
displaySymbol?: string | undefined;
|
|
628
|
+
underlyingTokenId?: string | undefined;
|
|
619
629
|
};
|
|
620
630
|
amount: string | bigint;
|
|
621
631
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -671,6 +681,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
671
681
|
updatedAt?: number | null | undefined;
|
|
672
682
|
priceSource?: string | null | undefined;
|
|
673
683
|
displaySymbol?: string | undefined;
|
|
684
|
+
underlyingTokenId?: string | undefined;
|
|
674
685
|
}[];
|
|
675
686
|
chain: {
|
|
676
687
|
id: number;
|
|
@@ -739,6 +750,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
739
750
|
updatedAt?: number | null | undefined;
|
|
740
751
|
priceSource?: string | null | undefined;
|
|
741
752
|
displaySymbol?: string | undefined;
|
|
753
|
+
underlyingTokenId?: string | undefined;
|
|
742
754
|
} | undefined;
|
|
743
755
|
} | undefined;
|
|
744
756
|
tvlRecord?: {
|
|
@@ -773,6 +785,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
773
785
|
updatedAt?: number | null | undefined;
|
|
774
786
|
priceSource?: string | null | undefined;
|
|
775
787
|
displaySymbol?: string | undefined;
|
|
788
|
+
underlyingTokenId?: string | undefined;
|
|
776
789
|
};
|
|
777
790
|
amount: string | bigint;
|
|
778
791
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -830,6 +843,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
830
843
|
updatedAt?: number | null | undefined;
|
|
831
844
|
priceSource?: string | null | undefined;
|
|
832
845
|
displaySymbol?: string | undefined;
|
|
846
|
+
underlyingTokenId?: string | undefined;
|
|
833
847
|
};
|
|
834
848
|
opportunityId?: string | undefined;
|
|
835
849
|
distributionChain?: {
|
|
@@ -881,6 +895,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
881
895
|
updatedAt?: number | null | undefined;
|
|
882
896
|
priceSource?: string | null | undefined;
|
|
883
897
|
displaySymbol?: string | undefined;
|
|
898
|
+
underlyingTokenId?: string | undefined;
|
|
884
899
|
};
|
|
885
900
|
amount: string | bigint;
|
|
886
901
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -977,6 +992,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
977
992
|
updatedAt?: number | null | undefined;
|
|
978
993
|
priceSource?: string | null | undefined;
|
|
979
994
|
displaySymbol?: string | undefined;
|
|
995
|
+
underlyingTokenId?: string | undefined;
|
|
980
996
|
}[];
|
|
981
997
|
chain: {
|
|
982
998
|
id: number;
|
|
@@ -1045,6 +1061,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
1045
1061
|
updatedAt?: number | null | undefined;
|
|
1046
1062
|
priceSource?: string | null | undefined;
|
|
1047
1063
|
displaySymbol?: string | undefined;
|
|
1064
|
+
underlyingTokenId?: string | undefined;
|
|
1048
1065
|
} | undefined;
|
|
1049
1066
|
} | undefined;
|
|
1050
1067
|
tvlRecord?: {
|
|
@@ -1079,6 +1096,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
1079
1096
|
updatedAt?: number | null | undefined;
|
|
1080
1097
|
priceSource?: string | null | undefined;
|
|
1081
1098
|
displaySymbol?: string | undefined;
|
|
1099
|
+
underlyingTokenId?: string | undefined;
|
|
1082
1100
|
};
|
|
1083
1101
|
amount: string | bigint;
|
|
1084
1102
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -1136,6 +1154,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
1136
1154
|
updatedAt?: number | null | undefined;
|
|
1137
1155
|
priceSource?: string | null | undefined;
|
|
1138
1156
|
displaySymbol?: string | undefined;
|
|
1157
|
+
underlyingTokenId?: string | undefined;
|
|
1139
1158
|
};
|
|
1140
1159
|
opportunityId?: string | undefined;
|
|
1141
1160
|
distributionChain?: {
|
|
@@ -1187,6 +1206,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
1187
1206
|
updatedAt?: number | null | undefined;
|
|
1188
1207
|
priceSource?: string | null | undefined;
|
|
1189
1208
|
displaySymbol?: string | undefined;
|
|
1209
|
+
underlyingTokenId?: string | undefined;
|
|
1190
1210
|
};
|
|
1191
1211
|
amount: string | bigint;
|
|
1192
1212
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -1310,6 +1330,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
1310
1330
|
updatedAt?: number | null | undefined;
|
|
1311
1331
|
priceSource?: string | null | undefined;
|
|
1312
1332
|
displaySymbol?: string | undefined;
|
|
1333
|
+
underlyingTokenId?: string | undefined;
|
|
1313
1334
|
}[];
|
|
1314
1335
|
chain: {
|
|
1315
1336
|
id: number;
|
|
@@ -1378,6 +1399,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
1378
1399
|
updatedAt?: number | null | undefined;
|
|
1379
1400
|
priceSource?: string | null | undefined;
|
|
1380
1401
|
displaySymbol?: string | undefined;
|
|
1402
|
+
underlyingTokenId?: string | undefined;
|
|
1381
1403
|
} | undefined;
|
|
1382
1404
|
} | undefined;
|
|
1383
1405
|
tvlRecord?: {
|
|
@@ -1412,6 +1434,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
1412
1434
|
updatedAt?: number | null | undefined;
|
|
1413
1435
|
priceSource?: string | null | undefined;
|
|
1414
1436
|
displaySymbol?: string | undefined;
|
|
1437
|
+
underlyingTokenId?: string | undefined;
|
|
1415
1438
|
};
|
|
1416
1439
|
amount: string | bigint;
|
|
1417
1440
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -1469,6 +1492,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
1469
1492
|
updatedAt?: number | null | undefined;
|
|
1470
1493
|
priceSource?: string | null | undefined;
|
|
1471
1494
|
displaySymbol?: string | undefined;
|
|
1495
|
+
underlyingTokenId?: string | undefined;
|
|
1472
1496
|
};
|
|
1473
1497
|
opportunityId?: string | undefined;
|
|
1474
1498
|
distributionChain?: {
|
|
@@ -1520,6 +1544,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
1520
1544
|
updatedAt?: number | null | undefined;
|
|
1521
1545
|
priceSource?: string | null | undefined;
|
|
1522
1546
|
displaySymbol?: string | undefined;
|
|
1547
|
+
underlyingTokenId?: string | undefined;
|
|
1523
1548
|
};
|
|
1524
1549
|
amount: string | bigint;
|
|
1525
1550
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -1575,6 +1600,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
1575
1600
|
updatedAt?: number | null | undefined;
|
|
1576
1601
|
priceSource?: string | null | undefined;
|
|
1577
1602
|
displaySymbol?: string | undefined;
|
|
1603
|
+
underlyingTokenId?: string | undefined;
|
|
1578
1604
|
}[];
|
|
1579
1605
|
chain: {
|
|
1580
1606
|
id: number;
|
|
@@ -1643,6 +1669,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
1643
1669
|
updatedAt?: number | null | undefined;
|
|
1644
1670
|
priceSource?: string | null | undefined;
|
|
1645
1671
|
displaySymbol?: string | undefined;
|
|
1672
|
+
underlyingTokenId?: string | undefined;
|
|
1646
1673
|
} | undefined;
|
|
1647
1674
|
} | undefined;
|
|
1648
1675
|
tvlRecord?: {
|
|
@@ -1677,6 +1704,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
1677
1704
|
updatedAt?: number | null | undefined;
|
|
1678
1705
|
priceSource?: string | null | undefined;
|
|
1679
1706
|
displaySymbol?: string | undefined;
|
|
1707
|
+
underlyingTokenId?: string | undefined;
|
|
1680
1708
|
};
|
|
1681
1709
|
amount: string | bigint;
|
|
1682
1710
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -1734,6 +1762,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
1734
1762
|
updatedAt?: number | null | undefined;
|
|
1735
1763
|
priceSource?: string | null | undefined;
|
|
1736
1764
|
displaySymbol?: string | undefined;
|
|
1765
|
+
underlyingTokenId?: string | undefined;
|
|
1737
1766
|
};
|
|
1738
1767
|
opportunityId?: string | undefined;
|
|
1739
1768
|
distributionChain?: {
|
|
@@ -1785,6 +1814,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
1785
1814
|
updatedAt?: number | null | undefined;
|
|
1786
1815
|
priceSource?: string | null | undefined;
|
|
1787
1816
|
displaySymbol?: string | undefined;
|
|
1817
|
+
underlyingTokenId?: string | undefined;
|
|
1788
1818
|
};
|
|
1789
1819
|
amount: string | bigint;
|
|
1790
1820
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -2449,6 +2479,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
2449
2479
|
isTest: boolean;
|
|
2450
2480
|
type: import("@package/databases").TokenType;
|
|
2451
2481
|
isNative: boolean;
|
|
2482
|
+
underlyingTokenId: string | null;
|
|
2452
2483
|
price: number | null;
|
|
2453
2484
|
updatedAt: number | null;
|
|
2454
2485
|
priceSource: string | null;
|
|
@@ -2497,6 +2528,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
2497
2528
|
isTest: boolean;
|
|
2498
2529
|
type: import("@package/databases").TokenType;
|
|
2499
2530
|
isNative: boolean;
|
|
2531
|
+
underlyingTokenId: string | null;
|
|
2500
2532
|
price: number | null;
|
|
2501
2533
|
updatedAt: number | null;
|
|
2502
2534
|
priceSource: string | null;
|
|
@@ -2535,6 +2567,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
2535
2567
|
isTest: boolean;
|
|
2536
2568
|
type: import("@package/databases").TokenType;
|
|
2537
2569
|
isNative: boolean;
|
|
2570
|
+
underlyingTokenId: string | null;
|
|
2538
2571
|
price: number | null;
|
|
2539
2572
|
updatedAt: number | null;
|
|
2540
2573
|
priceSource: string | null;
|
|
@@ -2928,6 +2961,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
2928
2961
|
isTest: boolean;
|
|
2929
2962
|
type: import("@package/databases").TokenType;
|
|
2930
2963
|
isNative: boolean;
|
|
2964
|
+
underlyingTokenId: string | null;
|
|
2931
2965
|
price: number | null;
|
|
2932
2966
|
updatedAt: number | null;
|
|
2933
2967
|
priceSource: string | null;
|
|
@@ -2976,6 +3010,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
2976
3010
|
isTest: boolean;
|
|
2977
3011
|
type: import("@package/databases").TokenType;
|
|
2978
3012
|
isNative: boolean;
|
|
3013
|
+
underlyingTokenId: string | null;
|
|
2979
3014
|
price: number | null;
|
|
2980
3015
|
updatedAt: number | null;
|
|
2981
3016
|
priceSource: string | null;
|
|
@@ -3014,6 +3049,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
|
3014
3049
|
isTest: boolean;
|
|
3015
3050
|
type: import("@package/databases").TokenType;
|
|
3016
3051
|
isNative: boolean;
|
|
3052
|
+
underlyingTokenId: string | null;
|
|
3017
3053
|
price: number | null;
|
|
3018
3054
|
updatedAt: number | null;
|
|
3019
3055
|
priceSource: string | null;
|
|
@@ -57,6 +57,7 @@ export declare abstract class OpportunityFormatter {
|
|
|
57
57
|
updatedAt?: number | null | undefined;
|
|
58
58
|
priceSource?: string | null | undefined;
|
|
59
59
|
displaySymbol?: string | undefined;
|
|
60
|
+
underlyingTokenId?: string | undefined;
|
|
60
61
|
} | undefined;
|
|
61
62
|
};
|
|
62
63
|
tvlRecord: {
|
|
@@ -85,15 +86,16 @@ export declare abstract class OpportunityFormatter {
|
|
|
85
86
|
address: string;
|
|
86
87
|
decimals: number;
|
|
87
88
|
symbol: string;
|
|
88
|
-
displaySymbol: string;
|
|
89
89
|
icon: string;
|
|
90
90
|
verified: boolean;
|
|
91
|
-
isTest: boolean;
|
|
92
|
-
type: import("@package/databases").TokenType;
|
|
93
91
|
isNative: boolean;
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
92
|
+
isTest: boolean;
|
|
93
|
+
type: "POINT" | "PRETGE" | "TOKEN";
|
|
94
|
+
price?: number | null | undefined;
|
|
95
|
+
updatedAt?: number | null | undefined;
|
|
96
|
+
priceSource?: string | null | undefined;
|
|
97
|
+
displaySymbol?: string | undefined;
|
|
98
|
+
underlyingTokenId?: string | undefined;
|
|
97
99
|
};
|
|
98
100
|
amount: bigint;
|
|
99
101
|
value: number;
|
|
@@ -141,6 +143,7 @@ export declare abstract class OpportunityFormatter {
|
|
|
141
143
|
updatedAt?: number | null | undefined;
|
|
142
144
|
priceSource?: string | null | undefined;
|
|
143
145
|
displaySymbol?: string | undefined;
|
|
146
|
+
underlyingTokenId?: string | undefined;
|
|
144
147
|
}[];
|
|
145
148
|
chain: {
|
|
146
149
|
id: number;
|
|
@@ -201,6 +204,7 @@ export declare abstract class OpportunityFormatter {
|
|
|
201
204
|
updatedAt?: number | null | undefined;
|
|
202
205
|
priceSource?: string | null | undefined;
|
|
203
206
|
displaySymbol?: string | undefined;
|
|
207
|
+
underlyingTokenId?: string | undefined;
|
|
204
208
|
}[];
|
|
205
209
|
chain: {
|
|
206
210
|
id: number;
|
|
@@ -274,6 +278,7 @@ export declare abstract class OpportunityFormatter {
|
|
|
274
278
|
updatedAt?: number | null | undefined;
|
|
275
279
|
priceSource?: string | null | undefined;
|
|
276
280
|
displaySymbol?: string | undefined;
|
|
281
|
+
underlyingTokenId?: string | undefined;
|
|
277
282
|
}[];
|
|
278
283
|
chain: {
|
|
279
284
|
id: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"opportunity.formatter.js","sourceRoot":"","sources":["../../../../../../../apps/api/src/modules/v4/opportunity/opportunity.formatter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAEnD,OAAO,MAAM,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AACnE,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAiB1D,MAAM,OAAgB,oBAAoB;IACxC,MAAM,CAAC,MAAM,CAAC,WAAgF,EAAE;QAC9F,MAAM,EAAE,mBAAmB,EAAE,UAAU,EAAE,gBAAgB,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,GAAG,EAAE,GAAG,WAAW,CAAC;QAEzG,MAAM,aAAa,GACjB,mBAAmB,EAAE,MAAM,KAAK,CAAC;YAC/B,CAAC,CAAC;gBACE,EAAE,EAAE,EAAE;gBACN,KAAK,EAAE,CAAC;gBACR,SAAS,EAAE,EAAE;gBACb,UAAU,EAAE,EAAE;aACf;YACH,CAAC,CAAC,CAAC,mBAAmB,EAAE,GAAG,CAAC,CAAC,EAAE,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,qBAAqB,EAAE,UAAU,EAAE,EAAE,EAAE,CAAC,CAAC;gBAC1F,EAAE;gBACF,KAAK;gBACL,SAAS;gBACT,UAAU,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,GAAG,SAAS,EAAE,EAAE,EAAE,CAAC;oBAChE,OAAO;wBACL,KAAK,EAAE,QAAQ,CAAC,WAAW;
|
|
1
|
+
{"version":3,"file":"opportunity.formatter.js","sourceRoot":"","sources":["../../../../../../../apps/api/src/modules/v4/opportunity/opportunity.formatter.ts"],"names":[],"mappings":"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"}
|
|
@@ -169,6 +169,7 @@ export declare const CampaignWithOpportunityResourceDto: import("@sinclair/typeb
|
|
|
169
169
|
updatedAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
|
170
170
|
priceSource: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
171
171
|
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
172
|
+
underlyingTokenId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
172
173
|
}>;
|
|
173
174
|
amount: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TBigInt, import("@sinclair/typebox").TString]>;
|
|
174
175
|
distributionType: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TEnum<{
|
|
@@ -241,6 +242,7 @@ export declare const CampaignWithOpportunityResourceDto: import("@sinclair/typeb
|
|
|
241
242
|
updatedAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
|
242
243
|
priceSource: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
243
244
|
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
245
|
+
underlyingTokenId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
244
246
|
}>;
|
|
245
247
|
rewardTokenId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
246
248
|
rootCampaignId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
@@ -317,6 +319,7 @@ export declare const OpportunityResourceDto: import("@sinclair/typebox").TInters
|
|
|
317
319
|
updatedAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
|
318
320
|
priceSource: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
319
321
|
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
322
|
+
underlyingTokenId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
320
323
|
}>>;
|
|
321
324
|
chain: import("@sinclair/typebox").TObject<{
|
|
322
325
|
id: import("@sinclair/typebox").TInteger;
|
|
@@ -406,6 +409,7 @@ export declare const OpportunityResourceDto: import("@sinclair/typebox").TInters
|
|
|
406
409
|
updatedAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
|
407
410
|
priceSource: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
408
411
|
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
412
|
+
underlyingTokenId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
409
413
|
}>>;
|
|
410
414
|
}>>;
|
|
411
415
|
tvlRecord: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
@@ -447,6 +451,7 @@ export declare const OpportunityResourceDto: import("@sinclair/typebox").TInters
|
|
|
447
451
|
updatedAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
|
448
452
|
priceSource: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
449
453
|
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
454
|
+
underlyingTokenId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
450
455
|
}>;
|
|
451
456
|
amount: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TBigInt, import("@sinclair/typebox").TString]>;
|
|
452
457
|
distributionType: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TEnum<{
|
|
@@ -521,6 +526,7 @@ export declare const OpportunityResourceDto: import("@sinclair/typebox").TInters
|
|
|
521
526
|
updatedAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
|
522
527
|
priceSource: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
523
528
|
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
529
|
+
underlyingTokenId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
524
530
|
}>;
|
|
525
531
|
opportunityId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
526
532
|
distributionChain: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
@@ -589,6 +595,7 @@ export declare const OpportunityResourceDto: import("@sinclair/typebox").TInters
|
|
|
589
595
|
updatedAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
|
590
596
|
priceSource: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
591
597
|
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
598
|
+
underlyingTokenId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
592
599
|
}>;
|
|
593
600
|
amount: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TBigInt, import("@sinclair/typebox").TString]>;
|
|
594
601
|
distributionType: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TEnum<{
|
|
@@ -679,6 +686,7 @@ export declare const OpportunityWithCampaignsResourceDto: import("@sinclair/type
|
|
|
679
686
|
updatedAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
|
680
687
|
priceSource: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
681
688
|
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
689
|
+
underlyingTokenId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
682
690
|
}>>;
|
|
683
691
|
chain: import("@sinclair/typebox").TObject<{
|
|
684
692
|
id: import("@sinclair/typebox").TInteger;
|
|
@@ -768,6 +776,7 @@ export declare const OpportunityWithCampaignsResourceDto: import("@sinclair/type
|
|
|
768
776
|
updatedAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
|
769
777
|
priceSource: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
770
778
|
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
779
|
+
underlyingTokenId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
771
780
|
}>>;
|
|
772
781
|
}>>;
|
|
773
782
|
tvlRecord: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
@@ -809,6 +818,7 @@ export declare const OpportunityWithCampaignsResourceDto: import("@sinclair/type
|
|
|
809
818
|
updatedAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
|
810
819
|
priceSource: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
811
820
|
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
821
|
+
underlyingTokenId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
812
822
|
}>;
|
|
813
823
|
amount: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TBigInt, import("@sinclair/typebox").TString]>;
|
|
814
824
|
distributionType: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TEnum<{
|
|
@@ -883,6 +893,7 @@ export declare const OpportunityWithCampaignsResourceDto: import("@sinclair/type
|
|
|
883
893
|
updatedAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
|
884
894
|
priceSource: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
885
895
|
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
896
|
+
underlyingTokenId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
886
897
|
}>;
|
|
887
898
|
opportunityId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
888
899
|
distributionChain: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
@@ -951,6 +962,7 @@ export declare const OpportunityWithCampaignsResourceDto: import("@sinclair/type
|
|
|
951
962
|
updatedAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
|
952
963
|
priceSource: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
953
964
|
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
965
|
+
underlyingTokenId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
954
966
|
}>;
|
|
955
967
|
amount: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TBigInt, import("@sinclair/typebox").TString]>;
|
|
956
968
|
distributionType: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TEnum<{
|
|
@@ -114,6 +114,7 @@ export declare abstract class OpportunityRepository {
|
|
|
114
114
|
isTest: boolean;
|
|
115
115
|
type: import("@package/databases").TokenType;
|
|
116
116
|
isNative: boolean;
|
|
117
|
+
underlyingTokenId: string | null;
|
|
117
118
|
price: number | null;
|
|
118
119
|
updatedAt: number | null;
|
|
119
120
|
priceSource: string | null;
|
|
@@ -162,6 +163,7 @@ export declare abstract class OpportunityRepository {
|
|
|
162
163
|
isTest: boolean;
|
|
163
164
|
type: import("@package/databases").TokenType;
|
|
164
165
|
isNative: boolean;
|
|
166
|
+
underlyingTokenId: string | null;
|
|
165
167
|
price: number | null;
|
|
166
168
|
updatedAt: number | null;
|
|
167
169
|
priceSource: string | null;
|
|
@@ -200,6 +202,7 @@ export declare abstract class OpportunityRepository {
|
|
|
200
202
|
isTest: boolean;
|
|
201
203
|
type: import("@package/databases").TokenType;
|
|
202
204
|
isNative: boolean;
|
|
205
|
+
underlyingTokenId: string | null;
|
|
203
206
|
price: number | null;
|
|
204
207
|
updatedAt: number | null;
|
|
205
208
|
priceSource: string | null;
|
|
@@ -280,6 +283,7 @@ export declare abstract class OpportunityRepository {
|
|
|
280
283
|
isTest: boolean;
|
|
281
284
|
type: import("@package/databases").TokenType;
|
|
282
285
|
isNative: boolean;
|
|
286
|
+
underlyingTokenId: string | null;
|
|
283
287
|
price: number | null;
|
|
284
288
|
updatedAt: number | null;
|
|
285
289
|
priceSource: string | null;
|
|
@@ -344,6 +348,7 @@ export declare abstract class OpportunityRepository {
|
|
|
344
348
|
isTest: boolean;
|
|
345
349
|
type: import("@package/databases").TokenType;
|
|
346
350
|
isNative: boolean;
|
|
351
|
+
underlyingTokenId: string | null;
|
|
347
352
|
price: number | null;
|
|
348
353
|
updatedAt: number | null;
|
|
349
354
|
priceSource: string | null;
|
|
@@ -392,6 +397,7 @@ export declare abstract class OpportunityRepository {
|
|
|
392
397
|
isTest: boolean;
|
|
393
398
|
type: import("@package/databases").TokenType;
|
|
394
399
|
isNative: boolean;
|
|
400
|
+
underlyingTokenId: string | null;
|
|
395
401
|
price: number | null;
|
|
396
402
|
updatedAt: number | null;
|
|
397
403
|
priceSource: string | null;
|
|
@@ -430,6 +436,7 @@ export declare abstract class OpportunityRepository {
|
|
|
430
436
|
isTest: boolean;
|
|
431
437
|
type: import("@package/databases").TokenType;
|
|
432
438
|
isNative: boolean;
|
|
439
|
+
underlyingTokenId: string | null;
|
|
433
440
|
price: number | null;
|
|
434
441
|
updatedAt: number | null;
|
|
435
442
|
priceSource: string | null;
|
|
@@ -556,6 +563,7 @@ export declare abstract class OpportunityRepository {
|
|
|
556
563
|
isTest: boolean;
|
|
557
564
|
type: import("@package/databases").TokenType;
|
|
558
565
|
isNative: boolean;
|
|
566
|
+
underlyingTokenId: string | null;
|
|
559
567
|
price: number | null;
|
|
560
568
|
updatedAt: number | null;
|
|
561
569
|
priceSource: string | null;
|
|
@@ -604,6 +612,7 @@ export declare abstract class OpportunityRepository {
|
|
|
604
612
|
isTest: boolean;
|
|
605
613
|
type: import("@package/databases").TokenType;
|
|
606
614
|
isNative: boolean;
|
|
615
|
+
underlyingTokenId: string | null;
|
|
607
616
|
price: number | null;
|
|
608
617
|
updatedAt: number | null;
|
|
609
618
|
priceSource: string | null;
|
|
@@ -642,6 +651,7 @@ export declare abstract class OpportunityRepository {
|
|
|
642
651
|
isTest: boolean;
|
|
643
652
|
type: import("@package/databases").TokenType;
|
|
644
653
|
isNative: boolean;
|
|
654
|
+
underlyingTokenId: string | null;
|
|
645
655
|
price: number | null;
|
|
646
656
|
updatedAt: number | null;
|
|
647
657
|
priceSource: string | null;
|
|
@@ -792,6 +802,7 @@ export declare abstract class OpportunityRepository {
|
|
|
792
802
|
isTest: boolean;
|
|
793
803
|
type: import("@package/databases").TokenType;
|
|
794
804
|
isNative: boolean;
|
|
805
|
+
underlyingTokenId: string | null;
|
|
795
806
|
price: number | null;
|
|
796
807
|
updatedAt: number | null;
|
|
797
808
|
priceSource: string | null;
|
|
@@ -866,6 +877,7 @@ export declare abstract class OpportunityRepository {
|
|
|
866
877
|
isTest: boolean;
|
|
867
878
|
type: import("@package/databases").TokenType;
|
|
868
879
|
isNative: boolean;
|
|
880
|
+
underlyingTokenId: string | null;
|
|
869
881
|
price: number | null;
|
|
870
882
|
updatedAt: number | null;
|
|
871
883
|
priceSource: string | null;
|
|
@@ -914,6 +926,7 @@ export declare abstract class OpportunityRepository {
|
|
|
914
926
|
isTest: boolean;
|
|
915
927
|
type: import("@package/databases").TokenType;
|
|
916
928
|
isNative: boolean;
|
|
929
|
+
underlyingTokenId: string | null;
|
|
917
930
|
price: number | null;
|
|
918
931
|
updatedAt: number | null;
|
|
919
932
|
priceSource: string | null;
|
|
@@ -952,6 +965,7 @@ export declare abstract class OpportunityRepository {
|
|
|
952
965
|
isTest: boolean;
|
|
953
966
|
type: import("@package/databases").TokenType;
|
|
954
967
|
isNative: boolean;
|
|
968
|
+
underlyingTokenId: string | null;
|
|
955
969
|
price: number | null;
|
|
956
970
|
updatedAt: number | null;
|
|
957
971
|
priceSource: string | null;
|
|
@@ -1083,6 +1097,7 @@ export declare abstract class OpportunityRepository {
|
|
|
1083
1097
|
isTest: boolean;
|
|
1084
1098
|
type: import("@package/databases").TokenType;
|
|
1085
1099
|
isNative: boolean;
|
|
1100
|
+
underlyingTokenId: string | null;
|
|
1086
1101
|
price: number | null;
|
|
1087
1102
|
updatedAt: number | null;
|
|
1088
1103
|
priceSource: string | null;
|
|
@@ -1131,6 +1146,7 @@ export declare abstract class OpportunityRepository {
|
|
|
1131
1146
|
isTest: boolean;
|
|
1132
1147
|
type: import("@package/databases").TokenType;
|
|
1133
1148
|
isNative: boolean;
|
|
1149
|
+
underlyingTokenId: string | null;
|
|
1134
1150
|
price: number | null;
|
|
1135
1151
|
updatedAt: number | null;
|
|
1136
1152
|
priceSource: string | null;
|
|
@@ -1169,6 +1185,7 @@ export declare abstract class OpportunityRepository {
|
|
|
1169
1185
|
isTest: boolean;
|
|
1170
1186
|
type: import("@package/databases").TokenType;
|
|
1171
1187
|
isNative: boolean;
|
|
1188
|
+
underlyingTokenId: string | null;
|
|
1172
1189
|
price: number | null;
|
|
1173
1190
|
updatedAt: number | null;
|
|
1174
1191
|
priceSource: string | null;
|
|
@@ -1327,6 +1344,7 @@ export declare abstract class OpportunityRepository {
|
|
|
1327
1344
|
isTest: boolean;
|
|
1328
1345
|
type: import("@package/databases").TokenType;
|
|
1329
1346
|
isNative: boolean;
|
|
1347
|
+
underlyingTokenId: string | null;
|
|
1330
1348
|
price: number | null;
|
|
1331
1349
|
updatedAt: number | null;
|
|
1332
1350
|
priceSource: string | null;
|
|
@@ -1398,6 +1416,7 @@ export declare abstract class OpportunityRepository {
|
|
|
1398
1416
|
isTest: boolean;
|
|
1399
1417
|
type: import("@package/databases").TokenType;
|
|
1400
1418
|
isNative: boolean;
|
|
1419
|
+
underlyingTokenId: string | null;
|
|
1401
1420
|
price: number | null;
|
|
1402
1421
|
updatedAt: number | null;
|
|
1403
1422
|
priceSource: string | null;
|
|
@@ -1446,6 +1465,7 @@ export declare abstract class OpportunityRepository {
|
|
|
1446
1465
|
isTest: boolean;
|
|
1447
1466
|
type: import("@package/databases").TokenType;
|
|
1448
1467
|
isNative: boolean;
|
|
1468
|
+
underlyingTokenId: string | null;
|
|
1449
1469
|
price: number | null;
|
|
1450
1470
|
updatedAt: number | null;
|
|
1451
1471
|
priceSource: string | null;
|
|
@@ -1484,6 +1504,7 @@ export declare abstract class OpportunityRepository {
|
|
|
1484
1504
|
isTest: boolean;
|
|
1485
1505
|
type: import("@package/databases").TokenType;
|
|
1486
1506
|
isNative: boolean;
|
|
1507
|
+
underlyingTokenId: string | null;
|
|
1487
1508
|
price: number | null;
|
|
1488
1509
|
updatedAt: number | null;
|
|
1489
1510
|
priceSource: string | null;
|