@merkl/api 0.10.420 → 0.10.422
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/database/api/.generated/drizzle/schema.d.ts +127 -0
- package/dist/database/api/.generated/drizzle/schema.js +13 -0
- package/dist/database/api/.generated/drizzle/schema.ts +15 -0
- package/dist/database/api/.generated/edge.js +28 -4
- package/dist/database/api/.generated/index-browser.js +25 -1
- package/dist/database/api/.generated/index.d.ts +1633 -205
- package/dist/database/api/.generated/index.js +28 -4
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +19 -0
- package/dist/database/api/.generated/wasm.js +25 -1
- package/dist/src/eden/index.d.ts +75 -115
- package/dist/src/index.d.ts +15 -23
- package/dist/src/index.js +1 -1
- package/dist/src/libs/campaigns/utils/getEulerV2Vaults.d.ts +5 -0
- package/dist/src/libs/campaigns/utils/getEulerV2Vaults.js +63 -4
- package/dist/src/libs/campaigns/utils/getUniswapV4Pools.js +72 -13
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +1 -1
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +9 -9
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +1 -1
- package/dist/src/modules/v4/dynamicData/dynamicData.controller.d.ts +1 -1
- package/dist/src/modules/v4/interaction/interaction.service.js +2 -3
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +3 -3
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +5 -5
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +72 -72
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +1 -1
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +5 -0
- package/dist/src/modules/v4/programPayload/programPayload.repository.js +93 -4
- package/dist/src/modules/v4/reward/reward.controller.d.ts +4 -12
- package/dist/src/modules/v4/reward/reward.repository.d.ts +7 -11
- package/dist/src/modules/v4/reward/reward.service.d.ts +5 -10
- package/dist/src/modules/v4/router.d.ts +15 -23
- package/dist/src/modules/v4/status/status.controller.d.ts +6 -6
- package/dist/src/modules/v4/status/status.repository.d.ts +6 -6
- package/dist/src/modules/v4/status/status.service.d.ts +6 -6
- package/dist/src/modules/v4/token/token.repository.d.ts +2 -2
- package/dist/src/modules/v4/token/token.service.d.ts +3 -2
- package/dist/src/modules/v4/user/user.repository.d.ts +1 -1
- package/dist/src/modules/v4/user/user.service.d.ts +1 -1
- package/dist/src/utils/prisma.d.ts +3 -16
- package/dist/src/utils/prisma.js +1 -2
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/src/eden/index.d.ts
CHANGED
@@ -149,6 +149,7 @@ declare const eden: {
|
|
149
149
|
tags: string[];
|
150
150
|
icon: string;
|
151
151
|
} | null | undefined;
|
152
|
+
depositUrl?: string | undefined;
|
152
153
|
aprRecord?: {
|
153
154
|
timestamp: string | bigint;
|
154
155
|
cumulated: number;
|
@@ -160,7 +161,6 @@ declare const eden: {
|
|
160
161
|
aprRecordId: string;
|
161
162
|
}[];
|
162
163
|
} | undefined;
|
163
|
-
depositUrl?: string | undefined;
|
164
164
|
tvlRecord?: {
|
165
165
|
total: number;
|
166
166
|
timestamp: string | bigint;
|
@@ -252,6 +252,7 @@ declare const eden: {
|
|
252
252
|
tags: string[];
|
253
253
|
icon: string;
|
254
254
|
} | null | undefined;
|
255
|
+
depositUrl?: string | undefined;
|
255
256
|
aprRecord?: {
|
256
257
|
timestamp: string | bigint;
|
257
258
|
cumulated: number;
|
@@ -263,7 +264,6 @@ declare const eden: {
|
|
263
264
|
aprRecordId: string;
|
264
265
|
}[];
|
265
266
|
} | undefined;
|
266
|
-
depositUrl?: string | undefined;
|
267
267
|
tvlRecord?: {
|
268
268
|
total: number;
|
269
269
|
timestamp: string | bigint;
|
@@ -616,6 +616,7 @@ declare const eden: {
|
|
616
616
|
tags: string[];
|
617
617
|
icon: string;
|
618
618
|
} | null | undefined;
|
619
|
+
depositUrl?: string | undefined;
|
619
620
|
aprRecord?: {
|
620
621
|
timestamp: string | bigint;
|
621
622
|
cumulated: number;
|
@@ -627,7 +628,6 @@ declare const eden: {
|
|
627
628
|
aprRecordId: string;
|
628
629
|
}[];
|
629
630
|
} | undefined;
|
630
|
-
depositUrl?: string | undefined;
|
631
631
|
tvlRecord?: {
|
632
632
|
total: number;
|
633
633
|
timestamp: string | bigint;
|
@@ -1030,10 +1030,10 @@ declare const eden: {
|
|
1030
1030
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
1031
1031
|
200: {
|
1032
1032
|
endTimestamp: bigint;
|
1033
|
+
campaignId: string;
|
1033
1034
|
CampaignStatus: {
|
1034
1035
|
computedUntil: bigint;
|
1035
1036
|
}[];
|
1036
|
-
campaignId: string;
|
1037
1037
|
}[];
|
1038
1038
|
}>>;
|
1039
1039
|
};
|
@@ -1453,12 +1453,8 @@ declare const eden: {
|
|
1453
1453
|
};
|
1454
1454
|
fetch?: RequestInit | undefined;
|
1455
1455
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
1456
|
-
|
1457
|
-
|
1458
|
-
claimed: string;
|
1459
|
-
pending: string;
|
1460
|
-
recipient: string;
|
1461
|
-
}[];
|
1456
|
+
[x: string]: any;
|
1457
|
+
200: any;
|
1462
1458
|
}>>;
|
1463
1459
|
};
|
1464
1460
|
total: {
|
@@ -1504,12 +1500,8 @@ declare const eden: {
|
|
1504
1500
|
};
|
1505
1501
|
fetch?: RequestInit | undefined;
|
1506
1502
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
1507
|
-
|
1508
|
-
|
1509
|
-
claimed: string;
|
1510
|
-
pending: string;
|
1511
|
-
recipient: string;
|
1512
|
-
}[];
|
1503
|
+
[x: string]: any;
|
1504
|
+
200: any;
|
1513
1505
|
}>>;
|
1514
1506
|
};
|
1515
1507
|
total: {
|
@@ -2502,13 +2494,13 @@ declare const eden: {
|
|
2502
2494
|
chainId?: number | undefined;
|
2503
2495
|
startTimestamp?: string | undefined;
|
2504
2496
|
endTimestamp?: string | undefined;
|
2505
|
-
campaignStatus?: {} | undefined;
|
2506
2497
|
distributionChainId?: number | undefined;
|
2507
2498
|
campaignId?: string | undefined;
|
2508
2499
|
rewardTokenId?: string | undefined;
|
2509
2500
|
amount?: string | undefined;
|
2510
2501
|
opportunityId?: string | undefined;
|
2511
2502
|
creatorAddress?: string | undefined;
|
2503
|
+
campaignStatus?: {} | undefined;
|
2512
2504
|
rewardToken?: {} | undefined;
|
2513
2505
|
rewardTokenAddress?: string | undefined;
|
2514
2506
|
distributionChain?: {} | undefined;
|
@@ -2656,6 +2648,12 @@ declare const eden: {
|
|
2656
2648
|
delayFormatted: string;
|
2657
2649
|
startTimestamp: bigint;
|
2658
2650
|
endTimestamp: bigint;
|
2651
|
+
computeChainId: number;
|
2652
|
+
distributionChainId: number;
|
2653
|
+
campaignId: string;
|
2654
|
+
Opportunity: {
|
2655
|
+
name: string;
|
2656
|
+
};
|
2659
2657
|
CampaignStatus: {
|
2660
2658
|
error: string;
|
2661
2659
|
details: import("database/api/.generated/runtime/library").JsonValue;
|
@@ -2664,12 +2662,6 @@ declare const eden: {
|
|
2664
2662
|
computedUntil: bigint;
|
2665
2663
|
processingStarted: bigint;
|
2666
2664
|
}[];
|
2667
|
-
Opportunity: {
|
2668
|
-
name: string;
|
2669
|
-
};
|
2670
|
-
computeChainId: number;
|
2671
|
-
distributionChainId: number;
|
2672
|
-
campaignId: string;
|
2673
2665
|
}[];
|
2674
2666
|
}>>;
|
2675
2667
|
};
|
@@ -3150,6 +3142,7 @@ declare const eden: {
|
|
3150
3142
|
tags: string[];
|
3151
3143
|
icon: string;
|
3152
3144
|
} | null | undefined;
|
3145
|
+
depositUrl?: string | undefined;
|
3153
3146
|
aprRecord?: {
|
3154
3147
|
timestamp: string | bigint;
|
3155
3148
|
cumulated: number;
|
@@ -3161,7 +3154,6 @@ declare const eden: {
|
|
3161
3154
|
aprRecordId: string;
|
3162
3155
|
}[];
|
3163
3156
|
} | undefined;
|
3164
|
-
depositUrl?: string | undefined;
|
3165
3157
|
tvlRecord?: {
|
3166
3158
|
total: number;
|
3167
3159
|
timestamp: string | bigint;
|
@@ -3253,6 +3245,7 @@ declare const eden: {
|
|
3253
3245
|
tags: string[];
|
3254
3246
|
icon: string;
|
3255
3247
|
} | null | undefined;
|
3248
|
+
depositUrl?: string | undefined;
|
3256
3249
|
aprRecord?: {
|
3257
3250
|
timestamp: string | bigint;
|
3258
3251
|
cumulated: number;
|
@@ -3264,7 +3257,6 @@ declare const eden: {
|
|
3264
3257
|
aprRecordId: string;
|
3265
3258
|
}[];
|
3266
3259
|
} | undefined;
|
3267
|
-
depositUrl?: string | undefined;
|
3268
3260
|
tvlRecord?: {
|
3269
3261
|
total: number;
|
3270
3262
|
timestamp: string | bigint;
|
@@ -3617,6 +3609,7 @@ declare const eden: {
|
|
3617
3609
|
tags: string[];
|
3618
3610
|
icon: string;
|
3619
3611
|
} | null | undefined;
|
3612
|
+
depositUrl?: string | undefined;
|
3620
3613
|
aprRecord?: {
|
3621
3614
|
timestamp: string | bigint;
|
3622
3615
|
cumulated: number;
|
@@ -3628,7 +3621,6 @@ declare const eden: {
|
|
3628
3621
|
aprRecordId: string;
|
3629
3622
|
}[];
|
3630
3623
|
} | undefined;
|
3631
|
-
depositUrl?: string | undefined;
|
3632
3624
|
tvlRecord?: {
|
3633
3625
|
total: number;
|
3634
3626
|
timestamp: string | bigint;
|
@@ -4031,10 +4023,10 @@ declare const eden: {
|
|
4031
4023
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
4032
4024
|
200: {
|
4033
4025
|
endTimestamp: bigint;
|
4026
|
+
campaignId: string;
|
4034
4027
|
CampaignStatus: {
|
4035
4028
|
computedUntil: bigint;
|
4036
4029
|
}[];
|
4037
|
-
campaignId: string;
|
4038
4030
|
}[];
|
4039
4031
|
}>>;
|
4040
4032
|
};
|
@@ -4454,12 +4446,8 @@ declare const eden: {
|
|
4454
4446
|
};
|
4455
4447
|
fetch?: RequestInit | undefined;
|
4456
4448
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
4457
|
-
|
4458
|
-
|
4459
|
-
claimed: string;
|
4460
|
-
pending: string;
|
4461
|
-
recipient: string;
|
4462
|
-
}[];
|
4449
|
+
[x: string]: any;
|
4450
|
+
200: any;
|
4463
4451
|
}>>;
|
4464
4452
|
};
|
4465
4453
|
total: {
|
@@ -4505,12 +4493,8 @@ declare const eden: {
|
|
4505
4493
|
};
|
4506
4494
|
fetch?: RequestInit | undefined;
|
4507
4495
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
4508
|
-
|
4509
|
-
|
4510
|
-
claimed: string;
|
4511
|
-
pending: string;
|
4512
|
-
recipient: string;
|
4513
|
-
}[];
|
4496
|
+
[x: string]: any;
|
4497
|
+
200: any;
|
4514
4498
|
}>>;
|
4515
4499
|
};
|
4516
4500
|
total: {
|
@@ -5503,13 +5487,13 @@ declare const eden: {
|
|
5503
5487
|
chainId?: number | undefined;
|
5504
5488
|
startTimestamp?: string | undefined;
|
5505
5489
|
endTimestamp?: string | undefined;
|
5506
|
-
campaignStatus?: {} | undefined;
|
5507
5490
|
distributionChainId?: number | undefined;
|
5508
5491
|
campaignId?: string | undefined;
|
5509
5492
|
rewardTokenId?: string | undefined;
|
5510
5493
|
amount?: string | undefined;
|
5511
5494
|
opportunityId?: string | undefined;
|
5512
5495
|
creatorAddress?: string | undefined;
|
5496
|
+
campaignStatus?: {} | undefined;
|
5513
5497
|
rewardToken?: {} | undefined;
|
5514
5498
|
rewardTokenAddress?: string | undefined;
|
5515
5499
|
distributionChain?: {} | undefined;
|
@@ -5657,6 +5641,12 @@ declare const eden: {
|
|
5657
5641
|
delayFormatted: string;
|
5658
5642
|
startTimestamp: bigint;
|
5659
5643
|
endTimestamp: bigint;
|
5644
|
+
computeChainId: number;
|
5645
|
+
distributionChainId: number;
|
5646
|
+
campaignId: string;
|
5647
|
+
Opportunity: {
|
5648
|
+
name: string;
|
5649
|
+
};
|
5660
5650
|
CampaignStatus: {
|
5661
5651
|
error: string;
|
5662
5652
|
details: import("database/api/.generated/runtime/library").JsonValue;
|
@@ -5665,12 +5655,6 @@ declare const eden: {
|
|
5665
5655
|
computedUntil: bigint;
|
5666
5656
|
processingStarted: bigint;
|
5667
5657
|
}[];
|
5668
|
-
Opportunity: {
|
5669
|
-
name: string;
|
5670
|
-
};
|
5671
|
-
computeChainId: number;
|
5672
|
-
distributionChainId: number;
|
5673
|
-
campaignId: string;
|
5674
5658
|
}[];
|
5675
5659
|
}>>;
|
5676
5660
|
};
|
@@ -7102,6 +7086,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7102
7086
|
tags: string[];
|
7103
7087
|
icon: string;
|
7104
7088
|
} | null | undefined;
|
7089
|
+
depositUrl?: string | undefined;
|
7105
7090
|
aprRecord?: {
|
7106
7091
|
timestamp: string | bigint;
|
7107
7092
|
cumulated: number;
|
@@ -7113,7 +7098,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7113
7098
|
aprRecordId: string;
|
7114
7099
|
}[];
|
7115
7100
|
} | undefined;
|
7116
|
-
depositUrl?: string | undefined;
|
7117
7101
|
tvlRecord?: {
|
7118
7102
|
total: number;
|
7119
7103
|
timestamp: string | bigint;
|
@@ -7226,6 +7210,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7226
7210
|
tags: string[];
|
7227
7211
|
icon: string;
|
7228
7212
|
} | null | undefined;
|
7213
|
+
depositUrl?: string | undefined;
|
7229
7214
|
aprRecord?: {
|
7230
7215
|
timestamp: string | bigint;
|
7231
7216
|
cumulated: number;
|
@@ -7237,7 +7222,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7237
7222
|
aprRecordId: string;
|
7238
7223
|
}[];
|
7239
7224
|
} | undefined;
|
7240
|
-
depositUrl?: string | undefined;
|
7241
7225
|
tvlRecord?: {
|
7242
7226
|
total: number;
|
7243
7227
|
timestamp: string | bigint;
|
@@ -7385,6 +7369,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7385
7369
|
tags: string[];
|
7386
7370
|
icon: string;
|
7387
7371
|
} | null | undefined;
|
7372
|
+
depositUrl?: string | undefined;
|
7388
7373
|
aprRecord?: {
|
7389
7374
|
timestamp: string | bigint;
|
7390
7375
|
cumulated: number;
|
@@ -7396,7 +7381,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7396
7381
|
aprRecordId: string;
|
7397
7382
|
}[];
|
7398
7383
|
} | undefined;
|
7399
|
-
depositUrl?: string | undefined;
|
7400
7384
|
tvlRecord?: {
|
7401
7385
|
total: number;
|
7402
7386
|
timestamp: string | bigint;
|
@@ -7877,10 +7861,10 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7877
7861
|
response: {
|
7878
7862
|
200: {
|
7879
7863
|
endTimestamp: bigint;
|
7864
|
+
campaignId: string;
|
7880
7865
|
CampaignStatus: {
|
7881
7866
|
computedUntil: bigint;
|
7882
7867
|
}[];
|
7883
|
-
campaignId: string;
|
7884
7868
|
}[];
|
7885
7869
|
};
|
7886
7870
|
};
|
@@ -8397,12 +8381,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
8397
8381
|
};
|
8398
8382
|
headers: unknown;
|
8399
8383
|
response: {
|
8400
|
-
|
8401
|
-
|
8402
|
-
claimed: string;
|
8403
|
-
pending: string;
|
8404
|
-
recipient: string;
|
8405
|
-
}[];
|
8384
|
+
[x: string]: any;
|
8385
|
+
200: any;
|
8406
8386
|
};
|
8407
8387
|
};
|
8408
8388
|
};
|
@@ -8466,12 +8446,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
8466
8446
|
};
|
8467
8447
|
headers: unknown;
|
8468
8448
|
response: {
|
8469
|
-
|
8470
|
-
|
8471
|
-
claimed: string;
|
8472
|
-
pending: string;
|
8473
|
-
recipient: string;
|
8474
|
-
}[];
|
8449
|
+
[x: string]: any;
|
8450
|
+
200: any;
|
8475
8451
|
};
|
8476
8452
|
};
|
8477
8453
|
};
|
@@ -9788,13 +9764,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
9788
9764
|
chainId?: number | undefined;
|
9789
9765
|
startTimestamp?: string | undefined;
|
9790
9766
|
endTimestamp?: string | undefined;
|
9791
|
-
campaignStatus?: {} | undefined;
|
9792
9767
|
distributionChainId?: number | undefined;
|
9793
9768
|
campaignId?: string | undefined;
|
9794
9769
|
rewardTokenId?: string | undefined;
|
9795
9770
|
amount?: string | undefined;
|
9796
9771
|
opportunityId?: string | undefined;
|
9797
9772
|
creatorAddress?: string | undefined;
|
9773
|
+
campaignStatus?: {} | undefined;
|
9798
9774
|
rewardToken?: {} | undefined;
|
9799
9775
|
rewardTokenAddress?: string | undefined;
|
9800
9776
|
distributionChain?: {} | undefined;
|
@@ -9968,6 +9944,12 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
9968
9944
|
delayFormatted: string;
|
9969
9945
|
startTimestamp: bigint;
|
9970
9946
|
endTimestamp: bigint;
|
9947
|
+
computeChainId: number;
|
9948
|
+
distributionChainId: number;
|
9949
|
+
campaignId: string;
|
9950
|
+
Opportunity: {
|
9951
|
+
name: string;
|
9952
|
+
};
|
9971
9953
|
CampaignStatus: {
|
9972
9954
|
error: string;
|
9973
9955
|
details: import("database/api/.generated/runtime/library").JsonValue;
|
@@ -9976,12 +9958,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
9976
9958
|
computedUntil: bigint;
|
9977
9959
|
processingStarted: bigint;
|
9978
9960
|
}[];
|
9979
|
-
Opportunity: {
|
9980
|
-
name: string;
|
9981
|
-
};
|
9982
|
-
computeChainId: number;
|
9983
|
-
distributionChainId: number;
|
9984
|
-
campaignId: string;
|
9985
9961
|
}[];
|
9986
9962
|
};
|
9987
9963
|
};
|
@@ -11456,6 +11432,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11456
11432
|
tags: string[];
|
11457
11433
|
icon: string;
|
11458
11434
|
} | null | undefined;
|
11435
|
+
depositUrl?: string | undefined;
|
11459
11436
|
aprRecord?: {
|
11460
11437
|
timestamp: string | bigint;
|
11461
11438
|
cumulated: number;
|
@@ -11467,7 +11444,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11467
11444
|
aprRecordId: string;
|
11468
11445
|
}[];
|
11469
11446
|
} | undefined;
|
11470
|
-
depositUrl?: string | undefined;
|
11471
11447
|
tvlRecord?: {
|
11472
11448
|
total: number;
|
11473
11449
|
timestamp: string | bigint;
|
@@ -11559,6 +11535,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11559
11535
|
tags: string[];
|
11560
11536
|
icon: string;
|
11561
11537
|
} | null | undefined;
|
11538
|
+
depositUrl?: string | undefined;
|
11562
11539
|
aprRecord?: {
|
11563
11540
|
timestamp: string | bigint;
|
11564
11541
|
cumulated: number;
|
@@ -11570,7 +11547,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11570
11547
|
aprRecordId: string;
|
11571
11548
|
}[];
|
11572
11549
|
} | undefined;
|
11573
|
-
depositUrl?: string | undefined;
|
11574
11550
|
tvlRecord?: {
|
11575
11551
|
total: number;
|
11576
11552
|
timestamp: string | bigint;
|
@@ -11923,6 +11899,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11923
11899
|
tags: string[];
|
11924
11900
|
icon: string;
|
11925
11901
|
} | null | undefined;
|
11902
|
+
depositUrl?: string | undefined;
|
11926
11903
|
aprRecord?: {
|
11927
11904
|
timestamp: string | bigint;
|
11928
11905
|
cumulated: number;
|
@@ -11934,7 +11911,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11934
11911
|
aprRecordId: string;
|
11935
11912
|
}[];
|
11936
11913
|
} | undefined;
|
11937
|
-
depositUrl?: string | undefined;
|
11938
11914
|
tvlRecord?: {
|
11939
11915
|
total: number;
|
11940
11916
|
timestamp: string | bigint;
|
@@ -12337,10 +12313,10 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12337
12313
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
12338
12314
|
200: {
|
12339
12315
|
endTimestamp: bigint;
|
12316
|
+
campaignId: string;
|
12340
12317
|
CampaignStatus: {
|
12341
12318
|
computedUntil: bigint;
|
12342
12319
|
}[];
|
12343
|
-
campaignId: string;
|
12344
12320
|
}[];
|
12345
12321
|
}>>;
|
12346
12322
|
};
|
@@ -12760,12 +12736,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12760
12736
|
};
|
12761
12737
|
fetch?: RequestInit | undefined;
|
12762
12738
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
12763
|
-
|
12764
|
-
|
12765
|
-
claimed: string;
|
12766
|
-
pending: string;
|
12767
|
-
recipient: string;
|
12768
|
-
}[];
|
12739
|
+
[x: string]: any;
|
12740
|
+
200: any;
|
12769
12741
|
}>>;
|
12770
12742
|
};
|
12771
12743
|
total: {
|
@@ -12811,12 +12783,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12811
12783
|
};
|
12812
12784
|
fetch?: RequestInit | undefined;
|
12813
12785
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
12814
|
-
|
12815
|
-
|
12816
|
-
claimed: string;
|
12817
|
-
pending: string;
|
12818
|
-
recipient: string;
|
12819
|
-
}[];
|
12786
|
+
[x: string]: any;
|
12787
|
+
200: any;
|
12820
12788
|
}>>;
|
12821
12789
|
};
|
12822
12790
|
total: {
|
@@ -13809,13 +13777,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13809
13777
|
chainId?: number | undefined;
|
13810
13778
|
startTimestamp?: string | undefined;
|
13811
13779
|
endTimestamp?: string | undefined;
|
13812
|
-
campaignStatus?: {} | undefined;
|
13813
13780
|
distributionChainId?: number | undefined;
|
13814
13781
|
campaignId?: string | undefined;
|
13815
13782
|
rewardTokenId?: string | undefined;
|
13816
13783
|
amount?: string | undefined;
|
13817
13784
|
opportunityId?: string | undefined;
|
13818
13785
|
creatorAddress?: string | undefined;
|
13786
|
+
campaignStatus?: {} | undefined;
|
13819
13787
|
rewardToken?: {} | undefined;
|
13820
13788
|
rewardTokenAddress?: string | undefined;
|
13821
13789
|
distributionChain?: {} | undefined;
|
@@ -13963,6 +13931,12 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13963
13931
|
delayFormatted: string;
|
13964
13932
|
startTimestamp: bigint;
|
13965
13933
|
endTimestamp: bigint;
|
13934
|
+
computeChainId: number;
|
13935
|
+
distributionChainId: number;
|
13936
|
+
campaignId: string;
|
13937
|
+
Opportunity: {
|
13938
|
+
name: string;
|
13939
|
+
};
|
13966
13940
|
CampaignStatus: {
|
13967
13941
|
error: string;
|
13968
13942
|
details: import("database/api/.generated/runtime/library").JsonValue;
|
@@ -13971,12 +13945,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13971
13945
|
computedUntil: bigint;
|
13972
13946
|
processingStarted: bigint;
|
13973
13947
|
}[];
|
13974
|
-
Opportunity: {
|
13975
|
-
name: string;
|
13976
|
-
};
|
13977
|
-
computeChainId: number;
|
13978
|
-
distributionChainId: number;
|
13979
|
-
campaignId: string;
|
13980
13948
|
}[];
|
13981
13949
|
}>>;
|
13982
13950
|
};
|
@@ -14457,6 +14425,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14457
14425
|
tags: string[];
|
14458
14426
|
icon: string;
|
14459
14427
|
} | null | undefined;
|
14428
|
+
depositUrl?: string | undefined;
|
14460
14429
|
aprRecord?: {
|
14461
14430
|
timestamp: string | bigint;
|
14462
14431
|
cumulated: number;
|
@@ -14468,7 +14437,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14468
14437
|
aprRecordId: string;
|
14469
14438
|
}[];
|
14470
14439
|
} | undefined;
|
14471
|
-
depositUrl?: string | undefined;
|
14472
14440
|
tvlRecord?: {
|
14473
14441
|
total: number;
|
14474
14442
|
timestamp: string | bigint;
|
@@ -14560,6 +14528,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14560
14528
|
tags: string[];
|
14561
14529
|
icon: string;
|
14562
14530
|
} | null | undefined;
|
14531
|
+
depositUrl?: string | undefined;
|
14563
14532
|
aprRecord?: {
|
14564
14533
|
timestamp: string | bigint;
|
14565
14534
|
cumulated: number;
|
@@ -14571,7 +14540,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14571
14540
|
aprRecordId: string;
|
14572
14541
|
}[];
|
14573
14542
|
} | undefined;
|
14574
|
-
depositUrl?: string | undefined;
|
14575
14543
|
tvlRecord?: {
|
14576
14544
|
total: number;
|
14577
14545
|
timestamp: string | bigint;
|
@@ -14924,6 +14892,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14924
14892
|
tags: string[];
|
14925
14893
|
icon: string;
|
14926
14894
|
} | null | undefined;
|
14895
|
+
depositUrl?: string | undefined;
|
14927
14896
|
aprRecord?: {
|
14928
14897
|
timestamp: string | bigint;
|
14929
14898
|
cumulated: number;
|
@@ -14935,7 +14904,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14935
14904
|
aprRecordId: string;
|
14936
14905
|
}[];
|
14937
14906
|
} | undefined;
|
14938
|
-
depositUrl?: string | undefined;
|
14939
14907
|
tvlRecord?: {
|
14940
14908
|
total: number;
|
14941
14909
|
timestamp: string | bigint;
|
@@ -15338,10 +15306,10 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15338
15306
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
15339
15307
|
200: {
|
15340
15308
|
endTimestamp: bigint;
|
15309
|
+
campaignId: string;
|
15341
15310
|
CampaignStatus: {
|
15342
15311
|
computedUntil: bigint;
|
15343
15312
|
}[];
|
15344
|
-
campaignId: string;
|
15345
15313
|
}[];
|
15346
15314
|
}>>;
|
15347
15315
|
};
|
@@ -15761,12 +15729,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15761
15729
|
};
|
15762
15730
|
fetch?: RequestInit | undefined;
|
15763
15731
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
15764
|
-
|
15765
|
-
|
15766
|
-
claimed: string;
|
15767
|
-
pending: string;
|
15768
|
-
recipient: string;
|
15769
|
-
}[];
|
15732
|
+
[x: string]: any;
|
15733
|
+
200: any;
|
15770
15734
|
}>>;
|
15771
15735
|
};
|
15772
15736
|
total: {
|
@@ -15812,12 +15776,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15812
15776
|
};
|
15813
15777
|
fetch?: RequestInit | undefined;
|
15814
15778
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
15815
|
-
|
15816
|
-
|
15817
|
-
claimed: string;
|
15818
|
-
pending: string;
|
15819
|
-
recipient: string;
|
15820
|
-
}[];
|
15779
|
+
[x: string]: any;
|
15780
|
+
200: any;
|
15821
15781
|
}>>;
|
15822
15782
|
};
|
15823
15783
|
total: {
|
@@ -16810,13 +16770,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
16810
16770
|
chainId?: number | undefined;
|
16811
16771
|
startTimestamp?: string | undefined;
|
16812
16772
|
endTimestamp?: string | undefined;
|
16813
|
-
campaignStatus?: {} | undefined;
|
16814
16773
|
distributionChainId?: number | undefined;
|
16815
16774
|
campaignId?: string | undefined;
|
16816
16775
|
rewardTokenId?: string | undefined;
|
16817
16776
|
amount?: string | undefined;
|
16818
16777
|
opportunityId?: string | undefined;
|
16819
16778
|
creatorAddress?: string | undefined;
|
16779
|
+
campaignStatus?: {} | undefined;
|
16820
16780
|
rewardToken?: {} | undefined;
|
16821
16781
|
rewardTokenAddress?: string | undefined;
|
16822
16782
|
distributionChain?: {} | undefined;
|
@@ -16964,6 +16924,12 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
16964
16924
|
delayFormatted: string;
|
16965
16925
|
startTimestamp: bigint;
|
16966
16926
|
endTimestamp: bigint;
|
16927
|
+
computeChainId: number;
|
16928
|
+
distributionChainId: number;
|
16929
|
+
campaignId: string;
|
16930
|
+
Opportunity: {
|
16931
|
+
name: string;
|
16932
|
+
};
|
16967
16933
|
CampaignStatus: {
|
16968
16934
|
error: string;
|
16969
16935
|
details: import("database/api/.generated/runtime/library").JsonValue;
|
@@ -16972,12 +16938,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
16972
16938
|
computedUntil: bigint;
|
16973
16939
|
processingStarted: bigint;
|
16974
16940
|
}[];
|
16975
|
-
Opportunity: {
|
16976
|
-
name: string;
|
16977
|
-
};
|
16978
|
-
computeChainId: number;
|
16979
|
-
distributionChainId: number;
|
16980
|
-
campaignId: string;
|
16981
16941
|
}[];
|
16982
16942
|
}>>;
|
16983
16943
|
};
|