@merkl/api 0.15.49 → 0.16.1
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/backgroundJobs/jobs/campaignsCacheUpdater.d.ts +4 -1
- package/dist/src/backgroundJobs/jobs/campaignsCacheUpdater.js +12 -8
- package/dist/src/constants.d.ts +13 -259
- package/dist/src/eden/index.d.ts +65 -10
- package/dist/src/index.d.ts +13 -2
- package/dist/src/jobs/etl/dynamic-data.d.ts +1 -1
- package/dist/src/jobs/etl/dynamic-data.js +4 -145
- package/dist/src/modules/v4/enso/enso.service.d.ts +5 -1
- package/dist/src/modules/v4/interaction/interaction.controller.d.ts +5 -1
- package/dist/src/modules/v4/protocol/protocol.controller.d.ts +8 -1
- package/dist/src/modules/v4/protocol/protocol.model.d.ts +5 -5
- package/dist/src/modules/v4/protocol/protocol.service.d.ts +2 -2
- package/dist/src/modules/v4/protocol/protocol.service.js +1 -0
- package/dist/src/modules/v4/router.d.ts +13 -2
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Campaign, type CampaignDynamicData } from "@sdk";
|
1
|
+
import { Campaign, type CampaignDynamicData, ChainId } from "@sdk";
|
2
2
|
import { Elysia } from "elysia";
|
3
3
|
export type CampaignsCacheUpdaterReturnType = {
|
4
4
|
[type_mainParameter: string]: {
|
@@ -45,3 +45,6 @@ export declare const campaignsCacheUpdater: Elysia<"", false, {
|
|
45
45
|
resolve: {};
|
46
46
|
schema: {};
|
47
47
|
}>;
|
48
|
+
export declare const campaignCacheUpdate: (rawChainId: string, queryCampaignTypes: number[], highCampaignsChains: ChainId[]) => Promise<{
|
49
|
+
success: boolean;
|
50
|
+
}>;
|
@@ -20,6 +20,15 @@ import { ALL_CAMPAIGNS_FOR_CHAIN_AFTER } from "../../utils/queries/allCampaigns"
|
|
20
20
|
const highCampaignsChains = [ChainId.ARBITRUM, ChainId.POLYGON, ChainId.BLAST, ChainId.BASE];
|
21
21
|
export const campaignsCacheUpdater = new Elysia().get("/v3/update", async ({ query }) => {
|
22
22
|
const rawChainId = query.chainId;
|
23
|
+
const queryCampaignTypes = query?.campaignTypes ? query.campaignTypes : [];
|
24
|
+
return campaignCacheUpdate(rawChainId, queryCampaignTypes, highCampaignsChains);
|
25
|
+
}, {
|
26
|
+
query: t.Object({
|
27
|
+
chainId: t.String(),
|
28
|
+
campaignTypes: t.Optional(t.Array(t.Numeric())),
|
29
|
+
}),
|
30
|
+
});
|
31
|
+
export const campaignCacheUpdate = async (rawChainId, queryCampaignTypes, highCampaignsChains) => {
|
23
32
|
let chainId;
|
24
33
|
if (typeof rawChainId === "string") {
|
25
34
|
chainId = Number.parseInt(rawChainId);
|
@@ -58,8 +67,8 @@ export const campaignsCacheUpdater = new Elysia().get("/v3/update", async ({ que
|
|
58
67
|
log.local(`Data length after filtering: ${staticData.length}`);
|
59
68
|
if (!!staticData) {
|
60
69
|
// Build list of existing campaign types for this chain
|
61
|
-
const campaignTypes = !!
|
62
|
-
?
|
70
|
+
const campaignTypes = !!queryCampaignTypes?.length
|
71
|
+
? queryCampaignTypes
|
63
72
|
: !staticData
|
64
73
|
? []
|
65
74
|
: staticData
|
@@ -160,9 +169,4 @@ export const campaignsCacheUpdater = new Elysia().get("/v3/update", async ({ que
|
|
160
169
|
log.error(`❌ update Campaigns cache failed for ${NETWORK_LABELS[chainId]}`, error);
|
161
170
|
}
|
162
171
|
return { success };
|
163
|
-
}
|
164
|
-
query: t.Object({
|
165
|
-
chainId: t.String(),
|
166
|
-
campaignTypes: t.Optional(t.Array(t.Numeric())),
|
167
|
-
}),
|
168
|
-
});
|
172
|
+
};
|
package/dist/src/constants.d.ts
CHANGED
@@ -31,7 +31,7 @@ export declare const DOPEX_OPTION_MARKET: {
|
|
31
31
|
[market: string]: string;
|
32
32
|
};
|
33
33
|
export declare const constantChain: {
|
34
|
-
[
|
34
|
+
[ChainId.MAINNET]: {
|
35
35
|
apw: string;
|
36
36
|
convexEndpoint: string;
|
37
37
|
crv: string;
|
@@ -55,28 +55,8 @@ export declare const constantChain: {
|
|
55
55
|
usdc: string;
|
56
56
|
weth: string;
|
57
57
|
wstETH: string;
|
58
|
-
|
59
|
-
|
60
|
-
convexProxy?: undefined;
|
61
|
-
crv2Pool?: undefined;
|
62
|
-
jeur?: undefined;
|
63
|
-
ram?: undefined;
|
64
|
-
sliz?: undefined;
|
65
|
-
mai?: undefined;
|
66
|
-
op?: undefined;
|
67
|
-
usdce?: undefined;
|
68
|
-
velo?: undefined;
|
69
|
-
veloV2?: undefined;
|
70
|
-
aero?: undefined;
|
71
|
-
am3CRV?: undefined;
|
72
|
-
amDAI?: undefined;
|
73
|
-
amUSDC?: undefined;
|
74
|
-
amUSDT?: undefined;
|
75
|
-
jrt?: undefined;
|
76
|
-
oretro?: undefined;
|
77
|
-
glcr?: undefined;
|
78
|
-
cake?: undefined;
|
79
|
-
} | {
|
58
|
+
};
|
59
|
+
[ChainId.ARBITRUM]: {
|
80
60
|
arb: string;
|
81
61
|
chr: string;
|
82
62
|
convexProxy: string;
|
@@ -90,38 +70,8 @@ export declare const constantChain: {
|
|
90
70
|
sliz: string;
|
91
71
|
stakeEndpoint: string;
|
92
72
|
usdc: string;
|
93
|
-
|
94
|
-
|
95
|
-
crv3?: undefined;
|
96
|
-
crvANGLESDANGLE?: undefined;
|
97
|
-
crvEURAEUROC?: undefined;
|
98
|
-
crvEURAEURe?: undefined;
|
99
|
-
crvEuropool?: undefined;
|
100
|
-
crvFRAX?: undefined;
|
101
|
-
crvFRAXEURA?: undefined;
|
102
|
-
crvLUSD3CRV?: undefined;
|
103
|
-
dai?: undefined;
|
104
|
-
fxs?: undefined;
|
105
|
-
morpho?: undefined;
|
106
|
-
rKP3R?: undefined;
|
107
|
-
sushi?: undefined;
|
108
|
-
weth?: undefined;
|
109
|
-
wstETH?: undefined;
|
110
|
-
mai?: undefined;
|
111
|
-
op?: undefined;
|
112
|
-
usdce?: undefined;
|
113
|
-
velo?: undefined;
|
114
|
-
veloV2?: undefined;
|
115
|
-
aero?: undefined;
|
116
|
-
am3CRV?: undefined;
|
117
|
-
amDAI?: undefined;
|
118
|
-
amUSDC?: undefined;
|
119
|
-
amUSDT?: undefined;
|
120
|
-
jrt?: undefined;
|
121
|
-
oretro?: undefined;
|
122
|
-
glcr?: undefined;
|
123
|
-
cake?: undefined;
|
124
|
-
} | {
|
73
|
+
};
|
74
|
+
[ChainId.OPTIMISM]: {
|
125
75
|
jeur: string;
|
126
76
|
mai: string;
|
127
77
|
op: string;
|
@@ -129,89 +79,12 @@ export declare const constantChain: {
|
|
129
79
|
usdce: string;
|
130
80
|
velo: string;
|
131
81
|
veloV2: string;
|
132
|
-
|
133
|
-
|
134
|
-
crv?: undefined;
|
135
|
-
crv3?: undefined;
|
136
|
-
crvANGLESDANGLE?: undefined;
|
137
|
-
crvEURAEUROC?: undefined;
|
138
|
-
crvEURAEURe?: undefined;
|
139
|
-
crvEuropool?: undefined;
|
140
|
-
crvFRAX?: undefined;
|
141
|
-
crvFRAXEURA?: undefined;
|
142
|
-
crvLUSD3CRV?: undefined;
|
143
|
-
cvx?: undefined;
|
144
|
-
dai?: undefined;
|
145
|
-
frax?: undefined;
|
146
|
-
fxs?: undefined;
|
147
|
-
morpho?: undefined;
|
148
|
-
rKP3R?: undefined;
|
149
|
-
sdt?: undefined;
|
150
|
-
stakeEndpoint?: undefined;
|
151
|
-
sushi?: undefined;
|
152
|
-
weth?: undefined;
|
153
|
-
wstETH?: undefined;
|
154
|
-
arb?: undefined;
|
155
|
-
chr?: undefined;
|
156
|
-
convexProxy?: undefined;
|
157
|
-
crv2Pool?: undefined;
|
158
|
-
ram?: undefined;
|
159
|
-
sliz?: undefined;
|
160
|
-
aero?: undefined;
|
161
|
-
am3CRV?: undefined;
|
162
|
-
amDAI?: undefined;
|
163
|
-
amUSDC?: undefined;
|
164
|
-
amUSDT?: undefined;
|
165
|
-
jrt?: undefined;
|
166
|
-
oretro?: undefined;
|
167
|
-
glcr?: undefined;
|
168
|
-
cake?: undefined;
|
169
|
-
} | {
|
82
|
+
};
|
83
|
+
[ChainId.BASE]: {
|
170
84
|
aero: string;
|
171
85
|
usdc: string;
|
172
|
-
|
173
|
-
|
174
|
-
crv?: undefined;
|
175
|
-
crv3?: undefined;
|
176
|
-
crvANGLESDANGLE?: undefined;
|
177
|
-
crvEURAEUROC?: undefined;
|
178
|
-
crvEURAEURe?: undefined;
|
179
|
-
crvEuropool?: undefined;
|
180
|
-
crvFRAX?: undefined;
|
181
|
-
crvFRAXEURA?: undefined;
|
182
|
-
crvLUSD3CRV?: undefined;
|
183
|
-
cvx?: undefined;
|
184
|
-
dai?: undefined;
|
185
|
-
frax?: undefined;
|
186
|
-
fxs?: undefined;
|
187
|
-
morpho?: undefined;
|
188
|
-
rKP3R?: undefined;
|
189
|
-
sdt?: undefined;
|
190
|
-
stakeEndpoint?: undefined;
|
191
|
-
sushi?: undefined;
|
192
|
-
weth?: undefined;
|
193
|
-
wstETH?: undefined;
|
194
|
-
arb?: undefined;
|
195
|
-
chr?: undefined;
|
196
|
-
convexProxy?: undefined;
|
197
|
-
crv2Pool?: undefined;
|
198
|
-
jeur?: undefined;
|
199
|
-
ram?: undefined;
|
200
|
-
sliz?: undefined;
|
201
|
-
mai?: undefined;
|
202
|
-
op?: undefined;
|
203
|
-
usdce?: undefined;
|
204
|
-
velo?: undefined;
|
205
|
-
veloV2?: undefined;
|
206
|
-
am3CRV?: undefined;
|
207
|
-
amDAI?: undefined;
|
208
|
-
amUSDC?: undefined;
|
209
|
-
amUSDT?: undefined;
|
210
|
-
jrt?: undefined;
|
211
|
-
oretro?: undefined;
|
212
|
-
glcr?: undefined;
|
213
|
-
cake?: undefined;
|
214
|
-
} | {
|
86
|
+
};
|
87
|
+
[ChainId.POLYGON]: {
|
215
88
|
am3CRV: string;
|
216
89
|
amDAI: string;
|
217
90
|
amUSDC: string;
|
@@ -220,132 +93,13 @@ export declare const constantChain: {
|
|
220
93
|
jrt: string;
|
221
94
|
oretro: string;
|
222
95
|
usdc: string;
|
223
|
-
|
224
|
-
|
225
|
-
crv?: undefined;
|
226
|
-
crv3?: undefined;
|
227
|
-
crvANGLESDANGLE?: undefined;
|
228
|
-
crvEURAEUROC?: undefined;
|
229
|
-
crvEURAEURe?: undefined;
|
230
|
-
crvEuropool?: undefined;
|
231
|
-
crvFRAX?: undefined;
|
232
|
-
crvFRAXEURA?: undefined;
|
233
|
-
crvLUSD3CRV?: undefined;
|
234
|
-
cvx?: undefined;
|
235
|
-
dai?: undefined;
|
236
|
-
frax?: undefined;
|
237
|
-
fxs?: undefined;
|
238
|
-
morpho?: undefined;
|
239
|
-
rKP3R?: undefined;
|
240
|
-
sdt?: undefined;
|
241
|
-
stakeEndpoint?: undefined;
|
242
|
-
sushi?: undefined;
|
243
|
-
weth?: undefined;
|
244
|
-
wstETH?: undefined;
|
245
|
-
arb?: undefined;
|
246
|
-
chr?: undefined;
|
247
|
-
convexProxy?: undefined;
|
248
|
-
crv2Pool?: undefined;
|
249
|
-
ram?: undefined;
|
250
|
-
sliz?: undefined;
|
251
|
-
mai?: undefined;
|
252
|
-
op?: undefined;
|
253
|
-
usdce?: undefined;
|
254
|
-
velo?: undefined;
|
255
|
-
veloV2?: undefined;
|
256
|
-
aero?: undefined;
|
257
|
-
glcr?: undefined;
|
258
|
-
cake?: undefined;
|
259
|
-
} | {
|
96
|
+
};
|
97
|
+
[ChainId.AVALANCHE]: {
|
260
98
|
glcr: string;
|
261
99
|
usdc: string;
|
262
|
-
|
263
|
-
|
264
|
-
crv?: undefined;
|
265
|
-
crv3?: undefined;
|
266
|
-
crvANGLESDANGLE?: undefined;
|
267
|
-
crvEURAEUROC?: undefined;
|
268
|
-
crvEURAEURe?: undefined;
|
269
|
-
crvEuropool?: undefined;
|
270
|
-
crvFRAX?: undefined;
|
271
|
-
crvFRAXEURA?: undefined;
|
272
|
-
crvLUSD3CRV?: undefined;
|
273
|
-
cvx?: undefined;
|
274
|
-
dai?: undefined;
|
275
|
-
frax?: undefined;
|
276
|
-
fxs?: undefined;
|
277
|
-
morpho?: undefined;
|
278
|
-
rKP3R?: undefined;
|
279
|
-
sdt?: undefined;
|
280
|
-
stakeEndpoint?: undefined;
|
281
|
-
sushi?: undefined;
|
282
|
-
weth?: undefined;
|
283
|
-
wstETH?: undefined;
|
284
|
-
arb?: undefined;
|
285
|
-
chr?: undefined;
|
286
|
-
convexProxy?: undefined;
|
287
|
-
crv2Pool?: undefined;
|
288
|
-
jeur?: undefined;
|
289
|
-
ram?: undefined;
|
290
|
-
sliz?: undefined;
|
291
|
-
mai?: undefined;
|
292
|
-
op?: undefined;
|
293
|
-
usdce?: undefined;
|
294
|
-
velo?: undefined;
|
295
|
-
veloV2?: undefined;
|
296
|
-
aero?: undefined;
|
297
|
-
am3CRV?: undefined;
|
298
|
-
amDAI?: undefined;
|
299
|
-
amUSDC?: undefined;
|
300
|
-
amUSDT?: undefined;
|
301
|
-
jrt?: undefined;
|
302
|
-
oretro?: undefined;
|
303
|
-
cake?: undefined;
|
304
|
-
} | {
|
100
|
+
};
|
101
|
+
[ChainId.BSC]: {
|
305
102
|
cake: string;
|
306
|
-
apw?: undefined;
|
307
|
-
convexEndpoint?: undefined;
|
308
|
-
crv?: undefined;
|
309
|
-
crv3?: undefined;
|
310
|
-
crvANGLESDANGLE?: undefined;
|
311
|
-
crvEURAEUROC?: undefined;
|
312
|
-
crvEURAEURe?: undefined;
|
313
|
-
crvEuropool?: undefined;
|
314
|
-
crvFRAX?: undefined;
|
315
|
-
crvFRAXEURA?: undefined;
|
316
|
-
crvLUSD3CRV?: undefined;
|
317
|
-
cvx?: undefined;
|
318
|
-
dai?: undefined;
|
319
|
-
frax?: undefined;
|
320
|
-
fxs?: undefined;
|
321
|
-
morpho?: undefined;
|
322
|
-
rKP3R?: undefined;
|
323
|
-
sdt?: undefined;
|
324
|
-
stakeEndpoint?: undefined;
|
325
|
-
sushi?: undefined;
|
326
|
-
usdc?: undefined;
|
327
|
-
weth?: undefined;
|
328
|
-
wstETH?: undefined;
|
329
|
-
arb?: undefined;
|
330
|
-
chr?: undefined;
|
331
|
-
convexProxy?: undefined;
|
332
|
-
crv2Pool?: undefined;
|
333
|
-
jeur?: undefined;
|
334
|
-
ram?: undefined;
|
335
|
-
sliz?: undefined;
|
336
|
-
mai?: undefined;
|
337
|
-
op?: undefined;
|
338
|
-
usdce?: undefined;
|
339
|
-
velo?: undefined;
|
340
|
-
veloV2?: undefined;
|
341
|
-
aero?: undefined;
|
342
|
-
am3CRV?: undefined;
|
343
|
-
amDAI?: undefined;
|
344
|
-
amUSDC?: undefined;
|
345
|
-
amUSDT?: undefined;
|
346
|
-
jrt?: undefined;
|
347
|
-
oretro?: undefined;
|
348
|
-
glcr?: undefined;
|
349
103
|
};
|
350
104
|
};
|
351
105
|
export declare const MAVERICK_ZKSYNC_BP_LENS_ADDRESS = "0xd32CE31CaC98CAC0631764B8286358c0606D87F9";
|
package/dist/src/eden/index.d.ts
CHANGED
@@ -1108,6 +1108,9 @@ declare const eden: {
|
|
1108
1108
|
id: string;
|
1109
1109
|
tags: string[];
|
1110
1110
|
icon: string;
|
1111
|
+
dailyRewards?: number | undefined;
|
1112
|
+
numberOfLiveCampaigns?: number | undefined;
|
1113
|
+
opportunityLiveTags?: string[] | undefined;
|
1111
1114
|
} | null;
|
1112
1115
|
}>>;
|
1113
1116
|
patch: (body: {
|
@@ -1152,7 +1155,11 @@ declare const eden: {
|
|
1152
1155
|
id: string;
|
1153
1156
|
tags: string[];
|
1154
1157
|
icon: string;
|
1155
|
-
} & {
|
1158
|
+
} & {
|
1159
|
+
dailyRewards?: number | undefined;
|
1160
|
+
numberOfLiveCampaigns?: number | undefined;
|
1161
|
+
opportunityLiveTags?: string[] | undefined;
|
1162
|
+
})[];
|
1156
1163
|
}>>;
|
1157
1164
|
post: (body: {
|
1158
1165
|
name: string;
|
@@ -2337,7 +2344,11 @@ declare const eden: {
|
|
2337
2344
|
id: string;
|
2338
2345
|
tags: string[];
|
2339
2346
|
icon: string;
|
2340
|
-
} & {
|
2347
|
+
} & {
|
2348
|
+
dailyRewards?: number | undefined;
|
2349
|
+
numberOfLiveCampaigns?: number | undefined;
|
2350
|
+
opportunityLiveTags?: string[] | undefined;
|
2351
|
+
})[];
|
2341
2352
|
}>>;
|
2342
2353
|
};
|
2343
2354
|
transaction: {
|
@@ -4208,6 +4219,9 @@ declare const eden: {
|
|
4208
4219
|
id: string;
|
4209
4220
|
tags: string[];
|
4210
4221
|
icon: string;
|
4222
|
+
dailyRewards?: number | undefined;
|
4223
|
+
numberOfLiveCampaigns?: number | undefined;
|
4224
|
+
opportunityLiveTags?: string[] | undefined;
|
4211
4225
|
} | null;
|
4212
4226
|
}>>;
|
4213
4227
|
patch: (body: {
|
@@ -4252,7 +4266,11 @@ declare const eden: {
|
|
4252
4266
|
id: string;
|
4253
4267
|
tags: string[];
|
4254
4268
|
icon: string;
|
4255
|
-
} & {
|
4269
|
+
} & {
|
4270
|
+
dailyRewards?: number | undefined;
|
4271
|
+
numberOfLiveCampaigns?: number | undefined;
|
4272
|
+
opportunityLiveTags?: string[] | undefined;
|
4273
|
+
})[];
|
4256
4274
|
}>>;
|
4257
4275
|
post: (body: {
|
4258
4276
|
name: string;
|
@@ -5437,7 +5455,11 @@ declare const eden: {
|
|
5437
5455
|
id: string;
|
5438
5456
|
tags: string[];
|
5439
5457
|
icon: string;
|
5440
|
-
} & {
|
5458
|
+
} & {
|
5459
|
+
dailyRewards?: number | undefined;
|
5460
|
+
numberOfLiveCampaigns?: number | undefined;
|
5461
|
+
opportunityLiveTags?: string[] | undefined;
|
5462
|
+
})[];
|
5441
5463
|
}>>;
|
5442
5464
|
};
|
5443
5465
|
transaction: {
|
@@ -8188,7 +8210,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
8188
8210
|
id: string;
|
8189
8211
|
tags: string[];
|
8190
8212
|
icon: string;
|
8191
|
-
} & {
|
8213
|
+
} & {
|
8214
|
+
dailyRewards?: number | undefined;
|
8215
|
+
numberOfLiveCampaigns?: number | undefined;
|
8216
|
+
opportunityLiveTags?: string[] | undefined;
|
8217
|
+
})[];
|
8192
8218
|
};
|
8193
8219
|
};
|
8194
8220
|
};
|
@@ -8225,6 +8251,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
8225
8251
|
id: string;
|
8226
8252
|
tags: string[];
|
8227
8253
|
icon: string;
|
8254
|
+
dailyRewards?: number | undefined;
|
8255
|
+
numberOfLiveCampaigns?: number | undefined;
|
8256
|
+
opportunityLiveTags?: string[] | undefined;
|
8228
8257
|
} | null;
|
8229
8258
|
};
|
8230
8259
|
};
|
@@ -9766,7 +9795,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
9766
9795
|
id: string;
|
9767
9796
|
tags: string[];
|
9768
9797
|
icon: string;
|
9769
|
-
} & {
|
9798
|
+
} & {
|
9799
|
+
dailyRewards?: number | undefined;
|
9800
|
+
numberOfLiveCampaigns?: number | undefined;
|
9801
|
+
opportunityLiveTags?: string[] | undefined;
|
9802
|
+
})[];
|
9770
9803
|
};
|
9771
9804
|
};
|
9772
9805
|
};
|
@@ -12759,6 +12792,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12759
12792
|
id: string;
|
12760
12793
|
tags: string[];
|
12761
12794
|
icon: string;
|
12795
|
+
dailyRewards?: number | undefined;
|
12796
|
+
numberOfLiveCampaigns?: number | undefined;
|
12797
|
+
opportunityLiveTags?: string[] | undefined;
|
12762
12798
|
} | null;
|
12763
12799
|
}>>;
|
12764
12800
|
patch: (body: {
|
@@ -12803,7 +12839,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12803
12839
|
id: string;
|
12804
12840
|
tags: string[];
|
12805
12841
|
icon: string;
|
12806
|
-
} & {
|
12842
|
+
} & {
|
12843
|
+
dailyRewards?: number | undefined;
|
12844
|
+
numberOfLiveCampaigns?: number | undefined;
|
12845
|
+
opportunityLiveTags?: string[] | undefined;
|
12846
|
+
})[];
|
12807
12847
|
}>>;
|
12808
12848
|
post: (body: {
|
12809
12849
|
name: string;
|
@@ -13988,7 +14028,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13988
14028
|
id: string;
|
13989
14029
|
tags: string[];
|
13990
14030
|
icon: string;
|
13991
|
-
} & {
|
14031
|
+
} & {
|
14032
|
+
dailyRewards?: number | undefined;
|
14033
|
+
numberOfLiveCampaigns?: number | undefined;
|
14034
|
+
opportunityLiveTags?: string[] | undefined;
|
14035
|
+
})[];
|
13992
14036
|
}>>;
|
13993
14037
|
};
|
13994
14038
|
transaction: {
|
@@ -15859,6 +15903,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15859
15903
|
id: string;
|
15860
15904
|
tags: string[];
|
15861
15905
|
icon: string;
|
15906
|
+
dailyRewards?: number | undefined;
|
15907
|
+
numberOfLiveCampaigns?: number | undefined;
|
15908
|
+
opportunityLiveTags?: string[] | undefined;
|
15862
15909
|
} | null;
|
15863
15910
|
}>>;
|
15864
15911
|
patch: (body: {
|
@@ -15903,7 +15950,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15903
15950
|
id: string;
|
15904
15951
|
tags: string[];
|
15905
15952
|
icon: string;
|
15906
|
-
} & {
|
15953
|
+
} & {
|
15954
|
+
dailyRewards?: number | undefined;
|
15955
|
+
numberOfLiveCampaigns?: number | undefined;
|
15956
|
+
opportunityLiveTags?: string[] | undefined;
|
15957
|
+
})[];
|
15907
15958
|
}>>;
|
15908
15959
|
post: (body: {
|
15909
15960
|
name: string;
|
@@ -17088,7 +17139,11 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
17088
17139
|
id: string;
|
17089
17140
|
tags: string[];
|
17090
17141
|
icon: string;
|
17091
|
-
} & {
|
17142
|
+
} & {
|
17143
|
+
dailyRewards?: number | undefined;
|
17144
|
+
numberOfLiveCampaigns?: number | undefined;
|
17145
|
+
opportunityLiveTags?: string[] | undefined;
|
17146
|
+
})[];
|
17092
17147
|
}>>;
|
17093
17148
|
};
|
17094
17149
|
transaction: {
|
package/dist/src/index.d.ts
CHANGED
@@ -1290,7 +1290,11 @@ declare const app: Elysia<"", false, {
|
|
1290
1290
|
id: string;
|
1291
1291
|
tags: string[];
|
1292
1292
|
icon: string;
|
1293
|
-
} & {
|
1293
|
+
} & {
|
1294
|
+
dailyRewards?: number | undefined;
|
1295
|
+
numberOfLiveCampaigns?: number | undefined;
|
1296
|
+
opportunityLiveTags?: string[] | undefined;
|
1297
|
+
})[];
|
1294
1298
|
};
|
1295
1299
|
};
|
1296
1300
|
};
|
@@ -1327,6 +1331,9 @@ declare const app: Elysia<"", false, {
|
|
1327
1331
|
id: string;
|
1328
1332
|
tags: string[];
|
1329
1333
|
icon: string;
|
1334
|
+
dailyRewards?: number | undefined;
|
1335
|
+
numberOfLiveCampaigns?: number | undefined;
|
1336
|
+
opportunityLiveTags?: string[] | undefined;
|
1330
1337
|
} | null;
|
1331
1338
|
};
|
1332
1339
|
};
|
@@ -2868,7 +2875,11 @@ declare const app: Elysia<"", false, {
|
|
2868
2875
|
id: string;
|
2869
2876
|
tags: string[];
|
2870
2877
|
icon: string;
|
2871
|
-
} & {
|
2878
|
+
} & {
|
2879
|
+
dailyRewards?: number | undefined;
|
2880
|
+
numberOfLiveCampaigns?: number | undefined;
|
2881
|
+
opportunityLiveTags?: string[] | undefined;
|
2882
|
+
})[];
|
2872
2883
|
};
|
2873
2884
|
};
|
2874
2885
|
};
|