@merkl/api 1.0.67 → 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
@@ -106,8 +106,8 @@ export declare abstract class RewardService {
|
|
106
106
|
chainId: number;
|
107
107
|
action: import("@package/databases").OpportunityAction;
|
108
108
|
type: string;
|
109
|
-
howToSteps: string[];
|
110
109
|
identifier: string;
|
110
|
+
howToSteps: string[];
|
111
111
|
dailyRewards: number;
|
112
112
|
tags: string[];
|
113
113
|
}, number>>;
|
@@ -129,6 +129,14 @@ export declare abstract class RewardService {
|
|
129
129
|
id: number;
|
130
130
|
icon: string;
|
131
131
|
};
|
132
|
+
Protocols: {
|
133
|
+
name: string;
|
134
|
+
description: string;
|
135
|
+
id: string;
|
136
|
+
url: string;
|
137
|
+
icon: string;
|
138
|
+
tags: string[];
|
139
|
+
}[];
|
132
140
|
Tokens: {
|
133
141
|
symbol: string;
|
134
142
|
name: string | null;
|
@@ -145,14 +153,6 @@ export declare abstract class RewardService {
|
|
145
153
|
verified: boolean;
|
146
154
|
displaySymbol: string;
|
147
155
|
}[];
|
148
|
-
Protocols: {
|
149
|
-
name: string;
|
150
|
-
description: string;
|
151
|
-
id: string;
|
152
|
-
url: string;
|
153
|
-
icon: string;
|
154
|
-
tags: string[];
|
155
|
-
}[];
|
156
156
|
MainProtocol: {
|
157
157
|
name: string;
|
158
158
|
description: string;
|
@@ -172,11 +172,11 @@ export declare abstract class RewardService {
|
|
172
172
|
action: import("@package/databases").OpportunityAction;
|
173
173
|
type: string;
|
174
174
|
depositUrl: string | null;
|
175
|
-
explorerAddress: string | null;
|
176
|
-
howToSteps: string[];
|
177
|
-
mainProtocolId: string | null;
|
178
175
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
179
176
|
identifier: string;
|
177
|
+
howToSteps: string[];
|
178
|
+
explorerAddress: string | null;
|
179
|
+
mainProtocolId: string | null;
|
180
180
|
dailyRewards: number;
|
181
181
|
tags: string[];
|
182
182
|
lastCampaignCreatedAt: Date;
|
@@ -217,6 +217,14 @@ export declare abstract class RewardService {
|
|
217
217
|
id: number;
|
218
218
|
icon: string;
|
219
219
|
};
|
220
|
+
Protocols: {
|
221
|
+
name: string;
|
222
|
+
description: string;
|
223
|
+
id: string;
|
224
|
+
url: string;
|
225
|
+
icon: string;
|
226
|
+
tags: string[];
|
227
|
+
}[];
|
220
228
|
Tokens: {
|
221
229
|
symbol: string;
|
222
230
|
name: string | null;
|
@@ -233,14 +241,6 @@ export declare abstract class RewardService {
|
|
233
241
|
verified: boolean;
|
234
242
|
displaySymbol: string;
|
235
243
|
}[];
|
236
|
-
Protocols: {
|
237
|
-
name: string;
|
238
|
-
description: string;
|
239
|
-
id: string;
|
240
|
-
url: string;
|
241
|
-
icon: string;
|
242
|
-
tags: string[];
|
243
|
-
}[];
|
244
244
|
MainProtocol: {
|
245
245
|
name: string;
|
246
246
|
description: string;
|
@@ -260,11 +260,11 @@ export declare abstract class RewardService {
|
|
260
260
|
action: import("@package/databases").OpportunityAction;
|
261
261
|
type: string;
|
262
262
|
depositUrl: string | null;
|
263
|
-
explorerAddress: string | null;
|
264
|
-
howToSteps: string[];
|
265
|
-
mainProtocolId: string | null;
|
266
263
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
267
264
|
identifier: string;
|
265
|
+
howToSteps: string[];
|
266
|
+
explorerAddress: string | null;
|
267
|
+
mainProtocolId: string | null;
|
268
268
|
dailyRewards: number;
|
269
269
|
tags: string[];
|
270
270
|
lastCampaignCreatedAt: Date;
|
@@ -308,6 +308,14 @@ export declare abstract class RewardService {
|
|
308
308
|
id: number;
|
309
309
|
icon: string;
|
310
310
|
};
|
311
|
+
Protocols: {
|
312
|
+
name: string;
|
313
|
+
description: string;
|
314
|
+
id: string;
|
315
|
+
url: string;
|
316
|
+
icon: string;
|
317
|
+
tags: string[];
|
318
|
+
}[];
|
311
319
|
Tokens: {
|
312
320
|
symbol: string;
|
313
321
|
name: string | null;
|
@@ -324,14 +332,6 @@ export declare abstract class RewardService {
|
|
324
332
|
verified: boolean;
|
325
333
|
displaySymbol: string;
|
326
334
|
}[];
|
327
|
-
Protocols: {
|
328
|
-
name: string;
|
329
|
-
description: string;
|
330
|
-
id: string;
|
331
|
-
url: string;
|
332
|
-
icon: string;
|
333
|
-
tags: string[];
|
334
|
-
}[];
|
335
335
|
MainProtocol: {
|
336
336
|
name: string;
|
337
337
|
description: string;
|
@@ -351,11 +351,11 @@ export declare abstract class RewardService {
|
|
351
351
|
action: import("@package/databases").OpportunityAction;
|
352
352
|
type: string;
|
353
353
|
depositUrl: string | null;
|
354
|
-
explorerAddress: string | null;
|
355
|
-
howToSteps: string[];
|
356
|
-
mainProtocolId: string | null;
|
357
354
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
358
355
|
identifier: string;
|
356
|
+
howToSteps: string[];
|
357
|
+
explorerAddress: string | null;
|
358
|
+
mainProtocolId: string | null;
|
359
359
|
dailyRewards: number;
|
360
360
|
tags: string[];
|
361
361
|
lastCampaignCreatedAt: Date;
|
@@ -430,6 +430,14 @@ export declare abstract class RewardService {
|
|
430
430
|
id: number;
|
431
431
|
icon: string;
|
432
432
|
};
|
433
|
+
Protocols: {
|
434
|
+
name: string;
|
435
|
+
description: string;
|
436
|
+
id: string;
|
437
|
+
url: string;
|
438
|
+
icon: string;
|
439
|
+
tags: string[];
|
440
|
+
}[];
|
433
441
|
Tokens: {
|
434
442
|
symbol: string;
|
435
443
|
name: string | null;
|
@@ -446,14 +454,6 @@ export declare abstract class RewardService {
|
|
446
454
|
verified: boolean;
|
447
455
|
displaySymbol: string;
|
448
456
|
}[];
|
449
|
-
Protocols: {
|
450
|
-
name: string;
|
451
|
-
description: string;
|
452
|
-
id: string;
|
453
|
-
url: string;
|
454
|
-
icon: string;
|
455
|
-
tags: string[];
|
456
|
-
}[];
|
457
457
|
MainProtocol: {
|
458
458
|
name: string;
|
459
459
|
description: string;
|
@@ -473,11 +473,11 @@ export declare abstract class RewardService {
|
|
473
473
|
action: import("@package/databases").OpportunityAction;
|
474
474
|
type: string;
|
475
475
|
depositUrl: string | null;
|
476
|
-
explorerAddress: string | null;
|
477
|
-
howToSteps: string[];
|
478
|
-
mainProtocolId: string | null;
|
479
476
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
480
477
|
identifier: string;
|
478
|
+
howToSteps: string[];
|
479
|
+
explorerAddress: string | null;
|
480
|
+
mainProtocolId: string | null;
|
481
481
|
dailyRewards: number;
|
482
482
|
tags: string[];
|
483
483
|
lastCampaignCreatedAt: Date;
|
@@ -533,6 +533,14 @@ export declare abstract class RewardService {
|
|
533
533
|
id: number;
|
534
534
|
icon: string;
|
535
535
|
};
|
536
|
+
Protocols: {
|
537
|
+
name: string;
|
538
|
+
description: string;
|
539
|
+
id: string;
|
540
|
+
url: string;
|
541
|
+
icon: string;
|
542
|
+
tags: string[];
|
543
|
+
}[];
|
536
544
|
Tokens: {
|
537
545
|
symbol: string;
|
538
546
|
name: string | null;
|
@@ -549,14 +557,6 @@ export declare abstract class RewardService {
|
|
549
557
|
verified: boolean;
|
550
558
|
displaySymbol: string;
|
551
559
|
}[];
|
552
|
-
Protocols: {
|
553
|
-
name: string;
|
554
|
-
description: string;
|
555
|
-
id: string;
|
556
|
-
url: string;
|
557
|
-
icon: string;
|
558
|
-
tags: string[];
|
559
|
-
}[];
|
560
560
|
MainProtocol: {
|
561
561
|
name: string;
|
562
562
|
description: string;
|
@@ -576,11 +576,11 @@ export declare abstract class RewardService {
|
|
576
576
|
action: import("@package/databases").OpportunityAction;
|
577
577
|
type: string;
|
578
578
|
depositUrl: string | null;
|
579
|
-
explorerAddress: string | null;
|
580
|
-
howToSteps: string[];
|
581
|
-
mainProtocolId: string | null;
|
582
579
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
583
580
|
identifier: string;
|
581
|
+
howToSteps: string[];
|
582
|
+
explorerAddress: string | null;
|
583
|
+
mainProtocolId: string | null;
|
584
584
|
dailyRewards: number;
|
585
585
|
tags: string[];
|
586
586
|
lastCampaignCreatedAt: Date;
|
@@ -634,6 +634,14 @@ export declare abstract class RewardService {
|
|
634
634
|
id: number;
|
635
635
|
icon: string;
|
636
636
|
};
|
637
|
+
Protocols: {
|
638
|
+
name: string;
|
639
|
+
description: string;
|
640
|
+
id: string;
|
641
|
+
url: string;
|
642
|
+
icon: string;
|
643
|
+
tags: string[];
|
644
|
+
}[];
|
637
645
|
Tokens: {
|
638
646
|
symbol: string;
|
639
647
|
name: string | null;
|
@@ -650,14 +658,6 @@ export declare abstract class RewardService {
|
|
650
658
|
verified: boolean;
|
651
659
|
displaySymbol: string;
|
652
660
|
}[];
|
653
|
-
Protocols: {
|
654
|
-
name: string;
|
655
|
-
description: string;
|
656
|
-
id: string;
|
657
|
-
url: string;
|
658
|
-
icon: string;
|
659
|
-
tags: string[];
|
660
|
-
}[];
|
661
661
|
MainProtocol: {
|
662
662
|
name: string;
|
663
663
|
description: string;
|
@@ -677,11 +677,11 @@ export declare abstract class RewardService {
|
|
677
677
|
action: import("@package/databases").OpportunityAction;
|
678
678
|
type: string;
|
679
679
|
depositUrl: string | null;
|
680
|
-
explorerAddress: string | null;
|
681
|
-
howToSteps: string[];
|
682
|
-
mainProtocolId: string | null;
|
683
680
|
manualOverrides: import("@package/databases").OpportunityManualOverride[];
|
684
681
|
identifier: string;
|
682
|
+
howToSteps: string[];
|
683
|
+
explorerAddress: string | null;
|
684
|
+
mainProtocolId: string | null;
|
685
685
|
dailyRewards: number;
|
686
686
|
tags: string[];
|
687
687
|
lastCampaignCreatedAt: Date;
|