@merkl/api 1.0.66 → 1.0.68
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 +424 -422
- package/dist/src/engine/implementations/Erc20/subTypes/index.d.ts +2 -1
- package/dist/src/index.d.ts +210 -209
- package/dist/src/modules/v4/blacklist/blacklist.controller.d.ts +2 -2
- package/dist/src/modules/v4/blacklist/blacklist.repository.d.ts +2 -2
- package/dist/src/modules/v4/blacklist/blacklist.service.d.ts +2 -2
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +41 -41
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +179 -193
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +49 -62
- package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +44 -44
- package/dist/src/modules/v4/creator/creator.controller.d.ts +12 -12
- package/dist/src/modules/v4/creator/creator.repository.d.ts +6 -6
- package/dist/src/modules/v4/creator/creator.service.d.ts +12 -12
- package/dist/src/modules/v4/node/node.controller.d.ts +2 -1
- package/dist/src/modules/v4/node/node.repository.d.ts +1 -18
- package/dist/src/modules/v4/node/node.service.d.ts +1 -18
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +80 -80
- package/dist/src/modules/v4/opportunity/opportunity.formatter.d.ts +3 -3
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +13 -13
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +192 -192
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +54 -54
- package/dist/src/modules/v4/price/price.controller.d.ts +4 -4
- package/dist/src/modules/v4/price/price.repository.d.ts +5 -5
- package/dist/src/modules/v4/price/price.service.d.ts +4 -4
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +23 -1
- package/dist/src/modules/v4/programPayload/subPayloads/hypurrFi.d.ts +9 -1
- package/dist/src/modules/v4/protocol/protocol.repository.d.ts +6 -6
- package/dist/src/modules/v4/reward/reward.repository.d.ts +11 -11
- package/dist/src/modules/v4/reward/reward.service.d.ts +67 -67
- package/dist/src/modules/v4/router.d.ts +210 -209
- package/dist/src/modules/v4/status/status.controller.d.ts +14 -14
- package/dist/src/modules/v4/status/status.repository.d.ts +20 -20
- package/dist/src/modules/v4/status/status.service.d.ts +16 -16
- package/dist/src/modules/v4/uniswap/uniswap.repository.d.ts +2 -10
- package/dist/src/modules/v4/user/user.controller.d.ts +11 -11
- package/dist/src/utils/queries/allCampaigns.d.ts +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -37,11 +37,11 @@ export declare abstract class OpportunityService {
|
|
37
37
|
action: import("@package/databases").OpportunityAction;
|
38
38
|
type: string;
|
39
39
|
depositUrl: string | null;
|
40
|
-
explorerAddress: string | null;
|
41
|
-
howToSteps: string[];
|
42
|
-
mainProtocolId: string | null;
|
43
40
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
44
41
|
identifier: string;
|
42
|
+
howToSteps: string[];
|
43
|
+
explorerAddress: string | null;
|
44
|
+
mainProtocolId: string | null;
|
45
45
|
dailyRewards: number;
|
46
46
|
tags: string[];
|
47
47
|
lastCampaignCreatedAt: Date;
|
@@ -79,6 +79,14 @@ export declare abstract class OpportunityService {
|
|
79
79
|
explorerAddress: string | undefined;
|
80
80
|
tags: string[];
|
81
81
|
} | ({
|
82
|
+
Protocols: {
|
83
|
+
name: string;
|
84
|
+
description: string;
|
85
|
+
id: string;
|
86
|
+
url: string;
|
87
|
+
icon: string;
|
88
|
+
tags: string[];
|
89
|
+
}[];
|
82
90
|
Tokens: {
|
83
91
|
symbol: string;
|
84
92
|
name: string | null;
|
@@ -95,14 +103,6 @@ export declare abstract class OpportunityService {
|
|
95
103
|
verified: boolean;
|
96
104
|
displaySymbol: string;
|
97
105
|
}[];
|
98
|
-
Protocols: {
|
99
|
-
name: string;
|
100
|
-
description: string;
|
101
|
-
id: string;
|
102
|
-
url: string;
|
103
|
-
icon: string;
|
104
|
-
tags: string[];
|
105
|
-
}[];
|
106
106
|
} & {
|
107
107
|
name: string;
|
108
108
|
apr: number;
|
@@ -114,11 +114,11 @@ export declare abstract class OpportunityService {
|
|
114
114
|
action: import("@package/databases").OpportunityAction;
|
115
115
|
type: string;
|
116
116
|
depositUrl: string | null;
|
117
|
-
explorerAddress: string | null;
|
118
|
-
howToSteps: string[];
|
119
|
-
mainProtocolId: string | null;
|
120
117
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
121
118
|
identifier: string;
|
119
|
+
howToSteps: string[];
|
120
|
+
explorerAddress: string | null;
|
121
|
+
mainProtocolId: string | null;
|
122
122
|
dailyRewards: number;
|
123
123
|
tags: string[];
|
124
124
|
lastCampaignCreatedAt: Date;
|
@@ -161,6 +161,14 @@ export declare abstract class OpportunityService {
|
|
161
161
|
explorerAddress: string | undefined;
|
162
162
|
tags: string[];
|
163
163
|
} | ({
|
164
|
+
Protocols: {
|
165
|
+
name: string;
|
166
|
+
description: string;
|
167
|
+
id: string;
|
168
|
+
url: string;
|
169
|
+
icon: string;
|
170
|
+
tags: string[];
|
171
|
+
}[];
|
164
172
|
Tokens: {
|
165
173
|
symbol: string;
|
166
174
|
name: string | null;
|
@@ -177,14 +185,6 @@ export declare abstract class OpportunityService {
|
|
177
185
|
verified: boolean;
|
178
186
|
displaySymbol: string;
|
179
187
|
}[];
|
180
|
-
Protocols: {
|
181
|
-
name: string;
|
182
|
-
description: string;
|
183
|
-
id: string;
|
184
|
-
url: string;
|
185
|
-
icon: string;
|
186
|
-
tags: string[];
|
187
|
-
}[];
|
188
188
|
} & {
|
189
189
|
name: string;
|
190
190
|
apr: number;
|
@@ -196,11 +196,11 @@ export declare abstract class OpportunityService {
|
|
196
196
|
action: import("@package/databases").OpportunityAction;
|
197
197
|
type: string;
|
198
198
|
depositUrl: string | null;
|
199
|
-
explorerAddress: string | null;
|
200
|
-
howToSteps: string[];
|
201
|
-
mainProtocolId: string | null;
|
202
199
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
203
200
|
identifier: string;
|
201
|
+
howToSteps: string[];
|
202
|
+
explorerAddress: string | null;
|
203
|
+
mainProtocolId: string | null;
|
204
204
|
dailyRewards: number;
|
205
205
|
tags: string[];
|
206
206
|
lastCampaignCreatedAt: Date;
|
@@ -242,6 +242,14 @@ export declare abstract class OpportunityService {
|
|
242
242
|
explorerAddress: string | undefined;
|
243
243
|
tags: string[];
|
244
244
|
} | ({
|
245
|
+
Protocols: {
|
246
|
+
name: string;
|
247
|
+
description: string;
|
248
|
+
id: string;
|
249
|
+
url: string;
|
250
|
+
icon: string;
|
251
|
+
tags: string[];
|
252
|
+
}[];
|
245
253
|
Tokens: {
|
246
254
|
symbol: string;
|
247
255
|
name: string | null;
|
@@ -258,14 +266,6 @@ export declare abstract class OpportunityService {
|
|
258
266
|
verified: boolean;
|
259
267
|
displaySymbol: string;
|
260
268
|
}[];
|
261
|
-
Protocols: {
|
262
|
-
name: string;
|
263
|
-
description: string;
|
264
|
-
id: string;
|
265
|
-
url: string;
|
266
|
-
icon: string;
|
267
|
-
tags: string[];
|
268
|
-
}[];
|
269
269
|
} & {
|
270
270
|
name: string;
|
271
271
|
apr: number;
|
@@ -277,11 +277,11 @@ export declare abstract class OpportunityService {
|
|
277
277
|
action: import("@package/databases").OpportunityAction;
|
278
278
|
type: string;
|
279
279
|
depositUrl: string | null;
|
280
|
-
explorerAddress: string | null;
|
281
|
-
howToSteps: string[];
|
282
|
-
mainProtocolId: string | null;
|
283
280
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
284
281
|
identifier: string;
|
282
|
+
howToSteps: string[];
|
283
|
+
explorerAddress: string | null;
|
284
|
+
mainProtocolId: string | null;
|
285
285
|
dailyRewards: number;
|
286
286
|
tags: string[];
|
287
287
|
lastCampaignCreatedAt: Date;
|
@@ -305,8 +305,6 @@ export declare abstract class OpportunityService {
|
|
305
305
|
tags: string[];
|
306
306
|
} | null | undefined;
|
307
307
|
depositUrl?: string | undefined;
|
308
|
-
explorerAddress?: string | undefined;
|
309
|
-
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;
|
310
308
|
aprRecord?: {
|
311
309
|
timestamp: string | bigint;
|
312
310
|
cumulated: number;
|
@@ -317,6 +315,8 @@ export declare abstract class OpportunityService {
|
|
317
315
|
identifier: string;
|
318
316
|
}[];
|
319
317
|
} | undefined;
|
318
|
+
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;
|
319
|
+
explorerAddress?: string | undefined;
|
320
320
|
tvlRecord?: {
|
321
321
|
timestamp: string | bigint;
|
322
322
|
total: number;
|
@@ -380,9 +380,6 @@ export declare abstract class OpportunityService {
|
|
380
380
|
creatorId?: string | null | undefined;
|
381
381
|
address: string;
|
382
382
|
} | undefined;
|
383
|
-
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;
|
384
|
-
rootCampaignId?: string | undefined;
|
385
|
-
parentCampaignId?: string | undefined;
|
386
383
|
campaignStatus?: {
|
387
384
|
error?: string | undefined;
|
388
385
|
details?: any;
|
@@ -390,6 +387,9 @@ export declare abstract class OpportunityService {
|
|
390
387
|
computedUntil: string | number;
|
391
388
|
processingStarted: string | number;
|
392
389
|
} | undefined;
|
390
|
+
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;
|
391
|
+
rootCampaignId?: string | undefined;
|
392
|
+
parentCampaignId?: string | undefined;
|
393
393
|
distributionChain?: {
|
394
394
|
explorers?: {
|
395
395
|
chainId: number;
|
@@ -424,9 +424,6 @@ export declare abstract class OpportunityService {
|
|
424
424
|
computeChainId: number;
|
425
425
|
distributionChainId: number;
|
426
426
|
endTimestamp: string | number;
|
427
|
-
creatorAddress: string;
|
428
|
-
subType: number | null;
|
429
|
-
createdAt: string;
|
430
427
|
chain: {
|
431
428
|
explorers?: {
|
432
429
|
chainId: number;
|
@@ -437,14 +434,12 @@ export declare abstract class OpportunityService {
|
|
437
434
|
id: number;
|
438
435
|
icon: string;
|
439
436
|
};
|
437
|
+
subType: number | null;
|
438
|
+
creatorAddress: string;
|
439
|
+
createdAt: string;
|
440
440
|
}[];
|
441
441
|
action: string;
|
442
442
|
type: string;
|
443
|
-
howToSteps: string[];
|
444
|
-
identifier: string;
|
445
|
-
dailyRewards: number;
|
446
|
-
tags: string[];
|
447
|
-
lastCampaignCreatedAt: number;
|
448
443
|
chain: {
|
449
444
|
explorers?: {
|
450
445
|
chainId: number;
|
@@ -455,6 +450,11 @@ export declare abstract class OpportunityService {
|
|
455
450
|
id: number;
|
456
451
|
icon: string;
|
457
452
|
};
|
453
|
+
identifier: string;
|
454
|
+
howToSteps: string[];
|
455
|
+
dailyRewards: number;
|
456
|
+
tags: string[];
|
457
|
+
lastCampaignCreatedAt: number;
|
458
458
|
}[]>;
|
459
459
|
static findUniqueOrThrow(opportunityId: string | OpportunityUnique, query: FindOpportunityModel): Promise<OpportunityResourceModel>;
|
460
460
|
/**
|
@@ -560,8 +560,8 @@ export declare abstract class OpportunityService {
|
|
560
560
|
chainId: number;
|
561
561
|
action: import("@package/databases").OpportunityAction;
|
562
562
|
type: string;
|
563
|
-
howToSteps: string[];
|
564
563
|
identifier: string;
|
564
|
+
howToSteps: string[];
|
565
565
|
dailyRewards: number;
|
566
566
|
tags: string[];
|
567
567
|
}[]>;
|
@@ -670,8 +670,8 @@ export declare abstract class OpportunityService {
|
|
670
670
|
chainId: number;
|
671
671
|
action: import("@package/databases").OpportunityAction;
|
672
672
|
type: string;
|
673
|
-
howToSteps: string[];
|
674
673
|
identifier: string;
|
674
|
+
howToSteps: string[];
|
675
675
|
dailyRewards: number;
|
676
676
|
tags: string[];
|
677
677
|
}[]>;
|
@@ -695,11 +695,11 @@ export declare abstract class OpportunityService {
|
|
695
695
|
action: import("@package/databases").OpportunityAction;
|
696
696
|
type: string;
|
697
697
|
depositUrl: string | null;
|
698
|
-
explorerAddress: string | null;
|
699
|
-
howToSteps: string[];
|
700
|
-
mainProtocolId: string | null;
|
701
698
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
702
699
|
identifier: string;
|
700
|
+
howToSteps: string[];
|
701
|
+
explorerAddress: string | null;
|
702
|
+
mainProtocolId: string | null;
|
703
703
|
dailyRewards: number;
|
704
704
|
tags: string[];
|
705
705
|
lastCampaignCreatedAt: Date;
|
@@ -77,7 +77,7 @@ export declare const PriceController: Elysia<"/prices", {
|
|
77
77
|
200: {
|
78
78
|
symbol: string;
|
79
79
|
id: number;
|
80
|
-
args: import("@prisma/client/runtime/
|
80
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
81
81
|
method: import("@package/databases").PriceSourceMethod;
|
82
82
|
}[];
|
83
83
|
};
|
@@ -98,7 +98,7 @@ export declare const PriceController: Elysia<"/prices", {
|
|
98
98
|
200: {
|
99
99
|
symbol: string;
|
100
100
|
id: number;
|
101
|
-
args: import("@prisma/client/runtime/
|
101
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
102
102
|
method: import("@package/databases").PriceSourceMethod;
|
103
103
|
};
|
104
104
|
422: {
|
@@ -163,7 +163,7 @@ export declare const PriceController: Elysia<"/prices", {
|
|
163
163
|
200: {
|
164
164
|
symbol: string;
|
165
165
|
id: number;
|
166
|
-
args: import("@prisma/client/runtime/
|
166
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
167
167
|
method: import("@package/databases").PriceSourceMethod;
|
168
168
|
};
|
169
169
|
422: {
|
@@ -197,7 +197,7 @@ export declare const PriceController: Elysia<"/prices", {
|
|
197
197
|
200: {
|
198
198
|
symbol: string;
|
199
199
|
id: number;
|
200
|
-
args: import("@prisma/client/runtime/
|
200
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
201
201
|
method: import("@package/databases").PriceSourceMethod;
|
202
202
|
};
|
203
203
|
422: {
|
@@ -4,7 +4,7 @@ export declare class PriceRepository {
|
|
4
4
|
static findBySymbolOrThrow(symbol: string): Promise<{
|
5
5
|
symbol: string;
|
6
6
|
id: number;
|
7
|
-
args: import("@prisma/client/runtime/
|
7
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
8
8
|
method: import("@package/databases").PriceSourceMethod;
|
9
9
|
}>;
|
10
10
|
static findManyPriceSources(query: {
|
@@ -12,25 +12,25 @@ export declare class PriceRepository {
|
|
12
12
|
}): Promise<{
|
13
13
|
symbol: string;
|
14
14
|
id: number;
|
15
|
-
args: import("@prisma/client/runtime/
|
15
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
16
16
|
method: import("@package/databases").PriceSourceMethod;
|
17
17
|
}[]>;
|
18
18
|
static create(priceSource: CreatePriceSourceModel): Promise<{
|
19
19
|
symbol: string;
|
20
20
|
id: number;
|
21
|
-
args: import("@prisma/client/runtime/
|
21
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
22
22
|
method: import("@package/databases").PriceSourceMethod;
|
23
23
|
}>;
|
24
24
|
static updateBySymbol(unique: string, newPriceSource: UpdatePriceSourceModel): Promise<{
|
25
25
|
symbol: string;
|
26
26
|
id: number;
|
27
|
-
args: import("@prisma/client/runtime/
|
27
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
28
28
|
method: import("@package/databases").PriceSourceMethod;
|
29
29
|
}>;
|
30
30
|
static deleteBySymbol(symbol: string): Promise<{
|
31
31
|
symbol: string;
|
32
32
|
id: number;
|
33
|
-
args: import("@prisma/client/runtime/
|
33
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
34
34
|
method: import("@package/databases").PriceSourceMethod;
|
35
35
|
}>;
|
36
36
|
}
|
@@ -13,7 +13,7 @@ export declare class PriceService {
|
|
13
13
|
static getPriceSourceBySymbol(symbol: string): Promise<{
|
14
14
|
symbol: string;
|
15
15
|
id: number;
|
16
|
-
args: import("@prisma/client/runtime/
|
16
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
17
17
|
method: import("@package/databases").PriceSourceMethod;
|
18
18
|
}>;
|
19
19
|
static findManyPriceSources(query: {
|
@@ -21,20 +21,20 @@ export declare class PriceService {
|
|
21
21
|
}): Promise<{
|
22
22
|
symbol: string;
|
23
23
|
id: number;
|
24
|
-
args: import("@prisma/client/runtime/
|
24
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
25
25
|
method: import("@package/databases").PriceSourceMethod;
|
26
26
|
}[]>;
|
27
27
|
static createPriceSource(priceSource: CreatePriceSourceModel): Promise<number>;
|
28
28
|
static updatePriceSource(symbol: string, newPriceSource: UpdatePriceSourceModel): Promise<{
|
29
29
|
symbol: string;
|
30
30
|
id: number;
|
31
|
-
args: import("@prisma/client/runtime/
|
31
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
32
32
|
method: import("@package/databases").PriceSourceMethod;
|
33
33
|
}>;
|
34
34
|
static deletePriceSource(symbol: string): Promise<{
|
35
35
|
symbol: string;
|
36
36
|
id: number;
|
37
|
-
args: import("@prisma/client/runtime/
|
37
|
+
args: import("@prisma/client/runtime/client").JsonValue | null;
|
38
38
|
method: import("@package/databases").PriceSourceMethod;
|
39
39
|
}>;
|
40
40
|
}
|
@@ -62,7 +62,9 @@ export declare enum stabilityCampaigns {
|
|
62
62
|
export declare enum yieldNestCampaigns {
|
63
63
|
Ethereum_veYND = "Ethereum_veYND",
|
64
64
|
Ink_Curve_ynETHx_ETH = "Ink Curve ynETHx/ETH 0x4daAcF1af85AB4728FCB63901EFc2E984b006D37",
|
65
|
-
Ethereum_YND_WL = "Ethereum YND TEMP Locker and veYND"
|
65
|
+
Ethereum_YND_WL = "Ethereum YND TEMP Locker and veYND",
|
66
|
+
Ethereum_Curve_ynETHx_YND = "Ethereum Curve ynETHx/YND 0x5c2f5DE79dad6Db83C14F68c4240D629aA4714aa",
|
67
|
+
Ethereum_Curve_ynETHx_ETH = "Ethereum Curve ynETHx/ETH 0x01A968C8C1909B264Ce59357c4098Dc674f8af09"
|
66
68
|
}
|
67
69
|
export declare enum liskCampaigns {
|
68
70
|
Velodrome_WBTC_WETH_Lisk = "Velodrome WBTC/WETH Lisk 0xDC1479FD1Db51cA0079ceCfaA879232e168c8246",
|
@@ -3068,6 +3070,26 @@ declare const YieldNetCampaigns: {
|
|
3068
3070
|
forwarders: never[];
|
3069
3071
|
url: string;
|
3070
3072
|
};
|
3073
|
+
"Ethereum Curve ynETHx/YND 0x5c2f5DE79dad6Db83C14F68c4240D629aA4714aa": {
|
3074
|
+
campaignType: Campaign;
|
3075
|
+
computeChainId: ChainId;
|
3076
|
+
targetToken: string;
|
3077
|
+
hooks: never[];
|
3078
|
+
whitelist: never[];
|
3079
|
+
blacklist: never[];
|
3080
|
+
forwarders: never[];
|
3081
|
+
url: string;
|
3082
|
+
};
|
3083
|
+
"Ethereum Curve ynETHx/ETH 0x01A968C8C1909B264Ce59357c4098Dc674f8af09": {
|
3084
|
+
campaignType: Campaign;
|
3085
|
+
computeChainId: ChainId;
|
3086
|
+
targetToken: string;
|
3087
|
+
hooks: never[];
|
3088
|
+
whitelist: never[];
|
3089
|
+
blacklist: never[];
|
3090
|
+
forwarders: never[];
|
3091
|
+
url: string;
|
3092
|
+
};
|
3071
3093
|
};
|
3072
3094
|
declare const katanaCampaignsInterface: {
|
3073
3095
|
"Ethereum kpdUSDC 0x7B5A0182E400b241b317e781a4e9dEdFc1429822 9.589041096": {
|
@@ -28,7 +28,11 @@ export declare enum HypuurCampaigns {
|
|
28
28
|
USDXLUSDT0Kitten = "USDXL / USDT0 Kitten",
|
29
29
|
USDXLHHYPEHyperswap = "USDXL / HYPE Hyperswap",
|
30
30
|
USDXLHYPEHyperswap = "USDXL / LHYPE Hyperswap",
|
31
|
-
USDXLUSDT0Hyperswap = "USDXL / USDT0 Hyperswap"
|
31
|
+
USDXLUSDT0Hyperswap = "USDXL / USDT0 Hyperswap",
|
32
|
+
BUDDYHYPEHyperswap = "BUDDY / HYPE Hyperswap",
|
33
|
+
USOLHYPEKitten = "USOL-HYPE Kitten",
|
34
|
+
IsolatedBUDDYDepositUSDXL = "Isolated BUDDY Deposit USDXL",
|
35
|
+
IsolatedBUDDYBorrowUSDXL = "Isolated BUDDY Borrow USDXL"
|
32
36
|
}
|
33
37
|
export declare const HypurrFiSubPayloads: {
|
34
38
|
stkUSDXL: Record<string, any>;
|
@@ -54,6 +58,8 @@ export declare const HypurrFiSubPayloads: {
|
|
54
58
|
"Isolated MHYPE Borrow HYPE": Record<string, any>;
|
55
59
|
"Isolated cmETH Deposit UETH": Record<string, any>;
|
56
60
|
"Isolated cmETH Borrow UETH": Record<string, any>;
|
61
|
+
"Isolated BUDDY Deposit USDXL": Record<string, any>;
|
62
|
+
"Isolated BUDDY Borrow USDXL": Record<string, any>;
|
57
63
|
"HYPE LP Valantis": Record<string, any>;
|
58
64
|
"HYPE-uETH Kitten": Record<string, any>;
|
59
65
|
"HYPE-uBTC Kitten": Record<string, any>;
|
@@ -61,4 +67,6 @@ export declare const HypurrFiSubPayloads: {
|
|
61
67
|
"USDXL / HYPE Hyperswap": Record<string, any>;
|
62
68
|
"USDXL / LHYPE Hyperswap": Record<string, any>;
|
63
69
|
"USDXL / USDT0 Hyperswap": Record<string, any>;
|
70
|
+
"BUDDY / HYPE Hyperswap": Record<string, any>;
|
71
|
+
"USOL-HYPE Kitten": Record<string, any>;
|
64
72
|
};
|
@@ -32,18 +32,18 @@ export declare abstract class ProtocolRepository {
|
|
32
32
|
campaignId: string;
|
33
33
|
description: string | null;
|
34
34
|
id: string;
|
35
|
-
params: import("@prisma/client/runtime/
|
35
|
+
params: import("@prisma/client/runtime/client").JsonValue;
|
36
36
|
amount: string;
|
37
37
|
startTimestamp: bigint;
|
38
38
|
type: string;
|
39
39
|
computeChainId: number;
|
40
40
|
distributionChainId: number;
|
41
41
|
endTimestamp: bigint;
|
42
|
-
opportunityId: string;
|
43
|
-
creatorAddress: string;
|
44
42
|
distributionType: import("@package/databases").DistributionType;
|
45
43
|
subType: number | null;
|
46
44
|
rewardTokenId: string;
|
45
|
+
opportunityId: string;
|
46
|
+
creatorAddress: string;
|
47
47
|
manualOverrides: import("@package/databases").CampaignManualOverride[];
|
48
48
|
createdAt: Date;
|
49
49
|
rootCampaignId: string | null;
|
@@ -60,11 +60,11 @@ export declare abstract class ProtocolRepository {
|
|
60
60
|
action: import("@package/databases").OpportunityAction;
|
61
61
|
type: string;
|
62
62
|
depositUrl: string | null;
|
63
|
-
explorerAddress: string | null;
|
64
|
-
howToSteps: string[];
|
65
|
-
mainProtocolId: string | null;
|
66
63
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
67
64
|
identifier: string;
|
65
|
+
howToSteps: string[];
|
66
|
+
explorerAddress: string | null;
|
67
|
+
mainProtocolId: string | null;
|
68
68
|
dailyRewards: number;
|
69
69
|
tags: string[];
|
70
70
|
lastCampaignCreatedAt: Date;
|
@@ -30,6 +30,14 @@ export declare abstract class RewardRepository {
|
|
30
30
|
id: number;
|
31
31
|
icon: string;
|
32
32
|
};
|
33
|
+
Protocols: {
|
34
|
+
name: string;
|
35
|
+
description: string;
|
36
|
+
id: string;
|
37
|
+
url: string;
|
38
|
+
icon: string;
|
39
|
+
tags: string[];
|
40
|
+
}[];
|
33
41
|
Tokens: {
|
34
42
|
symbol: string;
|
35
43
|
name: string | null;
|
@@ -46,14 +54,6 @@ export declare abstract class RewardRepository {
|
|
46
54
|
verified: boolean;
|
47
55
|
displaySymbol: string;
|
48
56
|
}[];
|
49
|
-
Protocols: {
|
50
|
-
name: string;
|
51
|
-
description: string;
|
52
|
-
id: string;
|
53
|
-
url: string;
|
54
|
-
icon: string;
|
55
|
-
tags: string[];
|
56
|
-
}[];
|
57
57
|
MainProtocol: {
|
58
58
|
name: string;
|
59
59
|
description: string;
|
@@ -73,11 +73,11 @@ export declare abstract class RewardRepository {
|
|
73
73
|
action: import("@package/databases").OpportunityAction;
|
74
74
|
type: string;
|
75
75
|
depositUrl: string | null;
|
76
|
-
explorerAddress: string | null;
|
77
|
-
howToSteps: string[];
|
78
|
-
mainProtocolId: string | null;
|
79
76
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
80
77
|
identifier: string;
|
78
|
+
howToSteps: string[];
|
79
|
+
explorerAddress: string | null;
|
80
|
+
mainProtocolId: string | null;
|
81
81
|
dailyRewards: number;
|
82
82
|
tags: string[];
|
83
83
|
lastCampaignCreatedAt: Date;
|