@merkl/api 1.4.84 → 1.4.85
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 +306 -88
- package/dist/src/index.d.ts +317 -88
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +124 -2
- package/dist/src/modules/v4/campaign/campaign.formatter.d.ts +8 -3
- package/dist/src/modules/v4/campaign/campaign.formatter.js.map +1 -1
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +7 -0
- package/dist/src/modules/v4/campaign/campaign.model.js.map +1 -1
- package/dist/src/modules/v4/campaign/campaign.repository.js.map +1 -1
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +259 -9
- package/dist/src/modules/v4/campaign/campaign.service.js.map +1 -1
- package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +62 -1
- package/dist/src/modules/v4/creator/creator.controller.d.ts +131 -85
- package/dist/src/modules/v4/creator/creator.controller.js.map +1 -1
- package/dist/src/modules/v4/creator/creator.model.d.ts +205 -0
- package/dist/src/modules/v4/creator/creator.model.js.map +1 -1
- package/dist/src/modules/v4/creator/creator.service.d.ts +3 -123
- package/dist/src/modules/v4/creator/creator.service.js.map +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.formatter.d.ts +62 -1
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +140 -3
- package/dist/src/modules/v4/opportunity/opportunity.service.js.map +1 -1
- package/dist/src/modules/v4/router.d.ts +317 -88
- package/package.json +1 -1
@@ -44,7 +44,68 @@ export declare const CampaignTestController: Elysia<"/campaigns", {
|
|
44
44
|
authorization: string;
|
45
45
|
};
|
46
46
|
response: {
|
47
|
-
200: Omit<import("./campaign.model").CampaignWithParams
|
47
|
+
200: Omit<import("./campaign.model").CampaignWithParams<import("@package/resources/enums").CampaignType>, "manualOverrides"> & {
|
48
|
+
Opportunity: {
|
49
|
+
chainId: number;
|
50
|
+
type: string;
|
51
|
+
identifier: string;
|
52
|
+
name: string;
|
53
|
+
description: string;
|
54
|
+
howToSteps: string[];
|
55
|
+
status: import("@package/databases").Status;
|
56
|
+
action: import("@package/databases").OpportunityAction;
|
57
|
+
tvl: number;
|
58
|
+
apr: number;
|
59
|
+
maxApr: number | null;
|
60
|
+
dailyRewards: number;
|
61
|
+
tags: string[];
|
62
|
+
liveCampaigns: number;
|
63
|
+
tokens: ({
|
64
|
+
address: string;
|
65
|
+
chainId: number;
|
66
|
+
decimals: number;
|
67
|
+
icon: string;
|
68
|
+
id: string;
|
69
|
+
isNative: boolean;
|
70
|
+
isTest: boolean;
|
71
|
+
name: string | null;
|
72
|
+
symbol: string;
|
73
|
+
type: import("@package/databases").TokenType;
|
74
|
+
verified: boolean;
|
75
|
+
} & {
|
76
|
+
price?: number | null | undefined;
|
77
|
+
updatedAt?: number | null | undefined;
|
78
|
+
priceSource?: string | null | undefined;
|
79
|
+
isTokenWrapper?: boolean | undefined;
|
80
|
+
tokenWrapperAddress?: string | undefined;
|
81
|
+
})[];
|
82
|
+
chain: {
|
83
|
+
id: number;
|
84
|
+
name: string;
|
85
|
+
icon: string;
|
86
|
+
liveCampaigns: number;
|
87
|
+
endOfDisputePeriod: number;
|
88
|
+
};
|
89
|
+
protocol: {
|
90
|
+
id: string;
|
91
|
+
tags: string[];
|
92
|
+
name: string;
|
93
|
+
description: string;
|
94
|
+
url: string;
|
95
|
+
icon: string;
|
96
|
+
} | undefined;
|
97
|
+
activePrograms: {
|
98
|
+
icon: string;
|
99
|
+
id: string;
|
100
|
+
name: string;
|
101
|
+
slug: string | null;
|
102
|
+
}[];
|
103
|
+
id: string;
|
104
|
+
depositUrl: string | undefined;
|
105
|
+
explorerAddress: string | undefined;
|
106
|
+
lastCampaignCreatedAt: number;
|
107
|
+
};
|
108
|
+
};
|
48
109
|
422: {
|
49
110
|
type: "validation";
|
50
111
|
on: string;
|
@@ -223,6 +223,59 @@ export declare const CreatorController: Elysia<"/creators", {
|
|
223
223
|
};
|
224
224
|
};
|
225
225
|
};
|
226
|
+
} & {
|
227
|
+
creators: {
|
228
|
+
":creator": {
|
229
|
+
opportunities: {
|
230
|
+
count: {
|
231
|
+
get: {
|
232
|
+
body: unknown;
|
233
|
+
params: {
|
234
|
+
creator: string;
|
235
|
+
};
|
236
|
+
query: {
|
237
|
+
name?: string | undefined;
|
238
|
+
search?: string | undefined;
|
239
|
+
chainId?: string | undefined;
|
240
|
+
action?: string | undefined;
|
241
|
+
tokenTypes?: ("POINT" | "PRETGE" | "TOKEN")[] | undefined;
|
242
|
+
type?: string | undefined;
|
243
|
+
tags?: string | undefined;
|
244
|
+
test?: boolean | undefined;
|
245
|
+
minimumTvl?: number | undefined;
|
246
|
+
maximumTvl?: number | undefined;
|
247
|
+
minimumApr?: number | undefined;
|
248
|
+
maximumApr?: number | undefined;
|
249
|
+
status?: string | undefined;
|
250
|
+
identifier?: string | undefined;
|
251
|
+
tokens?: string | undefined;
|
252
|
+
rewardTokenSymbol?: string | undefined;
|
253
|
+
sort?: string | undefined;
|
254
|
+
order?: string | undefined;
|
255
|
+
distributionTypes?: ("DUTCH_AUCTION" | "FIX_REWARD" | "MAX_REWARD")[] | undefined;
|
256
|
+
mainProtocolId?: string | undefined;
|
257
|
+
programSlugs?: string | undefined;
|
258
|
+
chainName?: string | undefined;
|
259
|
+
explorerAddress?: string | undefined;
|
260
|
+
};
|
261
|
+
headers: unknown;
|
262
|
+
response: {
|
263
|
+
200: number;
|
264
|
+
422: {
|
265
|
+
type: "validation";
|
266
|
+
on: string;
|
267
|
+
summary?: string | undefined;
|
268
|
+
message?: string | undefined;
|
269
|
+
found?: unknown;
|
270
|
+
property?: string | undefined;
|
271
|
+
expected?: string | undefined;
|
272
|
+
};
|
273
|
+
};
|
274
|
+
};
|
275
|
+
};
|
276
|
+
};
|
277
|
+
};
|
278
|
+
};
|
226
279
|
} & {
|
227
280
|
creators: {
|
228
281
|
":creator": {
|
@@ -237,14 +290,10 @@ export declare const CreatorController: Elysia<"/creators", {
|
|
237
290
|
items?: number | undefined;
|
238
291
|
name?: string | undefined;
|
239
292
|
search?: string | undefined;
|
240
|
-
campaignId?: string | undefined;
|
241
|
-
creatorSlug?: string | undefined;
|
242
293
|
chainId?: string | undefined;
|
243
294
|
action?: string | undefined;
|
244
295
|
tokenTypes?: ("POINT" | "PRETGE" | "TOKEN")[] | undefined;
|
245
|
-
point?: boolean | undefined;
|
246
296
|
type?: string | undefined;
|
247
|
-
creatorAddress?: string | undefined;
|
248
297
|
tags?: string | undefined;
|
249
298
|
test?: boolean | undefined;
|
250
299
|
minimumTvl?: number | undefined;
|
@@ -253,7 +302,6 @@ export declare const CreatorController: Elysia<"/creators", {
|
|
253
302
|
maximumApr?: number | undefined;
|
254
303
|
status?: string | undefined;
|
255
304
|
identifier?: string | undefined;
|
256
|
-
campaigns?: boolean | undefined;
|
257
305
|
tokens?: string | undefined;
|
258
306
|
rewardTokenSymbol?: string | undefined;
|
259
307
|
sort?: string | undefined;
|
@@ -262,132 +310,130 @@ export declare const CreatorController: Elysia<"/creators", {
|
|
262
310
|
mainProtocolId?: string | undefined;
|
263
311
|
programSlugs?: string | undefined;
|
264
312
|
chainName?: string | undefined;
|
265
|
-
excludeSubCampaigns?: boolean | undefined;
|
266
313
|
explorerAddress?: string | undefined;
|
267
|
-
withInvalids?: boolean | undefined;
|
268
314
|
};
|
269
315
|
headers: unknown;
|
270
316
|
response: {
|
271
|
-
200: {
|
317
|
+
200: ({
|
272
318
|
chainId: number;
|
273
319
|
type: string;
|
274
320
|
identifier: string;
|
275
321
|
name: string;
|
276
322
|
description: string;
|
277
323
|
howToSteps: string[];
|
278
|
-
status:
|
279
|
-
action:
|
324
|
+
status: string;
|
325
|
+
action: string;
|
280
326
|
tvl: number;
|
327
|
+
apr: number;
|
281
328
|
maxApr: number | null;
|
329
|
+
dailyRewards: number;
|
330
|
+
depositUrl?: string | undefined;
|
331
|
+
explorerAddress?: string | undefined;
|
332
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
282
333
|
tags: string[];
|
283
|
-
|
284
|
-
|
334
|
+
id: string;
|
335
|
+
tokens: {
|
336
|
+
id: string;
|
337
|
+
name: string | null;
|
338
|
+
chainId: number;
|
339
|
+
address: string;
|
340
|
+
decimals: number;
|
341
|
+
icon: string;
|
342
|
+
verified: boolean;
|
343
|
+
isNative: boolean;
|
344
|
+
isTest: boolean;
|
345
|
+
price?: number | null | undefined;
|
346
|
+
updatedAt?: number | null | undefined;
|
347
|
+
priceSource?: string | null | undefined;
|
348
|
+
symbol: string;
|
349
|
+
type: "POINT" | "PRETGE" | "TOKEN";
|
350
|
+
displaySymbol?: string | undefined;
|
351
|
+
}[];
|
352
|
+
chain: {
|
353
|
+
id: number;
|
354
|
+
name: string;
|
355
|
+
icon: string;
|
356
|
+
liveCampaigns: number;
|
357
|
+
endOfDisputePeriod: number;
|
358
|
+
explorers?: {
|
359
|
+
type: "BLOCKSCOUT" | "ETHERSCAN";
|
360
|
+
url: string;
|
361
|
+
chainId: number;
|
362
|
+
}[] | undefined;
|
363
|
+
};
|
364
|
+
aprRecord?: {
|
285
365
|
cumulated: number;
|
286
|
-
timestamp: bigint;
|
287
|
-
breakdowns:
|
288
|
-
distributionType: import("@package/databases").DistributionType;
|
289
|
-
identifier: string;
|
290
|
-
type: "CAMPAIGN";
|
291
|
-
timestamp: bigint;
|
292
|
-
value: number;
|
293
|
-
} | {
|
366
|
+
timestamp: string | bigint;
|
367
|
+
breakdowns: {
|
294
368
|
identifier: string;
|
295
|
-
type:
|
296
|
-
timestamp: bigint;
|
369
|
+
type: "CAMPAIGN" | "PROTOCOL" | "TOKEN";
|
297
370
|
value: number;
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
371
|
+
timestamp: string | bigint;
|
372
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
373
|
+
}[];
|
374
|
+
} | undefined;
|
375
|
+
tvlRecord?: {
|
302
376
|
total: number;
|
303
|
-
timestamp: bigint;
|
377
|
+
timestamp: string | bigint;
|
304
378
|
breakdowns: {
|
305
379
|
identifier: string;
|
306
|
-
type:
|
380
|
+
type: "PROTOCOL" | "TOKEN";
|
307
381
|
value: number;
|
308
382
|
}[];
|
309
|
-
};
|
310
|
-
rewardsRecord
|
311
|
-
id: string;
|
383
|
+
} | undefined;
|
384
|
+
rewardsRecord?: {
|
312
385
|
total: number;
|
313
|
-
timestamp: bigint;
|
386
|
+
timestamp: string | bigint;
|
314
387
|
breakdowns: {
|
315
|
-
id: string;
|
316
|
-
timestamp: bigint;
|
317
388
|
campaignId: string;
|
318
|
-
|
389
|
+
value: number;
|
390
|
+
timestamp: string | bigint;
|
319
391
|
token: {
|
320
392
|
id: string;
|
321
393
|
name: string | null;
|
322
394
|
chainId: number;
|
323
395
|
address: string;
|
324
396
|
decimals: number;
|
325
|
-
symbol: string;
|
326
|
-
displaySymbol: string;
|
327
397
|
icon: string;
|
328
398
|
verified: boolean;
|
329
|
-
isTest: boolean;
|
330
|
-
type: import("@package/databases").TokenType;
|
331
399
|
isNative: boolean;
|
332
|
-
|
333
|
-
|
334
|
-
|
400
|
+
isTest: boolean;
|
401
|
+
price?: number | null | undefined;
|
402
|
+
updatedAt?: number | null | undefined;
|
403
|
+
priceSource?: string | null | undefined;
|
404
|
+
symbol: string;
|
405
|
+
type: "POINT" | "PRETGE" | "TOKEN";
|
406
|
+
displaySymbol?: string | undefined;
|
335
407
|
};
|
336
|
-
amount: bigint;
|
337
|
-
|
338
|
-
distributionType: import("@package/databases").DistributionType;
|
408
|
+
amount: string | bigint;
|
409
|
+
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
339
410
|
}[];
|
340
|
-
};
|
341
|
-
|
342
|
-
|
343
|
-
chainId: number;
|
344
|
-
decimals: number;
|
345
|
-
icon: string;
|
411
|
+
} | undefined;
|
412
|
+
lastCampaignCreatedAt: number;
|
413
|
+
protocol?: {
|
346
414
|
id: string;
|
347
|
-
isNative: boolean;
|
348
|
-
isTest: boolean;
|
349
|
-
name: string | null;
|
350
|
-
symbol: string;
|
351
|
-
type: import("@package/databases").TokenType;
|
352
|
-
verified: boolean;
|
353
|
-
} & {
|
354
|
-
price?: number | null | undefined;
|
355
|
-
updatedAt?: number | null | undefined;
|
356
|
-
priceSource?: string | null | undefined;
|
357
|
-
isTokenWrapper?: boolean | undefined;
|
358
|
-
tokenWrapperAddress?: string | undefined;
|
359
|
-
})[];
|
360
|
-
chain: {
|
361
|
-
id: number;
|
362
415
|
name: string;
|
363
416
|
icon: string;
|
364
|
-
liveCampaigns: number;
|
365
|
-
endOfDisputePeriod: number;
|
366
|
-
};
|
367
|
-
protocol: {
|
368
|
-
id: string;
|
369
417
|
tags: string[];
|
370
|
-
name: string;
|
371
418
|
description: string;
|
372
419
|
url: string;
|
373
|
-
|
374
|
-
|
420
|
+
dailyRewards?: number | undefined;
|
421
|
+
numberOfLiveCampaigns?: number | undefined;
|
422
|
+
opportunityLiveTags?: string[] | undefined;
|
423
|
+
} | null | undefined;
|
424
|
+
liveCampaigns: number;
|
425
|
+
liveCampaignsForCreator?: number | undefined;
|
375
426
|
activePrograms: {
|
376
|
-
icon: string;
|
377
427
|
id: string;
|
378
|
-
name: string;
|
379
428
|
slug: string | null;
|
429
|
+
name: string;
|
430
|
+
description?: string | undefined;
|
431
|
+
icon?: string | undefined;
|
380
432
|
}[];
|
381
|
-
|
382
|
-
depositUrl: string | undefined;
|
383
|
-
explorerAddress: string | undefined;
|
384
|
-
lastCampaignCreatedAt: number;
|
385
|
-
campaigns: Omit<import("../campaign/campaign.model").CampaignWithParams, "manualOverrides">[];
|
386
|
-
dailyRewards: number;
|
387
|
-
apr: number;
|
433
|
+
} & {
|
388
434
|
liveCampaignsForCreator: number;
|
389
435
|
distributedBycreator: number;
|
390
|
-
}[];
|
436
|
+
})[];
|
391
437
|
422: {
|
392
438
|
type: "validation";
|
393
439
|
on: string;
|
@@ -416,7 +462,7 @@ export declare const CreatorController: Elysia<"/creators", {
|
|
416
462
|
};
|
417
463
|
headers: unknown;
|
418
464
|
response: {
|
419
|
-
200: Omit<import("../campaign/campaign.model").CampaignWithParams
|
465
|
+
200: Omit<import("../campaign/campaign.model").CampaignWithParams<import("@package/resources/enums").CampaignType>, "manualOverrides">[] | ({
|
420
466
|
Opportunity: {
|
421
467
|
id: string;
|
422
468
|
chainId: number;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"creator.controller.js","sourceRoot":"","sources":["../../../../../../../apps/api/src/modules/v4/creator/creator.controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;
|
1
|
+
{"version":3,"file":"creator.controller.js","sourceRoot":"","sources":["../../../../../../../apps/api/src/modules/v4/creator/creator.controller.ts"],"names":[],"mappings":"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"}
|
@@ -70,9 +70,214 @@ export declare const GetOpportunityMetricsForCreatorDto: import("@sinclair/typeb
|
|
70
70
|
creator: import("@sinclair/typebox").TString;
|
71
71
|
opportunityId: import("@sinclair/typebox").TString;
|
72
72
|
}>;
|
73
|
+
export declare const FindCreatorsOpportunitiesDto: import("@sinclair/typebox").TObject<{
|
74
|
+
page: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
75
|
+
items: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
76
|
+
name: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
77
|
+
search: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
78
|
+
chainId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TRegExp>;
|
79
|
+
action: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
80
|
+
tokenTypes: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TEnum<{
|
81
|
+
readonly TOKEN: "TOKEN";
|
82
|
+
readonly PRETGE: "PRETGE";
|
83
|
+
readonly POINT: "POINT";
|
84
|
+
}>>>;
|
85
|
+
type: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
86
|
+
tags: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
87
|
+
test: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
88
|
+
minimumTvl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
89
|
+
maximumTvl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
90
|
+
minimumApr: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
91
|
+
maximumApr: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
92
|
+
status: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TRegExp>;
|
93
|
+
identifier: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
94
|
+
tokens: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
95
|
+
rewardTokenSymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
96
|
+
sort: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TRegExp>;
|
97
|
+
order: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TRegExp>;
|
98
|
+
distributionTypes: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TEnum<{
|
99
|
+
FIX_REWARD: "FIX_REWARD";
|
100
|
+
MAX_REWARD: "MAX_REWARD";
|
101
|
+
DUTCH_AUCTION: "DUTCH_AUCTION";
|
102
|
+
}>>>;
|
103
|
+
mainProtocolId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
104
|
+
programSlugs: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
105
|
+
chainName: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TRegExp>;
|
106
|
+
explorerAddress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
107
|
+
}>;
|
108
|
+
export declare const CreatorsOpportunitiesDto: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TIntersect<[import("@sinclair/typebox").TObject<{
|
109
|
+
chainId: import("@sinclair/typebox").TNumber;
|
110
|
+
type: import("@sinclair/typebox").TString;
|
111
|
+
identifier: import("@sinclair/typebox").TString;
|
112
|
+
name: import("@sinclair/typebox").TString;
|
113
|
+
description: import("@sinclair/typebox").TString;
|
114
|
+
howToSteps: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>;
|
115
|
+
status: import("@sinclair/typebox").TString;
|
116
|
+
action: import("@sinclair/typebox").TString;
|
117
|
+
tvl: import("@sinclair/typebox").TNumber;
|
118
|
+
apr: import("@sinclair/typebox").TNumber;
|
119
|
+
maxApr: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>;
|
120
|
+
dailyRewards: import("@sinclair/typebox").TNumber;
|
121
|
+
depositUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
122
|
+
explorerAddress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
123
|
+
distributionType: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TEnum<{
|
124
|
+
readonly DUTCH_AUCTION: "DUTCH_AUCTION";
|
125
|
+
readonly FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE: "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE";
|
126
|
+
readonly FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE: "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE";
|
127
|
+
readonly FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT: "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT";
|
128
|
+
readonly FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT: "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT";
|
129
|
+
readonly MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE: "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE";
|
130
|
+
readonly MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE: "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE";
|
131
|
+
readonly MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT: "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT";
|
132
|
+
readonly MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT: "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT";
|
133
|
+
}>>;
|
134
|
+
tags: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>;
|
135
|
+
id: import("@sinclair/typebox").TString;
|
136
|
+
tokens: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
137
|
+
id: import("@sinclair/typebox").TString;
|
138
|
+
name: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
139
|
+
chainId: import("@sinclair/typebox").TNumber;
|
140
|
+
address: import("@sinclair/typebox").TString;
|
141
|
+
decimals: import("@sinclair/typebox").TNumber;
|
142
|
+
icon: import("@sinclair/typebox").TString;
|
143
|
+
verified: import("@sinclair/typebox").TBoolean;
|
144
|
+
isNative: import("@sinclair/typebox").TBoolean;
|
145
|
+
isTest: import("@sinclair/typebox").TBoolean;
|
146
|
+
price: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
147
|
+
updatedAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
148
|
+
priceSource: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
149
|
+
symbol: import("@sinclair/typebox").TString;
|
150
|
+
type: import("@sinclair/typebox").TEnum<{
|
151
|
+
readonly TOKEN: "TOKEN";
|
152
|
+
readonly PRETGE: "PRETGE";
|
153
|
+
readonly POINT: "POINT";
|
154
|
+
}>;
|
155
|
+
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
156
|
+
}>>;
|
157
|
+
chain: import("@sinclair/typebox").TObject<{
|
158
|
+
id: import("@sinclair/typebox").TNumber;
|
159
|
+
name: import("@sinclair/typebox").TString;
|
160
|
+
icon: import("@sinclair/typebox").TString;
|
161
|
+
liveCampaigns: import("@sinclair/typebox").TNumber;
|
162
|
+
endOfDisputePeriod: import("@sinclair/typebox").TNumber;
|
163
|
+
explorers: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
164
|
+
type: import("@sinclair/typebox").TEnum<{
|
165
|
+
readonly ETHERSCAN: "ETHERSCAN";
|
166
|
+
readonly BLOCKSCOUT: "BLOCKSCOUT";
|
167
|
+
}>;
|
168
|
+
url: import("@sinclair/typebox").TString;
|
169
|
+
chainId: import("@sinclair/typebox").TNumber;
|
170
|
+
}>>>;
|
171
|
+
}>;
|
172
|
+
aprRecord: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
173
|
+
cumulated: import("@sinclair/typebox").TNumber;
|
174
|
+
timestamp: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TBigInt, import("@sinclair/typebox").TString]>;
|
175
|
+
breakdowns: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
176
|
+
identifier: import("@sinclair/typebox").TString;
|
177
|
+
type: import("@sinclair/typebox").TEnum<{
|
178
|
+
readonly CAMPAIGN: "CAMPAIGN";
|
179
|
+
readonly TOKEN: "TOKEN";
|
180
|
+
readonly PROTOCOL: "PROTOCOL";
|
181
|
+
}>;
|
182
|
+
value: import("@sinclair/typebox").TNumber;
|
183
|
+
timestamp: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TBigInt, import("@sinclair/typebox").TString]>;
|
184
|
+
distributionType: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TEnum<{
|
185
|
+
readonly DUTCH_AUCTION: "DUTCH_AUCTION";
|
186
|
+
readonly FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE: "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE";
|
187
|
+
readonly FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE: "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE";
|
188
|
+
readonly FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT: "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT";
|
189
|
+
readonly FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT: "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT";
|
190
|
+
readonly MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE: "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE";
|
191
|
+
readonly MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE: "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE";
|
192
|
+
readonly MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT: "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT";
|
193
|
+
readonly MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT: "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT";
|
194
|
+
}>>;
|
195
|
+
}>>;
|
196
|
+
}>>;
|
197
|
+
tvlRecord: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
198
|
+
total: import("@sinclair/typebox").TNumber;
|
199
|
+
timestamp: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TBigInt, import("@sinclair/typebox").TString]>;
|
200
|
+
breakdowns: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
201
|
+
identifier: import("@sinclair/typebox").TString;
|
202
|
+
type: import("@sinclair/typebox").TEnum<{
|
203
|
+
readonly TOKEN: "TOKEN";
|
204
|
+
readonly PROTOCOL: "PROTOCOL";
|
205
|
+
}>;
|
206
|
+
value: import("@sinclair/typebox").TNumber;
|
207
|
+
}>>;
|
208
|
+
}>>;
|
209
|
+
rewardsRecord: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
210
|
+
total: import("@sinclair/typebox").TNumber;
|
211
|
+
timestamp: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TBigInt, import("@sinclair/typebox").TString]>;
|
212
|
+
breakdowns: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
213
|
+
campaignId: import("@sinclair/typebox").TString;
|
214
|
+
value: import("@sinclair/typebox").TNumber;
|
215
|
+
timestamp: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TBigInt, import("@sinclair/typebox").TString]>;
|
216
|
+
token: import("@sinclair/typebox").TObject<{
|
217
|
+
id: import("@sinclair/typebox").TString;
|
218
|
+
name: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
219
|
+
chainId: import("@sinclair/typebox").TNumber;
|
220
|
+
address: import("@sinclair/typebox").TString;
|
221
|
+
decimals: import("@sinclair/typebox").TNumber;
|
222
|
+
icon: import("@sinclair/typebox").TString;
|
223
|
+
verified: import("@sinclair/typebox").TBoolean;
|
224
|
+
isNative: import("@sinclair/typebox").TBoolean;
|
225
|
+
isTest: import("@sinclair/typebox").TBoolean;
|
226
|
+
price: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
227
|
+
updatedAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
228
|
+
priceSource: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
229
|
+
symbol: import("@sinclair/typebox").TString;
|
230
|
+
type: import("@sinclair/typebox").TEnum<{
|
231
|
+
readonly TOKEN: "TOKEN";
|
232
|
+
readonly PRETGE: "PRETGE";
|
233
|
+
readonly POINT: "POINT";
|
234
|
+
}>;
|
235
|
+
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
236
|
+
}>;
|
237
|
+
amount: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TBigInt, import("@sinclair/typebox").TString]>;
|
238
|
+
distributionType: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TEnum<{
|
239
|
+
readonly DUTCH_AUCTION: "DUTCH_AUCTION";
|
240
|
+
readonly FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE: "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE";
|
241
|
+
readonly FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE: "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE";
|
242
|
+
readonly FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT: "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT";
|
243
|
+
readonly FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT: "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT";
|
244
|
+
readonly MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE: "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE";
|
245
|
+
readonly MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE: "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE";
|
246
|
+
readonly MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT: "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT";
|
247
|
+
readonly MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT: "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT";
|
248
|
+
}>>;
|
249
|
+
}>>;
|
250
|
+
}>>;
|
251
|
+
lastCampaignCreatedAt: import("@sinclair/typebox").TNumber;
|
252
|
+
protocol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
253
|
+
id: import("@sinclair/typebox").TString;
|
254
|
+
name: import("@sinclair/typebox").TString;
|
255
|
+
icon: import("@sinclair/typebox").TString;
|
256
|
+
tags: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>;
|
257
|
+
description: import("@sinclair/typebox").TString;
|
258
|
+
url: import("@sinclair/typebox").TString;
|
259
|
+
dailyRewards: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
260
|
+
numberOfLiveCampaigns: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
261
|
+
opportunityLiveTags: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>>;
|
262
|
+
}>, import("@sinclair/typebox").TNull]>>;
|
263
|
+
liveCampaigns: import("@sinclair/typebox").TNumber;
|
264
|
+
liveCampaignsForCreator: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
265
|
+
activePrograms: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
266
|
+
id: import("@sinclair/typebox").TString;
|
267
|
+
slug: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
268
|
+
name: import("@sinclair/typebox").TString;
|
269
|
+
description: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
270
|
+
icon: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
271
|
+
}>>;
|
272
|
+
}>, import("@sinclair/typebox").TObject<{
|
273
|
+
liveCampaignsForCreator: import("@sinclair/typebox").TNumber;
|
274
|
+
distributedBycreator: import("@sinclair/typebox").TNumber;
|
275
|
+
}>]>>;
|
73
276
|
// ─── Static Types ────────────────────────────────────────────────────────────
|
74
277
|
export type CreatorModel = typeof CreatorDto.static;
|
75
278
|
export type MetricsPaginationModel = typeof MetricsPaginationDto.static;
|
76
279
|
export type GetManyCreatorModel = typeof GetManyCreatorQuery.static;
|
77
280
|
export type UpdateCreatorDto = typeof UpdateCreatorDto.static;
|
78
281
|
export type UpdateCreatorRebateDto = typeof UpdateCreatorRebateDto.static;
|
282
|
+
export type CreatorsOpportunitiesModel = typeof CreatorsOpportunitiesDto.static;
|
283
|
+
export type FindCreatorsOpportunitiesModel = typeof FindCreatorsOpportunitiesDto.static;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"creator.model.js","sourceRoot":"","sources":["../../../../../../../apps/api/src/modules/v4/creator/creator.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAE3B,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;
|
1
|
+
{"version":3,"file":"creator.model.js","sourceRoot":"","sources":["../../../../../../../apps/api/src/modules/v4/creator/creator.model.ts"],"names":[],"mappings":"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"}
|