@merkl/api 1.1.15 → 1.1.16
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 +0 -61
- package/dist/src/eden/index.d.ts +5130 -773
- 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/implementations/ERC4626/metadata.d.ts +31 -0
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/ERC4626/tvl.d.ts +6 -0
- package/dist/src/engine/implementations/Erc20/subTypes/index.d.ts +2 -1
- package/dist/src/engine/tvl/factory.d.ts +1 -1
- package/dist/src/index.d.ts +2432 -249
- package/dist/src/modules/v4/apr/apr.model.d.ts +8 -0
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +396 -20
- package/dist/src/modules/v4/campaign/campaign.convertor.d.ts +2 -1
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +15 -17
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +63 -60
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +54 -34
- package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +1168 -44
- package/dist/src/modules/v4/dynamicData/dynamicData.service.d.ts +14 -1
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +271 -46
- package/dist/src/modules/v4/opportunity/opportunity.converter.d.ts +6 -0
- package/dist/src/modules/v4/opportunity/opportunity.formatter.d.ts +3 -6
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +74 -21
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +21 -34
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +38 -40
- package/dist/src/modules/v4/payload/payload.controller.d.ts +468 -16
- package/dist/src/modules/v4/payload/payload.model.d.ts +10 -1
- package/dist/src/modules/v4/payload/payload.service.d.ts +379 -12
- package/dist/src/modules/v4/programPayload/programPayload.controller.d.ts +17 -3
- package/dist/src/modules/v4/programPayload/programPayload.model.d.ts +1 -1
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +429 -7
- package/dist/src/modules/v4/programPayload/programPayload.service.d.ts +1 -2
- package/dist/src/modules/v4/programPayload/subPayloads/hypurrFi.d.ts +11 -3
- package/dist/src/modules/v4/reward/reward.controller.d.ts +3 -3
- package/dist/src/modules/v4/reward/reward.model.d.ts +18 -4
- package/dist/src/modules/v4/reward/reward.repository.d.ts +2 -4
- package/dist/src/modules/v4/reward/reward.service.d.ts +13 -26
- package/dist/src/modules/v4/router.d.ts +2430 -250
- package/dist/src/modules/v4/token/token.controller.d.ts +14 -22
- package/dist/src/modules/v4/token/token.model.d.ts +15 -5
- package/dist/src/modules/v4/token/token.repository.d.ts +7 -11
- package/dist/src/modules/v4/token/token.service.d.ts +348 -0
- package/dist/src/modules/v4/transaction/transaction.model.d.ts +17 -0
- package/dist/src/modules/v4/user/user.controller.d.ts +2 -4
- package/dist/src/routes/v3/opportunity.d.ts +3 -0
- package/dist/src/routes/v3/payload.d.ts +1 -1
- package/dist/src/routes/v3/router.d.ts +4 -1
- package/dist/src/utils/parseDistributionType.d.ts +2 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -13,10 +13,9 @@ export declare abstract class RewardRepository {
|
|
13
13
|
address: string;
|
14
14
|
id: string;
|
15
15
|
chainId: number;
|
16
|
+
type: import("@package/databases").TokenType;
|
16
17
|
icon: string;
|
17
18
|
isNative: boolean;
|
18
|
-
isPoint: boolean;
|
19
|
-
isPreTGE: boolean;
|
20
19
|
isTest: boolean;
|
21
20
|
verified: boolean;
|
22
21
|
displaySymbol: string;
|
@@ -38,10 +37,9 @@ export declare abstract class RewardRepository {
|
|
38
37
|
address: string;
|
39
38
|
id: string;
|
40
39
|
chainId: number;
|
40
|
+
type: import("@package/databases").TokenType;
|
41
41
|
icon: string;
|
42
42
|
isNative: boolean;
|
43
|
-
isPoint: boolean;
|
44
|
-
isPreTGE: boolean;
|
45
43
|
isTest: boolean;
|
46
44
|
verified: boolean;
|
47
45
|
displaySymbol: string;
|
@@ -56,10 +56,9 @@ export declare abstract class RewardService {
|
|
56
56
|
address: string;
|
57
57
|
id: string;
|
58
58
|
chainId: number;
|
59
|
+
type: import("@package/databases").TokenType;
|
59
60
|
icon: string;
|
60
61
|
isNative: boolean;
|
61
|
-
isPoint: boolean;
|
62
|
-
isPreTGE: boolean;
|
63
62
|
isTest: boolean;
|
64
63
|
verified: boolean;
|
65
64
|
displaySymbol: string;
|
@@ -77,10 +76,9 @@ export declare abstract class RewardService {
|
|
77
76
|
address: string;
|
78
77
|
id: string;
|
79
78
|
chainId: number;
|
79
|
+
type: import("@package/databases").TokenType;
|
80
80
|
icon: string;
|
81
81
|
isNative: boolean;
|
82
|
-
isPoint: boolean;
|
83
|
-
isPreTGE: boolean;
|
84
82
|
isTest: boolean;
|
85
83
|
verified: boolean;
|
86
84
|
} & {
|
@@ -144,10 +142,9 @@ export declare abstract class RewardService {
|
|
144
142
|
address: string;
|
145
143
|
id: string;
|
146
144
|
chainId: number;
|
145
|
+
type: import("@package/databases").TokenType;
|
147
146
|
icon: string;
|
148
147
|
isNative: boolean;
|
149
|
-
isPoint: boolean;
|
150
|
-
isPreTGE: boolean;
|
151
148
|
isTest: boolean;
|
152
149
|
verified: boolean;
|
153
150
|
displaySymbol: string;
|
@@ -207,10 +204,9 @@ export declare abstract class RewardService {
|
|
207
204
|
address: string;
|
208
205
|
id: string;
|
209
206
|
chainId: number;
|
207
|
+
type: import("@package/databases").TokenType;
|
210
208
|
icon: string;
|
211
209
|
isNative: boolean;
|
212
|
-
isPoint: boolean;
|
213
|
-
isPreTGE: boolean;
|
214
210
|
isTest: boolean;
|
215
211
|
verified: boolean;
|
216
212
|
displaySymbol: string;
|
@@ -232,10 +228,9 @@ export declare abstract class RewardService {
|
|
232
228
|
address: string;
|
233
229
|
id: string;
|
234
230
|
chainId: number;
|
231
|
+
type: import("@package/databases").TokenType;
|
235
232
|
icon: string;
|
236
233
|
isNative: boolean;
|
237
|
-
isPoint: boolean;
|
238
|
-
isPreTGE: boolean;
|
239
234
|
isTest: boolean;
|
240
235
|
verified: boolean;
|
241
236
|
displaySymbol: string;
|
@@ -298,10 +293,9 @@ export declare abstract class RewardService {
|
|
298
293
|
address: string;
|
299
294
|
id: string;
|
300
295
|
chainId: number;
|
296
|
+
type: import("@package/databases").TokenType;
|
301
297
|
icon: string;
|
302
298
|
isNative: boolean;
|
303
|
-
isPoint: boolean;
|
304
|
-
isPreTGE: boolean;
|
305
299
|
isTest: boolean;
|
306
300
|
verified: boolean;
|
307
301
|
displaySymbol: string;
|
@@ -323,10 +317,9 @@ export declare abstract class RewardService {
|
|
323
317
|
address: string;
|
324
318
|
id: string;
|
325
319
|
chainId: number;
|
320
|
+
type: import("@package/databases").TokenType;
|
326
321
|
icon: string;
|
327
322
|
isNative: boolean;
|
328
|
-
isPoint: boolean;
|
329
|
-
isPreTGE: boolean;
|
330
323
|
isTest: boolean;
|
331
324
|
verified: boolean;
|
332
325
|
displaySymbol: string;
|
@@ -420,10 +413,9 @@ export declare abstract class RewardService {
|
|
420
413
|
address: string;
|
421
414
|
id: string;
|
422
415
|
chainId: number;
|
416
|
+
type: import("@package/databases").TokenType;
|
423
417
|
icon: string;
|
424
418
|
isNative: boolean;
|
425
|
-
isPoint: boolean;
|
426
|
-
isPreTGE: boolean;
|
427
419
|
isTest: boolean;
|
428
420
|
verified: boolean;
|
429
421
|
displaySymbol: string;
|
@@ -445,10 +437,9 @@ export declare abstract class RewardService {
|
|
445
437
|
address: string;
|
446
438
|
id: string;
|
447
439
|
chainId: number;
|
440
|
+
type: import("@package/databases").TokenType;
|
448
441
|
icon: string;
|
449
442
|
isNative: boolean;
|
450
|
-
isPoint: boolean;
|
451
|
-
isPreTGE: boolean;
|
452
443
|
isTest: boolean;
|
453
444
|
verified: boolean;
|
454
445
|
displaySymbol: string;
|
@@ -523,10 +514,9 @@ export declare abstract class RewardService {
|
|
523
514
|
address: string;
|
524
515
|
id: string;
|
525
516
|
chainId: number;
|
517
|
+
type: import("@package/databases").TokenType;
|
526
518
|
icon: string;
|
527
519
|
isNative: boolean;
|
528
|
-
isPoint: boolean;
|
529
|
-
isPreTGE: boolean;
|
530
520
|
isTest: boolean;
|
531
521
|
verified: boolean;
|
532
522
|
displaySymbol: string;
|
@@ -548,10 +538,9 @@ export declare abstract class RewardService {
|
|
548
538
|
address: string;
|
549
539
|
id: string;
|
550
540
|
chainId: number;
|
541
|
+
type: import("@package/databases").TokenType;
|
551
542
|
icon: string;
|
552
543
|
isNative: boolean;
|
553
|
-
isPoint: boolean;
|
554
|
-
isPreTGE: boolean;
|
555
544
|
isTest: boolean;
|
556
545
|
verified: boolean;
|
557
546
|
displaySymbol: string;
|
@@ -624,10 +613,9 @@ export declare abstract class RewardService {
|
|
624
613
|
address: string;
|
625
614
|
id: string;
|
626
615
|
chainId: number;
|
616
|
+
type: import("@package/databases").TokenType;
|
627
617
|
icon: string;
|
628
618
|
isNative: boolean;
|
629
|
-
isPoint: boolean;
|
630
|
-
isPreTGE: boolean;
|
631
619
|
isTest: boolean;
|
632
620
|
verified: boolean;
|
633
621
|
displaySymbol: string;
|
@@ -649,10 +637,9 @@ export declare abstract class RewardService {
|
|
649
637
|
address: string;
|
650
638
|
id: string;
|
651
639
|
chainId: number;
|
640
|
+
type: import("@package/databases").TokenType;
|
652
641
|
icon: string;
|
653
642
|
isNative: boolean;
|
654
|
-
isPoint: boolean;
|
655
|
-
isPreTGE: boolean;
|
656
643
|
isTest: boolean;
|
657
644
|
verified: boolean;
|
658
645
|
displaySymbol: string;
|