@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
@@ -13,9 +13,10 @@ export declare abstract class RewardRepository {
|
|
13
13
|
address: string;
|
14
14
|
id: string;
|
15
15
|
chainId: number;
|
16
|
-
type: import("@package/databases").TokenType;
|
17
16
|
icon: string;
|
18
17
|
isNative: boolean;
|
18
|
+
isPoint: boolean;
|
19
|
+
isPreTGE: boolean;
|
19
20
|
isTest: boolean;
|
20
21
|
verified: boolean;
|
21
22
|
displaySymbol: string;
|
@@ -37,9 +38,10 @@ export declare abstract class RewardRepository {
|
|
37
38
|
address: string;
|
38
39
|
id: string;
|
39
40
|
chainId: number;
|
40
|
-
type: import("@package/databases").TokenType;
|
41
41
|
icon: string;
|
42
42
|
isNative: boolean;
|
43
|
+
isPoint: boolean;
|
44
|
+
isPreTGE: boolean;
|
43
45
|
isTest: boolean;
|
44
46
|
verified: boolean;
|
45
47
|
displaySymbol: string;
|
@@ -56,9 +56,10 @@ export declare abstract class RewardService {
|
|
56
56
|
address: string;
|
57
57
|
id: string;
|
58
58
|
chainId: number;
|
59
|
-
type: import("@package/databases").TokenType;
|
60
59
|
icon: string;
|
61
60
|
isNative: boolean;
|
61
|
+
isPoint: boolean;
|
62
|
+
isPreTGE: boolean;
|
62
63
|
isTest: boolean;
|
63
64
|
verified: boolean;
|
64
65
|
displaySymbol: string;
|
@@ -76,9 +77,10 @@ export declare abstract class RewardService {
|
|
76
77
|
address: string;
|
77
78
|
id: string;
|
78
79
|
chainId: number;
|
79
|
-
type: import("@package/databases").TokenType;
|
80
80
|
icon: string;
|
81
81
|
isNative: boolean;
|
82
|
+
isPoint: boolean;
|
83
|
+
isPreTGE: boolean;
|
82
84
|
isTest: boolean;
|
83
85
|
verified: boolean;
|
84
86
|
} & {
|
@@ -142,9 +144,10 @@ export declare abstract class RewardService {
|
|
142
144
|
address: string;
|
143
145
|
id: string;
|
144
146
|
chainId: number;
|
145
|
-
type: import("@package/databases").TokenType;
|
146
147
|
icon: string;
|
147
148
|
isNative: boolean;
|
149
|
+
isPoint: boolean;
|
150
|
+
isPreTGE: boolean;
|
148
151
|
isTest: boolean;
|
149
152
|
verified: boolean;
|
150
153
|
displaySymbol: string;
|
@@ -204,9 +207,10 @@ export declare abstract class RewardService {
|
|
204
207
|
address: string;
|
205
208
|
id: string;
|
206
209
|
chainId: number;
|
207
|
-
type: import("@package/databases").TokenType;
|
208
210
|
icon: string;
|
209
211
|
isNative: boolean;
|
212
|
+
isPoint: boolean;
|
213
|
+
isPreTGE: boolean;
|
210
214
|
isTest: boolean;
|
211
215
|
verified: boolean;
|
212
216
|
displaySymbol: string;
|
@@ -228,9 +232,10 @@ export declare abstract class RewardService {
|
|
228
232
|
address: string;
|
229
233
|
id: string;
|
230
234
|
chainId: number;
|
231
|
-
type: import("@package/databases").TokenType;
|
232
235
|
icon: string;
|
233
236
|
isNative: boolean;
|
237
|
+
isPoint: boolean;
|
238
|
+
isPreTGE: boolean;
|
234
239
|
isTest: boolean;
|
235
240
|
verified: boolean;
|
236
241
|
displaySymbol: string;
|
@@ -293,9 +298,10 @@ export declare abstract class RewardService {
|
|
293
298
|
address: string;
|
294
299
|
id: string;
|
295
300
|
chainId: number;
|
296
|
-
type: import("@package/databases").TokenType;
|
297
301
|
icon: string;
|
298
302
|
isNative: boolean;
|
303
|
+
isPoint: boolean;
|
304
|
+
isPreTGE: boolean;
|
299
305
|
isTest: boolean;
|
300
306
|
verified: boolean;
|
301
307
|
displaySymbol: string;
|
@@ -317,9 +323,10 @@ export declare abstract class RewardService {
|
|
317
323
|
address: string;
|
318
324
|
id: string;
|
319
325
|
chainId: number;
|
320
|
-
type: import("@package/databases").TokenType;
|
321
326
|
icon: string;
|
322
327
|
isNative: boolean;
|
328
|
+
isPoint: boolean;
|
329
|
+
isPreTGE: boolean;
|
323
330
|
isTest: boolean;
|
324
331
|
verified: boolean;
|
325
332
|
displaySymbol: string;
|
@@ -413,9 +420,10 @@ export declare abstract class RewardService {
|
|
413
420
|
address: string;
|
414
421
|
id: string;
|
415
422
|
chainId: number;
|
416
|
-
type: import("@package/databases").TokenType;
|
417
423
|
icon: string;
|
418
424
|
isNative: boolean;
|
425
|
+
isPoint: boolean;
|
426
|
+
isPreTGE: boolean;
|
419
427
|
isTest: boolean;
|
420
428
|
verified: boolean;
|
421
429
|
displaySymbol: string;
|
@@ -437,9 +445,10 @@ export declare abstract class RewardService {
|
|
437
445
|
address: string;
|
438
446
|
id: string;
|
439
447
|
chainId: number;
|
440
|
-
type: import("@package/databases").TokenType;
|
441
448
|
icon: string;
|
442
449
|
isNative: boolean;
|
450
|
+
isPoint: boolean;
|
451
|
+
isPreTGE: boolean;
|
443
452
|
isTest: boolean;
|
444
453
|
verified: boolean;
|
445
454
|
displaySymbol: string;
|
@@ -514,9 +523,10 @@ export declare abstract class RewardService {
|
|
514
523
|
address: string;
|
515
524
|
id: string;
|
516
525
|
chainId: number;
|
517
|
-
type: import("@package/databases").TokenType;
|
518
526
|
icon: string;
|
519
527
|
isNative: boolean;
|
528
|
+
isPoint: boolean;
|
529
|
+
isPreTGE: boolean;
|
520
530
|
isTest: boolean;
|
521
531
|
verified: boolean;
|
522
532
|
displaySymbol: string;
|
@@ -538,9 +548,10 @@ export declare abstract class RewardService {
|
|
538
548
|
address: string;
|
539
549
|
id: string;
|
540
550
|
chainId: number;
|
541
|
-
type: import("@package/databases").TokenType;
|
542
551
|
icon: string;
|
543
552
|
isNative: boolean;
|
553
|
+
isPoint: boolean;
|
554
|
+
isPreTGE: boolean;
|
544
555
|
isTest: boolean;
|
545
556
|
verified: boolean;
|
546
557
|
displaySymbol: string;
|
@@ -613,9 +624,10 @@ export declare abstract class RewardService {
|
|
613
624
|
address: string;
|
614
625
|
id: string;
|
615
626
|
chainId: number;
|
616
|
-
type: import("@package/databases").TokenType;
|
617
627
|
icon: string;
|
618
628
|
isNative: boolean;
|
629
|
+
isPoint: boolean;
|
630
|
+
isPreTGE: boolean;
|
619
631
|
isTest: boolean;
|
620
632
|
verified: boolean;
|
621
633
|
displaySymbol: string;
|
@@ -637,9 +649,10 @@ export declare abstract class RewardService {
|
|
637
649
|
address: string;
|
638
650
|
id: string;
|
639
651
|
chainId: number;
|
640
|
-
type: import("@package/databases").TokenType;
|
641
652
|
icon: string;
|
642
653
|
isNative: boolean;
|
654
|
+
isPoint: boolean;
|
655
|
+
isPreTGE: boolean;
|
643
656
|
isTest: boolean;
|
644
657
|
verified: boolean;
|
645
658
|
displaySymbol: string;
|