@merkl/api 1.11.2 → 1.11.3
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 +2 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/jobs/utils/prisma-bulk.d.ts +1 -0
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +1 -0
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +1 -0
- package/dist/src/modules/v4/reward/reward.repository.d.ts +3 -0
- package/dist/src/modules/v4/reward/reward.service.d.ts +9 -0
- package/dist/src/modules/v4/router.d.ts +2 -0
- package/dist/src/modules/v4/user/user.controller.d.ts +2 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/src/scripts/seed.d.ts +0 -1
- package/dist/src/scripts/seed.js.map +0 -1
package/dist/src/eden/index.d.ts
CHANGED
|
@@ -19350,6 +19350,7 @@ declare const eden: {
|
|
|
19350
19350
|
distributionChainId: number;
|
|
19351
19351
|
recipient: string;
|
|
19352
19352
|
proofs: string[];
|
|
19353
|
+
recipient_temp: string | null;
|
|
19353
19354
|
token: {
|
|
19354
19355
|
id: string;
|
|
19355
19356
|
name: string | null;
|
|
@@ -19484,6 +19485,7 @@ declare const eden: {
|
|
|
19484
19485
|
distributionChainId: number;
|
|
19485
19486
|
recipient: string;
|
|
19486
19487
|
proofs: string[];
|
|
19488
|
+
recipient_temp: string | null;
|
|
19487
19489
|
token: {
|
|
19488
19490
|
id: string;
|
|
19489
19491
|
name: string | null;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -20707,6 +20707,7 @@ declare const app: Elysia<"", {
|
|
|
20707
20707
|
distributionChainId: number;
|
|
20708
20708
|
recipient: string;
|
|
20709
20709
|
proofs: string[];
|
|
20710
|
+
recipient_temp: string | null;
|
|
20710
20711
|
token: {
|
|
20711
20712
|
id: string;
|
|
20712
20713
|
name: string | null;
|
|
@@ -20841,6 +20842,7 @@ declare const app: Elysia<"", {
|
|
|
20841
20842
|
distributionChainId: number;
|
|
20842
20843
|
recipient: string;
|
|
20843
20844
|
proofs: string[];
|
|
20845
|
+
recipient_temp: string | null;
|
|
20844
20846
|
token: {
|
|
20845
20847
|
id: string;
|
|
20846
20848
|
name: string | null;
|
|
@@ -296,6 +296,7 @@ export declare abstract class RewardRepository {
|
|
|
296
296
|
claimed: string;
|
|
297
297
|
pending: string;
|
|
298
298
|
proofs: string[];
|
|
299
|
+
recipient_temp: string | null;
|
|
299
300
|
})[]>;
|
|
300
301
|
/**
|
|
301
302
|
* @notice Returns rewards and campaignIds from breakdowns matching (recipient, root, tokenId)
|
|
@@ -331,6 +332,7 @@ export declare abstract class RewardRepository {
|
|
|
331
332
|
claimed: string;
|
|
332
333
|
pending: string;
|
|
333
334
|
proofs: string[];
|
|
335
|
+
recipient_temp: string | null;
|
|
334
336
|
}) | null>;
|
|
335
337
|
static findRewardsForCampaign(params: {
|
|
336
338
|
campaignId: string;
|
|
@@ -483,5 +485,6 @@ export declare abstract class RewardRepository {
|
|
|
483
485
|
claimed: string;
|
|
484
486
|
pending: string;
|
|
485
487
|
proofs: string[];
|
|
488
|
+
recipient_temp: string | null;
|
|
486
489
|
})[]>;
|
|
487
490
|
}
|
|
@@ -179,6 +179,7 @@ export declare abstract class RewardService {
|
|
|
179
179
|
distributionChainId: number;
|
|
180
180
|
recipient: string;
|
|
181
181
|
proofs: string[];
|
|
182
|
+
recipient_temp: string | null;
|
|
182
183
|
token: {
|
|
183
184
|
id: string;
|
|
184
185
|
name: string | null;
|
|
@@ -601,6 +602,7 @@ export declare abstract class RewardService {
|
|
|
601
602
|
claimed: string;
|
|
602
603
|
pending: string;
|
|
603
604
|
proofs: string[];
|
|
605
|
+
recipient_temp: string | null;
|
|
604
606
|
})[]>;
|
|
605
607
|
/**
|
|
606
608
|
* Groups a breakdown array by their corresponding opportunities
|
|
@@ -640,6 +642,7 @@ export declare abstract class RewardService {
|
|
|
640
642
|
distributionChainId: number;
|
|
641
643
|
recipient: string;
|
|
642
644
|
proofs: string[];
|
|
645
|
+
recipient_temp: string | null;
|
|
643
646
|
token: {
|
|
644
647
|
id: string;
|
|
645
648
|
name: string | null;
|
|
@@ -774,6 +777,7 @@ export declare abstract class RewardService {
|
|
|
774
777
|
distributionChainId: number;
|
|
775
778
|
recipient: string;
|
|
776
779
|
proofs: string[];
|
|
780
|
+
recipient_temp: string | null;
|
|
777
781
|
token: {
|
|
778
782
|
id: string;
|
|
779
783
|
name: string | null;
|
|
@@ -1101,6 +1105,7 @@ export declare abstract class RewardService {
|
|
|
1101
1105
|
distributionChainId: number;
|
|
1102
1106
|
recipient: string;
|
|
1103
1107
|
proofs: string[];
|
|
1108
|
+
recipient_temp: string | null;
|
|
1104
1109
|
token: {
|
|
1105
1110
|
id: string;
|
|
1106
1111
|
name: string | null;
|
|
@@ -1235,6 +1240,7 @@ export declare abstract class RewardService {
|
|
|
1235
1240
|
distributionChainId: number;
|
|
1236
1241
|
recipient: string;
|
|
1237
1242
|
proofs: string[];
|
|
1243
|
+
recipient_temp: string | null;
|
|
1238
1244
|
token: {
|
|
1239
1245
|
id: string;
|
|
1240
1246
|
name: string | null;
|
|
@@ -1673,6 +1679,7 @@ export declare abstract class RewardService {
|
|
|
1673
1679
|
claimed: string;
|
|
1674
1680
|
pending: string;
|
|
1675
1681
|
proofs: string[];
|
|
1682
|
+
recipient_temp: string | null;
|
|
1676
1683
|
})[]>;
|
|
1677
1684
|
static getUserRewardsByChain(user: string, withToken: boolean, breakdownPage?: number, chainFilter?: ChainId[], reloadChainId?: ChainId | null, withTestTokens?: boolean, claimableOnly?: boolean, tags?: string[], type?: TokenType, authOptions?: AuthenticationOptions): Promise<{
|
|
1678
1685
|
chain: {
|
|
@@ -1693,6 +1700,7 @@ export declare abstract class RewardService {
|
|
|
1693
1700
|
distributionChainId: number;
|
|
1694
1701
|
recipient: string;
|
|
1695
1702
|
proofs: string[];
|
|
1703
|
+
recipient_temp: string | null;
|
|
1696
1704
|
token: {
|
|
1697
1705
|
id: string;
|
|
1698
1706
|
name: string | null;
|
|
@@ -1951,5 +1959,6 @@ export declare abstract class RewardService {
|
|
|
1951
1959
|
claimed: string;
|
|
1952
1960
|
pending: string;
|
|
1953
1961
|
proofs: string[];
|
|
1962
|
+
recipient_temp: string | null;
|
|
1954
1963
|
})[]>;
|
|
1955
1964
|
}
|
|
@@ -20671,6 +20671,7 @@ export declare const v4: Elysia<"/v4", {
|
|
|
20671
20671
|
distributionChainId: number;
|
|
20672
20672
|
recipient: string;
|
|
20673
20673
|
proofs: string[];
|
|
20674
|
+
recipient_temp: string | null;
|
|
20674
20675
|
token: {
|
|
20675
20676
|
id: string;
|
|
20676
20677
|
name: string | null;
|
|
@@ -20805,6 +20806,7 @@ export declare const v4: Elysia<"/v4", {
|
|
|
20805
20806
|
distributionChainId: number;
|
|
20806
20807
|
recipient: string;
|
|
20807
20808
|
proofs: string[];
|
|
20809
|
+
recipient_temp: string | null;
|
|
20808
20810
|
token: {
|
|
20809
20811
|
id: string;
|
|
20810
20812
|
name: string | null;
|
|
@@ -331,6 +331,7 @@ export declare const UserController: Elysia<"/users", {
|
|
|
331
331
|
distributionChainId: number;
|
|
332
332
|
recipient: string;
|
|
333
333
|
proofs: string[];
|
|
334
|
+
recipient_temp: string | null;
|
|
334
335
|
token: {
|
|
335
336
|
id: string;
|
|
336
337
|
name: string | null;
|
|
@@ -465,6 +466,7 @@ export declare const UserController: Elysia<"/users", {
|
|
|
465
466
|
distributionChainId: number;
|
|
466
467
|
recipient: string;
|
|
467
468
|
proofs: string[];
|
|
469
|
+
recipient_temp: string | null;
|
|
468
470
|
token: {
|
|
469
471
|
id: string;
|
|
470
472
|
name: string | null;
|