@merkl/api 1.1.13 → 1.1.15
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/constants.d.ts +61 -0
- package/dist/src/eden/index.d.ts +895 -5238
- package/dist/src/engine/deprecated/dynamicData/implementations/default.d.ts +1 -1
- package/dist/src/engine/implementations/Aave/metadata.d.ts +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/index.d.ts +1 -2
- package/dist/src/engine/tvl/factory.d.ts +1 -1
- package/dist/src/index.d.ts +192 -2368
- package/dist/src/modules/v4/apr/apr.model.d.ts +0 -8
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +20 -396
- package/dist/src/modules/v4/campaign/campaign.convertor.d.ts +1 -2
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +17 -15
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +60 -63
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +34 -54
- package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +44 -1168
- package/dist/src/modules/v4/dynamicData/dynamicData.service.d.ts +1 -14
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +46 -264
- package/dist/src/modules/v4/opportunity/opportunity.converter.d.ts +0 -6
- package/dist/src/modules/v4/opportunity/opportunity.formatter.d.ts +6 -3
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +21 -73
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +34 -21
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +40 -38
- package/dist/src/modules/v4/payload/payload.controller.d.ts +16 -468
- package/dist/src/modules/v4/payload/payload.model.d.ts +1 -10
- package/dist/src/modules/v4/payload/payload.service.d.ts +12 -379
- package/dist/src/modules/v4/programPayload/programPayload.controller.d.ts +3 -17
- package/dist/src/modules/v4/programPayload/programPayload.model.d.ts +1 -1
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +7 -429
- package/dist/src/modules/v4/programPayload/programPayload.service.d.ts +2 -1
- package/dist/src/modules/v4/programPayload/subPayloads/hypurrFi.d.ts +3 -11
- package/dist/src/modules/v4/reward/reward.controller.d.ts +3 -3
- package/dist/src/modules/v4/reward/reward.model.d.ts +4 -18
- package/dist/src/modules/v4/reward/reward.repository.d.ts +4 -2
- package/dist/src/modules/v4/reward/reward.service.d.ts +26 -13
- package/dist/src/modules/v4/router.d.ts +191 -2364
- package/dist/src/modules/v4/token/token.controller.d.ts +22 -14
- package/dist/src/modules/v4/token/token.model.d.ts +5 -15
- package/dist/src/modules/v4/token/token.repository.d.ts +11 -7
- package/dist/src/modules/v4/user/user.controller.d.ts +4 -2
- package/dist/src/routes/v3/opportunity.d.ts +0 -3
- package/dist/src/routes/v3/payload.d.ts +1 -1
- package/dist/src/routes/v3/router.d.ts +1 -4
- package/dist/src/utils/parseDistributionType.d.ts +1 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/ERC4626/metadata.d.ts +0 -31
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/ERC4626/tvl.d.ts +0 -6
- package/dist/src/modules/v4/token/token.service.d.ts +0 -348
- package/dist/src/modules/v4/transaction/transaction.model.d.ts +0 -17
@@ -44,7 +44,6 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
44
44
|
creatorTag?: string | undefined;
|
45
45
|
distributionChainIds?: number[] | undefined;
|
46
46
|
types?: string[] | undefined;
|
47
|
-
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
48
47
|
withOpportunity?: boolean | undefined;
|
49
48
|
createdAfter?: Date | null | undefined;
|
50
49
|
excludeSubCampaigns?: boolean | undefined;
|
@@ -68,13 +67,13 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
68
67
|
timestamp: string | bigint;
|
69
68
|
cumulated: number;
|
70
69
|
breakdowns: {
|
71
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" |
|
70
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
72
71
|
value: number;
|
73
|
-
type: "
|
72
|
+
type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
|
74
73
|
identifier: string;
|
75
74
|
}[];
|
76
75
|
} | undefined;
|
77
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" |
|
76
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
78
77
|
explorerAddress?: string | undefined;
|
79
78
|
tvlRecord?: {
|
80
79
|
timestamp: string | bigint;
|
@@ -89,7 +88,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
89
88
|
timestamp: string | bigint;
|
90
89
|
total: number;
|
91
90
|
breakdowns: {
|
92
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" |
|
91
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
93
92
|
token: {
|
94
93
|
price?: number | null | undefined;
|
95
94
|
symbol: string;
|
@@ -98,9 +97,10 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
98
97
|
address: string;
|
99
98
|
id: string;
|
100
99
|
chainId: number;
|
101
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
102
100
|
icon: string;
|
103
101
|
isNative: boolean;
|
102
|
+
isPoint: boolean;
|
103
|
+
isPreTGE: boolean;
|
104
104
|
isTest: boolean;
|
105
105
|
verified: boolean;
|
106
106
|
};
|
@@ -119,9 +119,10 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
119
119
|
address: string;
|
120
120
|
id: string;
|
121
121
|
chainId: number;
|
122
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
123
122
|
icon: string;
|
124
123
|
isNative: boolean;
|
124
|
+
isPoint: boolean;
|
125
|
+
isPreTGE: boolean;
|
125
126
|
isTest: boolean;
|
126
127
|
verified: boolean;
|
127
128
|
}[];
|
@@ -144,7 +145,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
144
145
|
computedUntil: string | number;
|
145
146
|
processingStarted: string | number;
|
146
147
|
} | undefined;
|
147
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" |
|
148
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
148
149
|
rootCampaignId?: string | undefined;
|
149
150
|
parentCampaignId?: string | undefined;
|
150
151
|
distributionChain?: {
|
@@ -165,9 +166,10 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
165
166
|
address: string;
|
166
167
|
id: string;
|
167
168
|
chainId: number;
|
168
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
169
169
|
icon: string;
|
170
170
|
isNative: boolean;
|
171
|
+
isPoint: boolean;
|
172
|
+
isPreTGE: boolean;
|
171
173
|
isTest: boolean;
|
172
174
|
verified: boolean;
|
173
175
|
};
|
@@ -246,7 +248,6 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
246
248
|
campaigns?: boolean | undefined;
|
247
249
|
point?: boolean | undefined;
|
248
250
|
test?: boolean | undefined;
|
249
|
-
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
250
251
|
excludeSubCampaigns?: boolean | undefined;
|
251
252
|
};
|
252
253
|
headers: unknown;
|
@@ -268,13 +269,13 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
268
269
|
timestamp: string | bigint;
|
269
270
|
cumulated: number;
|
270
271
|
breakdowns: {
|
271
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" |
|
272
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
272
273
|
value: number;
|
273
|
-
type: "
|
274
|
+
type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
|
274
275
|
identifier: string;
|
275
276
|
}[];
|
276
277
|
} | undefined;
|
277
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" |
|
278
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
278
279
|
explorerAddress?: string | undefined;
|
279
280
|
tvlRecord?: {
|
280
281
|
timestamp: string | bigint;
|
@@ -289,7 +290,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
289
290
|
timestamp: string | bigint;
|
290
291
|
total: number;
|
291
292
|
breakdowns: {
|
292
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" |
|
293
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
293
294
|
token: {
|
294
295
|
price?: number | null | undefined;
|
295
296
|
symbol: string;
|
@@ -298,9 +299,10 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
298
299
|
address: string;
|
299
300
|
id: string;
|
300
301
|
chainId: number;
|
301
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
302
302
|
icon: string;
|
303
303
|
isNative: boolean;
|
304
|
+
isPoint: boolean;
|
305
|
+
isPreTGE: boolean;
|
304
306
|
isTest: boolean;
|
305
307
|
verified: boolean;
|
306
308
|
};
|
@@ -319,9 +321,10 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
319
321
|
address: string;
|
320
322
|
id: string;
|
321
323
|
chainId: number;
|
322
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
323
324
|
icon: string;
|
324
325
|
isNative: boolean;
|
326
|
+
isPoint: boolean;
|
327
|
+
isPreTGE: boolean;
|
325
328
|
isTest: boolean;
|
326
329
|
verified: boolean;
|
327
330
|
}[];
|
@@ -383,7 +386,6 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
383
386
|
campaigns?: boolean | undefined;
|
384
387
|
point?: boolean | undefined;
|
385
388
|
test?: boolean | undefined;
|
386
|
-
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
387
389
|
excludeSubCampaigns?: boolean | undefined;
|
388
390
|
};
|
389
391
|
headers: unknown;
|
@@ -405,13 +407,13 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
405
407
|
timestamp: string | bigint;
|
406
408
|
cumulated: number;
|
407
409
|
breakdowns: {
|
408
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" |
|
410
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
409
411
|
value: number;
|
410
|
-
type: "
|
412
|
+
type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
|
411
413
|
identifier: string;
|
412
414
|
}[];
|
413
415
|
} | undefined;
|
414
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" |
|
416
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
415
417
|
explorerAddress?: string | undefined;
|
416
418
|
tvlRecord?: {
|
417
419
|
timestamp: string | bigint;
|
@@ -426,7 +428,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
426
428
|
timestamp: string | bigint;
|
427
429
|
total: number;
|
428
430
|
breakdowns: {
|
429
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" |
|
431
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
430
432
|
token: {
|
431
433
|
price?: number | null | undefined;
|
432
434
|
symbol: string;
|
@@ -435,9 +437,10 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
435
437
|
address: string;
|
436
438
|
id: string;
|
437
439
|
chainId: number;
|
438
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
439
440
|
icon: string;
|
440
441
|
isNative: boolean;
|
442
|
+
isPoint: boolean;
|
443
|
+
isPreTGE: boolean;
|
441
444
|
isTest: boolean;
|
442
445
|
verified: boolean;
|
443
446
|
};
|
@@ -456,9 +459,10 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
456
459
|
address: string;
|
457
460
|
id: string;
|
458
461
|
chainId: number;
|
459
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
460
462
|
icon: string;
|
461
463
|
isNative: boolean;
|
464
|
+
isPoint: boolean;
|
465
|
+
isPreTGE: boolean;
|
462
466
|
isTest: boolean;
|
463
467
|
verified: boolean;
|
464
468
|
}[];
|
@@ -481,7 +485,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
481
485
|
computedUntil: string | number;
|
482
486
|
processingStarted: string | number;
|
483
487
|
} | undefined;
|
484
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" |
|
488
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
485
489
|
rootCampaignId?: string | undefined;
|
486
490
|
parentCampaignId?: string | undefined;
|
487
491
|
distributionChain?: {
|
@@ -502,9 +506,10 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
502
506
|
address: string;
|
503
507
|
id: string;
|
504
508
|
chainId: number;
|
505
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
506
509
|
icon: string;
|
507
510
|
isNative: boolean;
|
511
|
+
isPoint: boolean;
|
512
|
+
isPreTGE: boolean;
|
508
513
|
isTest: boolean;
|
509
514
|
verified: boolean;
|
510
515
|
};
|
@@ -597,18 +602,15 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
597
602
|
tags?: string | undefined;
|
598
603
|
test?: boolean | undefined;
|
599
604
|
page?: number | undefined;
|
600
|
-
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
601
605
|
excludeSubCampaigns?: boolean | undefined;
|
602
606
|
minimumTvl?: number | undefined;
|
603
607
|
maximumTvl?: number | undefined;
|
604
608
|
minimumApr?: number | undefined;
|
605
609
|
maximumApr?: number | undefined;
|
606
610
|
rewardTokenSymbol?: string | undefined;
|
607
|
-
distributionTypes?: ("DUTCH_AUCTION" | "FIX_REWARD" | "MAX_REWARD")[] | undefined;
|
608
611
|
};
|
609
612
|
headers: unknown;
|
610
613
|
response: {
|
611
|
-
[x: string]: any;
|
612
614
|
200: ({
|
613
615
|
protocol?: {
|
614
616
|
dailyRewards?: number | undefined;
|
@@ -626,13 +628,13 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
626
628
|
timestamp: string | bigint;
|
627
629
|
cumulated: number;
|
628
630
|
breakdowns: {
|
629
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" |
|
631
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
630
632
|
value: number;
|
631
|
-
type: "
|
633
|
+
type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
|
632
634
|
identifier: string;
|
633
635
|
}[];
|
634
636
|
} | undefined;
|
635
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" |
|
637
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
636
638
|
explorerAddress?: string | undefined;
|
637
639
|
tvlRecord?: {
|
638
640
|
timestamp: string | bigint;
|
@@ -647,7 +649,7 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
647
649
|
timestamp: string | bigint;
|
648
650
|
total: number;
|
649
651
|
breakdowns: {
|
650
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" |
|
652
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
651
653
|
token: {
|
652
654
|
price?: number | null | undefined;
|
653
655
|
symbol: string;
|
@@ -656,9 +658,10 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
656
658
|
address: string;
|
657
659
|
id: string;
|
658
660
|
chainId: number;
|
659
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
660
661
|
icon: string;
|
661
662
|
isNative: boolean;
|
663
|
+
isPoint: boolean;
|
664
|
+
isPreTGE: boolean;
|
662
665
|
isTest: boolean;
|
663
666
|
verified: boolean;
|
664
667
|
};
|
@@ -677,223 +680,10 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
677
680
|
address: string;
|
678
681
|
id: string;
|
679
682
|
chainId: number;
|
680
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
681
|
-
icon: string;
|
682
|
-
isNative: boolean;
|
683
|
-
isTest: boolean;
|
684
|
-
verified: boolean;
|
685
|
-
}[];
|
686
|
-
tvl: number;
|
687
|
-
description: string;
|
688
|
-
id: string;
|
689
|
-
status: string;
|
690
|
-
chainId: number;
|
691
|
-
action: string;
|
692
|
-
type: string;
|
693
|
-
chain: {
|
694
|
-
explorers?: {
|
695
|
-
chainId: number;
|
696
|
-
type: "ETHERSCAN" | "BLOCKSCOUT";
|
697
|
-
url: string;
|
698
|
-
}[] | undefined;
|
699
|
-
name: string;
|
700
|
-
id: number;
|
701
|
-
icon: string;
|
702
|
-
};
|
703
|
-
identifier: string;
|
704
|
-
howToSteps: string[];
|
705
|
-
dailyRewards: number;
|
706
|
-
tags: string[];
|
707
|
-
lastCampaignCreatedAt: number;
|
708
|
-
} | null)[];
|
709
|
-
422: {
|
710
|
-
type: "validation";
|
711
|
-
on: string;
|
712
|
-
summary?: string;
|
713
|
-
message?: string;
|
714
|
-
found?: unknown;
|
715
|
-
property?: string;
|
716
|
-
expected?: string;
|
717
|
-
};
|
718
|
-
} | {
|
719
|
-
200: ({
|
720
|
-
protocol?: {
|
721
|
-
dailyRewards?: number | undefined;
|
722
|
-
numberOfLiveCampaigns?: number | undefined;
|
723
|
-
opportunityLiveTags?: string[] | undefined;
|
724
|
-
name: string;
|
725
|
-
description: string;
|
726
|
-
id: string;
|
727
|
-
url: string;
|
728
|
-
icon: string;
|
729
|
-
tags: string[];
|
730
|
-
} | null | undefined;
|
731
|
-
depositUrl?: string | undefined;
|
732
|
-
aprRecord?: {
|
733
|
-
timestamp: string | bigint;
|
734
|
-
cumulated: number;
|
735
|
-
breakdowns: {
|
736
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
737
|
-
value: number;
|
738
|
-
type: "TOKEN" | "CAMPAIGN" | "PROTOCOL";
|
739
|
-
identifier: string;
|
740
|
-
}[];
|
741
|
-
} | undefined;
|
742
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
743
|
-
explorerAddress?: string | undefined;
|
744
|
-
tvlRecord?: {
|
745
|
-
timestamp: string | bigint;
|
746
|
-
total: number;
|
747
|
-
breakdowns: {
|
748
|
-
value: number;
|
749
|
-
type: "TOKEN" | "PROTOCOL";
|
750
|
-
identifier: string;
|
751
|
-
}[];
|
752
|
-
} | undefined;
|
753
|
-
rewardsRecord?: {
|
754
|
-
timestamp: string | bigint;
|
755
|
-
total: number;
|
756
|
-
breakdowns: {
|
757
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
758
|
-
token: {
|
759
|
-
price?: number | null | undefined;
|
760
|
-
symbol: string;
|
761
|
-
name: string | null;
|
762
|
-
decimals: number;
|
763
|
-
address: string;
|
764
|
-
id: string;
|
765
|
-
chainId: number;
|
766
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
767
|
-
icon: string;
|
768
|
-
isNative: boolean;
|
769
|
-
isTest: boolean;
|
770
|
-
verified: boolean;
|
771
|
-
};
|
772
|
-
campaignId: string;
|
773
|
-
value: number;
|
774
|
-
amount: string | bigint;
|
775
|
-
}[];
|
776
|
-
} | undefined;
|
777
|
-
name: string;
|
778
|
-
apr: number;
|
779
|
-
tokens: {
|
780
|
-
price?: number | null | undefined;
|
781
|
-
symbol: string;
|
782
|
-
name: string | null;
|
783
|
-
decimals: number;
|
784
|
-
address: string;
|
785
|
-
id: string;
|
786
|
-
chainId: number;
|
787
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
788
|
-
icon: string;
|
789
|
-
isNative: boolean;
|
790
|
-
isTest: boolean;
|
791
|
-
verified: boolean;
|
792
|
-
}[];
|
793
|
-
tvl: number;
|
794
|
-
description: string;
|
795
|
-
id: string;
|
796
|
-
status: string;
|
797
|
-
chainId: number;
|
798
|
-
action: string;
|
799
|
-
type: string;
|
800
|
-
chain: {
|
801
|
-
explorers?: {
|
802
|
-
chainId: number;
|
803
|
-
type: "ETHERSCAN" | "BLOCKSCOUT";
|
804
|
-
url: string;
|
805
|
-
}[] | undefined;
|
806
|
-
name: string;
|
807
|
-
id: number;
|
808
|
-
icon: string;
|
809
|
-
};
|
810
|
-
identifier: string;
|
811
|
-
howToSteps: string[];
|
812
|
-
dailyRewards: number;
|
813
|
-
tags: string[];
|
814
|
-
lastCampaignCreatedAt: number;
|
815
|
-
} | null)[];
|
816
|
-
422: {
|
817
|
-
type: "validation";
|
818
|
-
on: string;
|
819
|
-
summary?: string;
|
820
|
-
message?: string;
|
821
|
-
found?: unknown;
|
822
|
-
property?: string;
|
823
|
-
expected?: string;
|
824
|
-
};
|
825
|
-
} | {
|
826
|
-
200: ({
|
827
|
-
protocol?: {
|
828
|
-
dailyRewards?: number | undefined;
|
829
|
-
numberOfLiveCampaigns?: number | undefined;
|
830
|
-
opportunityLiveTags?: string[] | undefined;
|
831
|
-
name: string;
|
832
|
-
description: string;
|
833
|
-
id: string;
|
834
|
-
url: string;
|
835
|
-
icon: string;
|
836
|
-
tags: string[];
|
837
|
-
} | null | undefined;
|
838
|
-
depositUrl?: string | undefined;
|
839
|
-
aprRecord?: {
|
840
|
-
timestamp: string | bigint;
|
841
|
-
cumulated: number;
|
842
|
-
breakdowns: {
|
843
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
844
|
-
value: number;
|
845
|
-
type: "TOKEN" | "CAMPAIGN" | "PROTOCOL";
|
846
|
-
identifier: string;
|
847
|
-
}[];
|
848
|
-
} | undefined;
|
849
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
850
|
-
explorerAddress?: string | undefined;
|
851
|
-
tvlRecord?: {
|
852
|
-
timestamp: string | bigint;
|
853
|
-
total: number;
|
854
|
-
breakdowns: {
|
855
|
-
value: number;
|
856
|
-
type: "TOKEN" | "PROTOCOL";
|
857
|
-
identifier: string;
|
858
|
-
}[];
|
859
|
-
} | undefined;
|
860
|
-
rewardsRecord?: {
|
861
|
-
timestamp: string | bigint;
|
862
|
-
total: number;
|
863
|
-
breakdowns: {
|
864
|
-
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
865
|
-
token: {
|
866
|
-
price?: number | null | undefined;
|
867
|
-
symbol: string;
|
868
|
-
name: string | null;
|
869
|
-
decimals: number;
|
870
|
-
address: string;
|
871
|
-
id: string;
|
872
|
-
chainId: number;
|
873
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
874
|
-
icon: string;
|
875
|
-
isNative: boolean;
|
876
|
-
isTest: boolean;
|
877
|
-
verified: boolean;
|
878
|
-
};
|
879
|
-
campaignId: string;
|
880
|
-
value: number;
|
881
|
-
amount: string | bigint;
|
882
|
-
}[];
|
883
|
-
} | undefined;
|
884
|
-
name: string;
|
885
|
-
apr: number;
|
886
|
-
tokens: {
|
887
|
-
price?: number | null | undefined;
|
888
|
-
symbol: string;
|
889
|
-
name: string | null;
|
890
|
-
decimals: number;
|
891
|
-
address: string;
|
892
|
-
id: string;
|
893
|
-
chainId: number;
|
894
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
895
683
|
icon: string;
|
896
684
|
isNative: boolean;
|
685
|
+
isPoint: boolean;
|
686
|
+
isPreTGE: boolean;
|
897
687
|
isTest: boolean;
|
898
688
|
verified: boolean;
|
899
689
|
}[];
|
@@ -958,14 +748,12 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
958
748
|
tags?: string | undefined;
|
959
749
|
test?: boolean | undefined;
|
960
750
|
page?: number | undefined;
|
961
|
-
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
962
751
|
excludeSubCampaigns?: boolean | undefined;
|
963
752
|
minimumTvl?: number | undefined;
|
964
753
|
maximumTvl?: number | undefined;
|
965
754
|
minimumApr?: number | undefined;
|
966
755
|
maximumApr?: number | undefined;
|
967
756
|
rewardTokenSymbol?: string | undefined;
|
968
|
-
distributionTypes?: ("DUTCH_AUCTION" | "FIX_REWARD" | "MAX_REWARD")[] | undefined;
|
969
757
|
};
|
970
758
|
headers: unknown;
|
971
759
|
response: {
|
@@ -1010,14 +798,12 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
1010
798
|
tags?: string | undefined;
|
1011
799
|
test?: boolean | undefined;
|
1012
800
|
page?: number | undefined;
|
1013
|
-
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
1014
801
|
excludeSubCampaigns?: boolean | undefined;
|
1015
802
|
minimumTvl?: number | undefined;
|
1016
803
|
maximumTvl?: number | undefined;
|
1017
804
|
minimumApr?: number | undefined;
|
1018
805
|
maximumApr?: number | undefined;
|
1019
806
|
rewardTokenSymbol?: string | undefined;
|
1020
|
-
distributionTypes?: ("DUTCH_AUCTION" | "FIX_REWARD" | "MAX_REWARD")[] | undefined;
|
1021
807
|
};
|
1022
808
|
headers: unknown;
|
1023
809
|
response: {
|
@@ -1069,14 +855,12 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
1069
855
|
tags?: string | undefined;
|
1070
856
|
test?: boolean | undefined;
|
1071
857
|
page?: number | undefined;
|
1072
|
-
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
1073
858
|
excludeSubCampaigns?: boolean | undefined;
|
1074
859
|
minimumTvl?: number | undefined;
|
1075
860
|
maximumTvl?: number | undefined;
|
1076
861
|
minimumApr?: number | undefined;
|
1077
862
|
maximumApr?: number | undefined;
|
1078
863
|
rewardTokenSymbol?: string | undefined;
|
1079
|
-
distributionTypes?: ("DUTCH_AUCTION" | "FIX_REWARD" | "MAX_REWARD")[] | undefined;
|
1080
864
|
};
|
1081
865
|
headers: unknown;
|
1082
866
|
response: {
|
@@ -1130,14 +914,12 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
1130
914
|
tags?: string | undefined;
|
1131
915
|
test?: boolean | undefined;
|
1132
916
|
page?: number | undefined;
|
1133
|
-
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
1134
917
|
excludeSubCampaigns?: boolean | undefined;
|
1135
918
|
minimumTvl?: number | undefined;
|
1136
919
|
maximumTvl?: number | undefined;
|
1137
920
|
minimumApr?: number | undefined;
|
1138
921
|
maximumApr?: number | undefined;
|
1139
922
|
rewardTokenSymbol?: string | undefined;
|
1140
|
-
distributionTypes?: ("DUTCH_AUCTION" | "FIX_REWARD" | "MAX_REWARD")[] | undefined;
|
1141
923
|
};
|
1142
924
|
headers: unknown;
|
1143
925
|
response: {
|
@@ -1188,14 +970,12 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
1188
970
|
tags?: string | undefined;
|
1189
971
|
test?: boolean | undefined;
|
1190
972
|
page?: number | undefined;
|
1191
|
-
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
1192
973
|
excludeSubCampaigns?: boolean | undefined;
|
1193
974
|
minimumTvl?: number | undefined;
|
1194
975
|
maximumTvl?: number | undefined;
|
1195
976
|
minimumApr?: number | undefined;
|
1196
977
|
maximumApr?: number | undefined;
|
1197
978
|
rewardTokenSymbol?: string | undefined;
|
1198
|
-
distributionTypes?: ("DUTCH_AUCTION" | "FIX_REWARD" | "MAX_REWARD")[] | undefined;
|
1199
979
|
};
|
1200
980
|
headers: unknown;
|
1201
981
|
response: {
|
@@ -1247,14 +1027,12 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
1247
1027
|
tags?: string | undefined;
|
1248
1028
|
test?: boolean | undefined;
|
1249
1029
|
page?: number | undefined;
|
1250
|
-
tokenTypes?: ("TOKEN" | "PRETGE" | "POINT")[] | undefined;
|
1251
1030
|
excludeSubCampaigns?: boolean | undefined;
|
1252
1031
|
minimumTvl?: number | undefined;
|
1253
1032
|
maximumTvl?: number | undefined;
|
1254
1033
|
minimumApr?: number | undefined;
|
1255
1034
|
maximumApr?: number | undefined;
|
1256
1035
|
rewardTokenSymbol?: string | undefined;
|
1257
|
-
distributionTypes?: ("DUTCH_AUCTION" | "FIX_REWARD" | "MAX_REWARD")[] | undefined;
|
1258
1036
|
};
|
1259
1037
|
headers: unknown;
|
1260
1038
|
response: {
|
@@ -1305,9 +1083,10 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
1305
1083
|
address: string;
|
1306
1084
|
id: string;
|
1307
1085
|
chainId: number;
|
1308
|
-
type: import("@package/databases").TokenType;
|
1309
1086
|
icon: string;
|
1310
1087
|
isNative: boolean;
|
1088
|
+
isPoint: boolean;
|
1089
|
+
isPreTGE: boolean;
|
1311
1090
|
isTest: boolean;
|
1312
1091
|
verified: boolean;
|
1313
1092
|
} & {
|
@@ -1330,9 +1109,10 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
1330
1109
|
address: string;
|
1331
1110
|
id: string;
|
1332
1111
|
chainId: number;
|
1333
|
-
type: import("@package/databases").TokenType;
|
1334
1112
|
icon: string;
|
1335
1113
|
isNative: boolean;
|
1114
|
+
isPoint: boolean;
|
1115
|
+
isPreTGE: boolean;
|
1336
1116
|
isTest: boolean;
|
1337
1117
|
verified: boolean;
|
1338
1118
|
displaySymbol: string;
|
@@ -1504,9 +1284,10 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
1504
1284
|
address: string;
|
1505
1285
|
id: string;
|
1506
1286
|
chainId: number;
|
1507
|
-
type: import("@package/databases").TokenType;
|
1508
1287
|
icon: string;
|
1509
1288
|
isNative: boolean;
|
1289
|
+
isPoint: boolean;
|
1290
|
+
isPreTGE: boolean;
|
1510
1291
|
isTest: boolean;
|
1511
1292
|
verified: boolean;
|
1512
1293
|
} & {
|
@@ -1529,9 +1310,10 @@ export declare const OpportunityController: Elysia<"/opportunities", {
|
|
1529
1310
|
address: string;
|
1530
1311
|
id: string;
|
1531
1312
|
chainId: number;
|
1532
|
-
type: import("@package/databases").TokenType;
|
1533
1313
|
icon: string;
|
1534
1314
|
isNative: boolean;
|
1315
|
+
isPoint: boolean;
|
1316
|
+
isPreTGE: boolean;
|
1535
1317
|
isTest: boolean;
|
1536
1318
|
verified: boolean;
|
1537
1319
|
displaySymbol: string;
|
@@ -65,9 +65,6 @@ export declare abstract class OpportunityConvertor {
|
|
65
65
|
[id: `61_${string}`]: OpportunityV3;
|
66
66
|
[id: `62_${string}`]: OpportunityV3;
|
67
67
|
[id: `63_${string}`]: OpportunityV3;
|
68
|
-
[id: `64_${string}`]: OpportunityV3;
|
69
|
-
[id: `65_${string}`]: OpportunityV3;
|
70
|
-
[id: `66_${string}`]: OpportunityV3;
|
71
68
|
}>;
|
72
69
|
static logKeyAndTTLV3Opportunities(showCampaigns: boolean, test: boolean | undefined, identifier: string | undefined, chainId: string | undefined): Promise<void>;
|
73
70
|
static wrapV3Opportunities(showCampaigns: boolean, test: boolean | undefined, identifier: string | undefined, chainId: string | undefined): Promise<{
|
@@ -134,8 +131,5 @@ export declare abstract class OpportunityConvertor {
|
|
134
131
|
[id: `61_${string}`]: OpportunityV3;
|
135
132
|
[id: `62_${string}`]: OpportunityV3;
|
136
133
|
[id: `63_${string}`]: OpportunityV3;
|
137
|
-
[id: `64_${string}`]: OpportunityV3;
|
138
|
-
[id: `65_${string}`]: OpportunityV3;
|
139
|
-
[id: `66_${string}`]: OpportunityV3;
|
140
134
|
}>;
|
141
135
|
}
|