@merkl/api 1.4.7 → 1.4.9
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 -432
- package/dist/src/engine/deprecated/erc20SubTypeProcessors/helpers/ownerFinder.js.map +1 -1
- package/dist/src/engine/deprecated/erc20SubTypeProcessors/subtypesRound1.js.map +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/factories.js.map +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/ERC4626/tvl.js.map +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/eulerEarn/metadata.js.map +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/index.d.ts +0 -1
- package/dist/src/engine/implementations/Erc20/subTypes/index.js.map +1 -1
- package/dist/src/index.d.ts +260 -694
- package/dist/src/libs/computeFee.d.ts +12 -17
- package/dist/src/modules/v4/campaign/campaign.service.js.map +1 -1
- package/dist/src/modules/v4/config/config.controller.d.ts +4 -8
- package/dist/src/modules/v4/payload/payload.model.d.ts +13 -12
- package/dist/src/modules/v4/payload/payload.model.js.map +1 -1
- package/dist/src/modules/v4/payload/payload.service.js.map +1 -1
- package/dist/src/modules/v4/priceSource/priceFetchers/implementations/erc4626Service.d.ts +0 -1
- package/dist/src/modules/v4/priceSource/priceFetchers/implementations/erc4626Service.js.map +1 -1
- package/dist/src/modules/v4/priceSource/priceSource.controller.d.ts +2 -0
- package/dist/src/modules/v4/priceSource/priceSource.controller.js.map +1 -1
- package/dist/src/modules/v4/priceSource/priceSource.model.d.ts +2 -0
- package/dist/src/modules/v4/priceSource/priceSource.model.js.map +1 -1
- package/dist/src/modules/v4/priceSource/priceSource.service.js.map +1 -1
- package/dist/src/modules/v4/programPayload/programPayload.controller.d.ts +254 -686
- package/dist/src/modules/v4/programPayload/programPayload.model.d.ts +20 -18
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +7 -1
- package/dist/src/modules/v4/programPayload/programPayload.repository.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/aave.d.ts +3 -1
- package/dist/src/modules/v4/programPayload/subPayloads/aave.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/drip.d.ts +45 -3
- package/dist/src/modules/v4/programPayload/subPayloads/drip.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/ethena.d.ts +4 -1
- package/dist/src/modules/v4/programPayload/subPayloads/ethena.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/hypurrFi.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/nibiru.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/redbelly.d.ts +4 -1
- package/dist/src/modules/v4/programPayload/subPayloads/redbelly.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/rezerve.d.ts +2 -1
- package/dist/src/modules/v4/programPayload/subPayloads/rezerve.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/tac.d.ts +2 -1
- package/dist/src/modules/v4/programPayload/subPayloads/tac.js.map +1 -1
- package/dist/src/modules/v4/router.d.ts +15 -449
- package/dist/src/utils/models.d.ts +4 -8
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
@@ -31,15 +31,11 @@ declare const app: Elysia<"", {
|
|
31
31
|
}> | import("@sinclair/typebox").TObject<{
|
32
32
|
boostTokenChainId: import("@sinclair/typebox").TNumber;
|
33
33
|
boostTokenAddress: import("@sinclair/typebox").TString;
|
34
|
-
boostTokenSymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
35
|
-
boostTokenDecimals: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
36
34
|
boostMultiplicator: import("@sinclair/typebox").TNumber;
|
37
35
|
} & {
|
38
36
|
hookType: import("@sinclair/typebox").TLiteral<import("@package/resources/enums").BOOST>;
|
39
37
|
}> | import("@sinclair/typebox").TObject<{
|
40
38
|
boostTokenAddress: import("@sinclair/typebox").TString;
|
41
|
-
boostTokenDecimals: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
42
|
-
boostTokenSymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
43
39
|
boostTokenChainId: import("@sinclair/typebox").TNumber;
|
44
40
|
boostTokenThreshold: import("@sinclair/typebox").TNumber;
|
45
41
|
boostConfiguration: import("@sinclair/typebox").TRecord<import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNumber>;
|
@@ -64,8 +60,6 @@ declare const app: Elysia<"", {
|
|
64
60
|
}> | import("@sinclair/typebox").TObject<{
|
65
61
|
eligibilityTokenChainId: import("@sinclair/typebox").TNumber;
|
66
62
|
eligibilityTokenAddress: import("@sinclair/typebox").TString;
|
67
|
-
eligibilityTokenSymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
68
|
-
eligibilityTokenDecimals: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
69
63
|
eligibilityTokenThreshold: import("@sinclair/typebox").TNumber;
|
70
64
|
eligibilityDuration: import("@sinclair/typebox").TNumber;
|
71
65
|
} & {
|
@@ -245,8 +239,6 @@ declare const app: Elysia<"", {
|
|
245
239
|
computeMethod: import("@sinclair/typebox").TLiteral<import("@package/resources/enums").maxDeposit>;
|
246
240
|
}>)[]>>;
|
247
241
|
}>, import("@sinclair/typebox").TUnion<(import("@sinclair/typebox").TObject<{
|
248
|
-
campaignType: import("@sinclair/typebox").TLiteral<import("@package/resources/enums").INVALID>;
|
249
|
-
}> | import("@sinclair/typebox").TObject<{
|
250
242
|
whitelist: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>;
|
251
243
|
blacklist: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>;
|
252
244
|
endTimestamp: import("@sinclair/typebox").TNumber;
|
@@ -647,6 +639,10 @@ declare const app: Elysia<"", {
|
|
647
639
|
targetTokenPricing: import("@sinclair/typebox").TBoolean;
|
648
640
|
} & {
|
649
641
|
campaignType: import("@sinclair/typebox").TLiteral<import("@package/resources/enums").HYPERDRIVELOGFIXPROCESSOR>;
|
642
|
+
}> | import("@sinclair/typebox").TObject<{
|
643
|
+
endTimestamp: import("@sinclair/typebox").TNumber;
|
644
|
+
} & {
|
645
|
+
campaignType: import("@sinclair/typebox").TLiteral<import("@package/resources/enums").INVALID>;
|
650
646
|
}> | import("@sinclair/typebox").TObject<{
|
651
647
|
jsonUrl: import("@sinclair/typebox").TString;
|
652
648
|
url: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
@@ -7456,6 +7452,7 @@ declare const app: Elysia<"", {
|
|
7456
7452
|
post: {
|
7457
7453
|
body: {
|
7458
7454
|
addressOrSymbol: string;
|
7455
|
+
chainId?: number | undefined;
|
7459
7456
|
method: "COINGECKO" | "CONSTANT" | "DEFILLAMA" | "DEXSCREENER" | "EQUAL_TO" | "ERC4626" | "INDEXCOOP" | "ONCHAIN_CALL" | "UNISWAP_V2";
|
7460
7457
|
args: {};
|
7461
7458
|
protected?: boolean | undefined;
|
@@ -7523,6 +7520,7 @@ declare const app: Elysia<"", {
|
|
7523
7520
|
patch: {
|
7524
7521
|
body: {
|
7525
7522
|
addressOrSymbol?: string | undefined;
|
7523
|
+
chainId?: number | undefined;
|
7526
7524
|
method?: "COINGECKO" | "CONSTANT" | "DEFILLAMA" | "DEXSCREENER" | "EQUAL_TO" | "ERC4626" | "INDEXCOOP" | "ONCHAIN_CALL" | "UNISWAP_V2" | undefined;
|
7527
7525
|
args?: {} | undefined;
|
7528
7526
|
protected?: boolean | undefined;
|
@@ -9735,14 +9733,10 @@ declare const app: Elysia<"", {
|
|
9735
9733
|
hookType: import("@package/resources/enums").BOOST;
|
9736
9734
|
boostTokenChainId: number;
|
9737
9735
|
boostTokenAddress: string;
|
9738
|
-
boostTokenSymbol?: string | undefined;
|
9739
|
-
boostTokenDecimals?: number | undefined;
|
9740
9736
|
boostMultiplicator: number;
|
9741
9737
|
} | {
|
9742
9738
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
9743
9739
|
boostTokenAddress: string;
|
9744
|
-
boostTokenDecimals?: number | undefined;
|
9745
|
-
boostTokenSymbol?: string | undefined;
|
9746
9740
|
boostTokenChainId: number;
|
9747
9741
|
boostTokenThreshold: number;
|
9748
9742
|
boostConfiguration: {
|
@@ -9765,8 +9759,6 @@ declare const app: Elysia<"", {
|
|
9765
9759
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
9766
9760
|
eligibilityTokenChainId: number;
|
9767
9761
|
eligibilityTokenAddress: string;
|
9768
|
-
eligibilityTokenSymbol?: string | undefined;
|
9769
|
-
eligibilityTokenDecimals?: number | undefined;
|
9770
9762
|
eligibilityTokenThreshold: number;
|
9771
9763
|
eligibilityDuration: number;
|
9772
9764
|
} | {
|
@@ -9948,14 +9940,10 @@ declare const app: Elysia<"", {
|
|
9948
9940
|
hookType: import("@package/resources/enums").BOOST;
|
9949
9941
|
boostTokenChainId: number;
|
9950
9942
|
boostTokenAddress: string;
|
9951
|
-
boostTokenSymbol?: string | undefined;
|
9952
|
-
boostTokenDecimals?: number | undefined;
|
9953
9943
|
boostMultiplicator: number;
|
9954
9944
|
} | {
|
9955
9945
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
9956
9946
|
boostTokenAddress: string;
|
9957
|
-
boostTokenDecimals?: number | undefined;
|
9958
|
-
boostTokenSymbol?: string | undefined;
|
9959
9947
|
boostTokenChainId: number;
|
9960
9948
|
boostTokenThreshold: number;
|
9961
9949
|
boostConfiguration: {
|
@@ -9978,8 +9966,6 @@ declare const app: Elysia<"", {
|
|
9978
9966
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
9979
9967
|
eligibilityTokenChainId: number;
|
9980
9968
|
eligibilityTokenAddress: string;
|
9981
|
-
eligibilityTokenSymbol?: string | undefined;
|
9982
|
-
eligibilityTokenDecimals?: number | undefined;
|
9983
9969
|
eligibilityTokenThreshold: number;
|
9984
9970
|
eligibilityDuration: number;
|
9985
9971
|
} | {
|
@@ -10161,14 +10147,10 @@ declare const app: Elysia<"", {
|
|
10161
10147
|
hookType: import("@package/resources/enums").BOOST;
|
10162
10148
|
boostTokenChainId: number;
|
10163
10149
|
boostTokenAddress: string;
|
10164
|
-
boostTokenSymbol?: string | undefined;
|
10165
|
-
boostTokenDecimals?: number | undefined;
|
10166
10150
|
boostMultiplicator: number;
|
10167
10151
|
} | {
|
10168
10152
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
10169
10153
|
boostTokenAddress: string;
|
10170
|
-
boostTokenDecimals?: number | undefined;
|
10171
|
-
boostTokenSymbol?: string | undefined;
|
10172
10154
|
boostTokenChainId: number;
|
10173
10155
|
boostTokenThreshold: number;
|
10174
10156
|
boostConfiguration: {
|
@@ -10191,8 +10173,6 @@ declare const app: Elysia<"", {
|
|
10191
10173
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
10192
10174
|
eligibilityTokenChainId: number;
|
10193
10175
|
eligibilityTokenAddress: string;
|
10194
|
-
eligibilityTokenSymbol?: string | undefined;
|
10195
|
-
eligibilityTokenDecimals?: number | undefined;
|
10196
10176
|
eligibilityTokenThreshold: number;
|
10197
10177
|
eligibilityDuration: number;
|
10198
10178
|
} | {
|
@@ -10346,14 +10326,14 @@ declare const app: Elysia<"", {
|
|
10346
10326
|
};
|
10347
10327
|
} | undefined;
|
10348
10328
|
}) | ({
|
10349
|
-
campaignType: import("@package/resources/enums").AJNA;
|
10350
|
-
whitelist: string[];
|
10351
10329
|
blacklist: string[];
|
10330
|
+
campaignType: import("@package/resources/enums").EULER;
|
10331
|
+
collateralAddress?: string | undefined;
|
10332
|
+
subCampaignType: import("@package/resources/enums").EulerSubCampaignType;
|
10352
10333
|
endTimestamp: number;
|
10353
|
-
|
10354
|
-
poolId: string;
|
10355
|
-
subCampaignType: import("@package/resources/enums").AjnaSubCampaignType;
|
10334
|
+
evkAddress: string;
|
10356
10335
|
forwarders: string[];
|
10336
|
+
whitelist: string[];
|
10357
10337
|
} & {
|
10358
10338
|
rewardToken: string;
|
10359
10339
|
amount: string;
|
@@ -10376,14 +10356,10 @@ declare const app: Elysia<"", {
|
|
10376
10356
|
hookType: import("@package/resources/enums").BOOST;
|
10377
10357
|
boostTokenChainId: number;
|
10378
10358
|
boostTokenAddress: string;
|
10379
|
-
boostTokenSymbol?: string | undefined;
|
10380
|
-
boostTokenDecimals?: number | undefined;
|
10381
10359
|
boostMultiplicator: number;
|
10382
10360
|
} | {
|
10383
10361
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
10384
10362
|
boostTokenAddress: string;
|
10385
|
-
boostTokenDecimals?: number | undefined;
|
10386
|
-
boostTokenSymbol?: string | undefined;
|
10387
10363
|
boostTokenChainId: number;
|
10388
10364
|
boostTokenThreshold: number;
|
10389
10365
|
boostConfiguration: {
|
@@ -10406,8 +10382,6 @@ declare const app: Elysia<"", {
|
|
10406
10382
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
10407
10383
|
eligibilityTokenChainId: number;
|
10408
10384
|
eligibilityTokenAddress: string;
|
10409
|
-
eligibilityTokenSymbol?: string | undefined;
|
10410
|
-
eligibilityTokenDecimals?: number | undefined;
|
10411
10385
|
eligibilityTokenThreshold: number;
|
10412
10386
|
eligibilityDuration: number;
|
10413
10387
|
} | {
|
@@ -10561,20 +10535,20 @@ declare const app: Elysia<"", {
|
|
10561
10535
|
};
|
10562
10536
|
} | undefined;
|
10563
10537
|
}) | ({
|
10564
|
-
campaignType: import("@package/resources/enums").
|
10538
|
+
campaignType: import("@package/resources/enums").UNISWAP_V4;
|
10565
10539
|
whitelist: string[];
|
10566
10540
|
blacklist: string[];
|
10567
10541
|
endTimestamp: number;
|
10568
10542
|
url?: string | undefined;
|
10569
10543
|
poolId: string;
|
10570
|
-
baseToken: string;
|
10571
|
-
quoteToken: string;
|
10572
|
-
poolIdx: number;
|
10573
10544
|
isOutOfRangeIncentivized: boolean;
|
10574
10545
|
weightFees: number;
|
10575
10546
|
weightToken0: number;
|
10576
10547
|
weightToken1: number;
|
10577
|
-
|
10548
|
+
lowerPriceBond?: number | undefined;
|
10549
|
+
upperPriceBond?: number | undefined;
|
10550
|
+
lowerPriceTolerance?: number | undefined;
|
10551
|
+
upperPriceTolerance?: number | undefined;
|
10578
10552
|
} & {
|
10579
10553
|
rewardToken: string;
|
10580
10554
|
amount: string;
|
@@ -10597,14 +10571,10 @@ declare const app: Elysia<"", {
|
|
10597
10571
|
hookType: import("@package/resources/enums").BOOST;
|
10598
10572
|
boostTokenChainId: number;
|
10599
10573
|
boostTokenAddress: string;
|
10600
|
-
boostTokenSymbol?: string | undefined;
|
10601
|
-
boostTokenDecimals?: number | undefined;
|
10602
10574
|
boostMultiplicator: number;
|
10603
10575
|
} | {
|
10604
10576
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
10605
10577
|
boostTokenAddress: string;
|
10606
|
-
boostTokenDecimals?: number | undefined;
|
10607
|
-
boostTokenSymbol?: string | undefined;
|
10608
10578
|
boostTokenChainId: number;
|
10609
10579
|
boostTokenThreshold: number;
|
10610
10580
|
boostConfiguration: {
|
@@ -10627,8 +10597,6 @@ declare const app: Elysia<"", {
|
|
10627
10597
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
10628
10598
|
eligibilityTokenChainId: number;
|
10629
10599
|
eligibilityTokenAddress: string;
|
10630
|
-
eligibilityTokenSymbol?: string | undefined;
|
10631
|
-
eligibilityTokenDecimals?: number | undefined;
|
10632
10600
|
eligibilityTokenThreshold: number;
|
10633
10601
|
eligibilityDuration: number;
|
10634
10602
|
} | {
|
@@ -10782,12 +10750,12 @@ declare const app: Elysia<"", {
|
|
10782
10750
|
};
|
10783
10751
|
} | undefined;
|
10784
10752
|
}) | ({
|
10785
|
-
campaignType: import("@package/resources/enums").
|
10753
|
+
campaignType: import("@package/resources/enums").EIGENLAYER;
|
10786
10754
|
whitelist: string[];
|
10787
10755
|
blacklist: string[];
|
10788
10756
|
endTimestamp: number;
|
10789
10757
|
url?: string | undefined;
|
10790
|
-
|
10758
|
+
strategy: string;
|
10791
10759
|
forwarders: string[];
|
10792
10760
|
} & {
|
10793
10761
|
rewardToken: string;
|
@@ -10811,14 +10779,10 @@ declare const app: Elysia<"", {
|
|
10811
10779
|
hookType: import("@package/resources/enums").BOOST;
|
10812
10780
|
boostTokenChainId: number;
|
10813
10781
|
boostTokenAddress: string;
|
10814
|
-
boostTokenSymbol?: string | undefined;
|
10815
|
-
boostTokenDecimals?: number | undefined;
|
10816
10782
|
boostMultiplicator: number;
|
10817
10783
|
} | {
|
10818
10784
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
10819
10785
|
boostTokenAddress: string;
|
10820
|
-
boostTokenDecimals?: number | undefined;
|
10821
|
-
boostTokenSymbol?: string | undefined;
|
10822
10786
|
boostTokenChainId: number;
|
10823
10787
|
boostTokenThreshold: number;
|
10824
10788
|
boostConfiguration: {
|
@@ -10841,8 +10805,6 @@ declare const app: Elysia<"", {
|
|
10841
10805
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
10842
10806
|
eligibilityTokenChainId: number;
|
10843
10807
|
eligibilityTokenAddress: string;
|
10844
|
-
eligibilityTokenSymbol?: string | undefined;
|
10845
|
-
eligibilityTokenDecimals?: number | undefined;
|
10846
10808
|
eligibilityTokenThreshold: number;
|
10847
10809
|
eligibilityDuration: number;
|
10848
10810
|
} | {
|
@@ -10996,12 +10958,11 @@ declare const app: Elysia<"", {
|
|
10996
10958
|
};
|
10997
10959
|
} | undefined;
|
10998
10960
|
}) | ({
|
10999
|
-
campaignType: import("@package/resources/enums").
|
11000
|
-
whitelist: string[];
|
11001
|
-
blacklist: string[];
|
10961
|
+
campaignType: import("@package/resources/enums").VEST;
|
11002
10962
|
endTimestamp: number;
|
11003
10963
|
url?: string | undefined;
|
11004
|
-
|
10964
|
+
token: string;
|
10965
|
+
blacklist: string[];
|
11005
10966
|
} & {
|
11006
10967
|
rewardToken: string;
|
11007
10968
|
amount: string;
|
@@ -11024,14 +10985,10 @@ declare const app: Elysia<"", {
|
|
11024
10985
|
hookType: import("@package/resources/enums").BOOST;
|
11025
10986
|
boostTokenChainId: number;
|
11026
10987
|
boostTokenAddress: string;
|
11027
|
-
boostTokenSymbol?: string | undefined;
|
11028
|
-
boostTokenDecimals?: number | undefined;
|
11029
10988
|
boostMultiplicator: number;
|
11030
10989
|
} | {
|
11031
10990
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11032
10991
|
boostTokenAddress: string;
|
11033
|
-
boostTokenDecimals?: number | undefined;
|
11034
|
-
boostTokenSymbol?: string | undefined;
|
11035
10992
|
boostTokenChainId: number;
|
11036
10993
|
boostTokenThreshold: number;
|
11037
10994
|
boostConfiguration: {
|
@@ -11054,8 +11011,6 @@ declare const app: Elysia<"", {
|
|
11054
11011
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11055
11012
|
eligibilityTokenChainId: number;
|
11056
11013
|
eligibilityTokenAddress: string;
|
11057
|
-
eligibilityTokenSymbol?: string | undefined;
|
11058
|
-
eligibilityTokenDecimals?: number | undefined;
|
11059
11014
|
eligibilityTokenThreshold: number;
|
11060
11015
|
eligibilityDuration: number;
|
11061
11016
|
} | {
|
@@ -11209,12 +11164,13 @@ declare const app: Elysia<"", {
|
|
11209
11164
|
};
|
11210
11165
|
} | undefined;
|
11211
11166
|
}) | ({
|
11212
|
-
campaignType: import("@package/resources/enums").
|
11167
|
+
campaignType: import("@package/resources/enums").ERC20LOGPROCESSOR;
|
11213
11168
|
whitelist: string[];
|
11214
11169
|
blacklist: string[];
|
11215
11170
|
endTimestamp: number;
|
11216
11171
|
url?: string | undefined;
|
11217
11172
|
targetToken: string;
|
11173
|
+
forwarders: string[];
|
11218
11174
|
} & {
|
11219
11175
|
rewardToken: string;
|
11220
11176
|
amount: string;
|
@@ -11237,14 +11193,10 @@ declare const app: Elysia<"", {
|
|
11237
11193
|
hookType: import("@package/resources/enums").BOOST;
|
11238
11194
|
boostTokenChainId: number;
|
11239
11195
|
boostTokenAddress: string;
|
11240
|
-
boostTokenSymbol?: string | undefined;
|
11241
|
-
boostTokenDecimals?: number | undefined;
|
11242
11196
|
boostMultiplicator: number;
|
11243
11197
|
} | {
|
11244
11198
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11245
11199
|
boostTokenAddress: string;
|
11246
|
-
boostTokenDecimals?: number | undefined;
|
11247
|
-
boostTokenSymbol?: string | undefined;
|
11248
11200
|
boostTokenChainId: number;
|
11249
11201
|
boostTokenThreshold: number;
|
11250
11202
|
boostConfiguration: {
|
@@ -11267,8 +11219,6 @@ declare const app: Elysia<"", {
|
|
11267
11219
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11268
11220
|
eligibilityTokenChainId: number;
|
11269
11221
|
eligibilityTokenAddress: string;
|
11270
|
-
eligibilityTokenSymbol?: string | undefined;
|
11271
|
-
eligibilityTokenDecimals?: number | undefined;
|
11272
11222
|
eligibilityTokenThreshold: number;
|
11273
11223
|
eligibilityDuration: number;
|
11274
11224
|
} | {
|
@@ -11422,13 +11372,11 @@ declare const app: Elysia<"", {
|
|
11422
11372
|
};
|
11423
11373
|
} | undefined;
|
11424
11374
|
}) | ({
|
11425
|
-
campaignType: import("@package/resources/enums").
|
11375
|
+
campaignType: import("@package/resources/enums").ERC20REBASELOGPROCESSOR;
|
11426
11376
|
whitelist: string[];
|
11427
11377
|
blacklist: string[];
|
11428
11378
|
endTimestamp: number;
|
11429
11379
|
url?: string | undefined;
|
11430
|
-
subCampaignType: import("@package/resources/enums").CompoundSubCampaignType;
|
11431
|
-
compFork: import("@package/resources/enums").CompFork;
|
11432
11380
|
targetToken: string;
|
11433
11381
|
forwarders: string[];
|
11434
11382
|
} & {
|
@@ -11453,14 +11401,10 @@ declare const app: Elysia<"", {
|
|
11453
11401
|
hookType: import("@package/resources/enums").BOOST;
|
11454
11402
|
boostTokenChainId: number;
|
11455
11403
|
boostTokenAddress: string;
|
11456
|
-
boostTokenSymbol?: string | undefined;
|
11457
|
-
boostTokenDecimals?: number | undefined;
|
11458
11404
|
boostMultiplicator: number;
|
11459
11405
|
} | {
|
11460
11406
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11461
11407
|
boostTokenAddress: string;
|
11462
|
-
boostTokenDecimals?: number | undefined;
|
11463
|
-
boostTokenSymbol?: string | undefined;
|
11464
11408
|
boostTokenChainId: number;
|
11465
11409
|
boostTokenThreshold: number;
|
11466
11410
|
boostConfiguration: {
|
@@ -11483,8 +11427,6 @@ declare const app: Elysia<"", {
|
|
11483
11427
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11484
11428
|
eligibilityTokenChainId: number;
|
11485
11429
|
eligibilityTokenAddress: string;
|
11486
|
-
eligibilityTokenSymbol?: string | undefined;
|
11487
|
-
eligibilityTokenDecimals?: number | undefined;
|
11488
11430
|
eligibilityTokenThreshold: number;
|
11489
11431
|
eligibilityDuration: number;
|
11490
11432
|
} | {
|
@@ -11638,13 +11580,16 @@ declare const app: Elysia<"", {
|
|
11638
11580
|
};
|
11639
11581
|
} | undefined;
|
11640
11582
|
}) | ({
|
11641
|
-
campaignType: import("@package/resources/enums").
|
11583
|
+
campaignType: import("@package/resources/enums").ERC20_FIX_APR;
|
11642
11584
|
whitelist: string[];
|
11643
11585
|
blacklist: string[];
|
11644
11586
|
endTimestamp: number;
|
11645
11587
|
url?: string | undefined;
|
11646
11588
|
targetToken: string;
|
11647
|
-
|
11589
|
+
forwarders: string[];
|
11590
|
+
apr: string;
|
11591
|
+
rewardTokenPricing: boolean;
|
11592
|
+
targetTokenPricing: boolean;
|
11648
11593
|
} & {
|
11649
11594
|
rewardToken: string;
|
11650
11595
|
amount: string;
|
@@ -11667,14 +11612,10 @@ declare const app: Elysia<"", {
|
|
11667
11612
|
hookType: import("@package/resources/enums").BOOST;
|
11668
11613
|
boostTokenChainId: number;
|
11669
11614
|
boostTokenAddress: string;
|
11670
|
-
boostTokenSymbol?: string | undefined;
|
11671
|
-
boostTokenDecimals?: number | undefined;
|
11672
11615
|
boostMultiplicator: number;
|
11673
11616
|
} | {
|
11674
11617
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11675
11618
|
boostTokenAddress: string;
|
11676
|
-
boostTokenDecimals?: number | undefined;
|
11677
|
-
boostTokenSymbol?: string | undefined;
|
11678
11619
|
boostTokenChainId: number;
|
11679
11620
|
boostTokenThreshold: number;
|
11680
11621
|
boostConfiguration: {
|
@@ -11697,8 +11638,6 @@ declare const app: Elysia<"", {
|
|
11697
11638
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11698
11639
|
eligibilityTokenChainId: number;
|
11699
11640
|
eligibilityTokenAddress: string;
|
11700
|
-
eligibilityTokenSymbol?: string | undefined;
|
11701
|
-
eligibilityTokenDecimals?: number | undefined;
|
11702
11641
|
eligibilityTokenThreshold: number;
|
11703
11642
|
eligibilityDuration: number;
|
11704
11643
|
} | {
|
@@ -11852,12 +11791,15 @@ declare const app: Elysia<"", {
|
|
11852
11791
|
};
|
11853
11792
|
} | undefined;
|
11854
11793
|
}) | ({
|
11855
|
-
campaignType: import("@package/resources/enums").
|
11794
|
+
campaignType: import("@package/resources/enums").HYPERDRIVELOGPROCESSOR;
|
11856
11795
|
whitelist: string[];
|
11857
11796
|
blacklist: string[];
|
11858
11797
|
endTimestamp: number;
|
11859
11798
|
url?: string | undefined;
|
11799
|
+
subCampaignType: import("@package/resources/enums").HyperDriveSubCampaignType;
|
11800
|
+
tokenId: string;
|
11860
11801
|
targetToken: string;
|
11802
|
+
forwarders: string[];
|
11861
11803
|
} & {
|
11862
11804
|
rewardToken: string;
|
11863
11805
|
amount: string;
|
@@ -11880,14 +11822,10 @@ declare const app: Elysia<"", {
|
|
11880
11822
|
hookType: import("@package/resources/enums").BOOST;
|
11881
11823
|
boostTokenChainId: number;
|
11882
11824
|
boostTokenAddress: string;
|
11883
|
-
boostTokenSymbol?: string | undefined;
|
11884
|
-
boostTokenDecimals?: number | undefined;
|
11885
11825
|
boostMultiplicator: number;
|
11886
11826
|
} | {
|
11887
11827
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11888
11828
|
boostTokenAddress: string;
|
11889
|
-
boostTokenDecimals?: number | undefined;
|
11890
|
-
boostTokenSymbol?: string | undefined;
|
11891
11829
|
boostTokenChainId: number;
|
11892
11830
|
boostTokenThreshold: number;
|
11893
11831
|
boostConfiguration: {
|
@@ -11910,8 +11848,6 @@ declare const app: Elysia<"", {
|
|
11910
11848
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11911
11849
|
eligibilityTokenChainId: number;
|
11912
11850
|
eligibilityTokenAddress: string;
|
11913
|
-
eligibilityTokenSymbol?: string | undefined;
|
11914
|
-
eligibilityTokenDecimals?: number | undefined;
|
11915
11851
|
eligibilityTokenThreshold: number;
|
11916
11852
|
eligibilityDuration: number;
|
11917
11853
|
} | {
|
@@ -12065,16 +12001,18 @@ declare const app: Elysia<"", {
|
|
12065
12001
|
};
|
12066
12002
|
} | undefined;
|
12067
12003
|
}) | ({
|
12068
|
-
campaignType: import("@package/resources/enums").
|
12004
|
+
campaignType: import("@package/resources/enums").HYPERDRIVELOGFIXPROCESSOR;
|
12069
12005
|
whitelist: string[];
|
12070
12006
|
blacklist: string[];
|
12071
12007
|
endTimestamp: number;
|
12072
12008
|
url?: string | undefined;
|
12073
|
-
|
12074
|
-
|
12075
|
-
|
12076
|
-
|
12077
|
-
|
12009
|
+
subCampaignType: import("@package/resources/enums").HyperDriveSubCampaignType;
|
12010
|
+
tokenId: string;
|
12011
|
+
targetToken: string;
|
12012
|
+
forwarders: string[];
|
12013
|
+
apr: string;
|
12014
|
+
rewardTokenPricing: boolean;
|
12015
|
+
targetTokenPricing: boolean;
|
12078
12016
|
} & {
|
12079
12017
|
rewardToken: string;
|
12080
12018
|
amount: string;
|
@@ -12097,14 +12035,10 @@ declare const app: Elysia<"", {
|
|
12097
12035
|
hookType: import("@package/resources/enums").BOOST;
|
12098
12036
|
boostTokenChainId: number;
|
12099
12037
|
boostTokenAddress: string;
|
12100
|
-
boostTokenSymbol?: string | undefined;
|
12101
|
-
boostTokenDecimals?: number | undefined;
|
12102
12038
|
boostMultiplicator: number;
|
12103
12039
|
} | {
|
12104
12040
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12105
12041
|
boostTokenAddress: string;
|
12106
|
-
boostTokenDecimals?: number | undefined;
|
12107
|
-
boostTokenSymbol?: string | undefined;
|
12108
12042
|
boostTokenChainId: number;
|
12109
12043
|
boostTokenThreshold: number;
|
12110
12044
|
boostConfiguration: {
|
@@ -12127,8 +12061,6 @@ declare const app: Elysia<"", {
|
|
12127
12061
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12128
12062
|
eligibilityTokenChainId: number;
|
12129
12063
|
eligibilityTokenAddress: string;
|
12130
|
-
eligibilityTokenSymbol?: string | undefined;
|
12131
|
-
eligibilityTokenDecimals?: number | undefined;
|
12132
12064
|
eligibilityTokenThreshold: number;
|
12133
12065
|
eligibilityDuration: number;
|
12134
12066
|
} | {
|
@@ -12282,13 +12214,12 @@ declare const app: Elysia<"", {
|
|
12282
12214
|
};
|
12283
12215
|
} | undefined;
|
12284
12216
|
}) | ({
|
12285
|
-
campaignType: import("@package/resources/enums").
|
12217
|
+
campaignType: import("@package/resources/enums").MORPHOSUPPLY;
|
12286
12218
|
whitelist: string[];
|
12287
12219
|
blacklist: string[];
|
12288
|
-
subCampaignType: import("@package/resources/enums").DolomiteSubCampaignType;
|
12289
12220
|
endTimestamp: number;
|
12290
|
-
|
12291
|
-
|
12221
|
+
url?: string | undefined;
|
12222
|
+
market: string;
|
12292
12223
|
} & {
|
12293
12224
|
rewardToken: string;
|
12294
12225
|
amount: string;
|
@@ -12311,14 +12242,10 @@ declare const app: Elysia<"", {
|
|
12311
12242
|
hookType: import("@package/resources/enums").BOOST;
|
12312
12243
|
boostTokenChainId: number;
|
12313
12244
|
boostTokenAddress: string;
|
12314
|
-
boostTokenSymbol?: string | undefined;
|
12315
|
-
boostTokenDecimals?: number | undefined;
|
12316
12245
|
boostMultiplicator: number;
|
12317
12246
|
} | {
|
12318
12247
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12319
12248
|
boostTokenAddress: string;
|
12320
|
-
boostTokenDecimals?: number | undefined;
|
12321
|
-
boostTokenSymbol?: string | undefined;
|
12322
12249
|
boostTokenChainId: number;
|
12323
12250
|
boostTokenThreshold: number;
|
12324
12251
|
boostConfiguration: {
|
@@ -12341,8 +12268,6 @@ declare const app: Elysia<"", {
|
|
12341
12268
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12342
12269
|
eligibilityTokenChainId: number;
|
12343
12270
|
eligibilityTokenAddress: string;
|
12344
|
-
eligibilityTokenSymbol?: string | undefined;
|
12345
|
-
eligibilityTokenDecimals?: number | undefined;
|
12346
12271
|
eligibilityTokenThreshold: number;
|
12347
12272
|
eligibilityDuration: number;
|
12348
12273
|
} | {
|
@@ -12496,13 +12421,12 @@ declare const app: Elysia<"", {
|
|
12496
12421
|
};
|
12497
12422
|
} | undefined;
|
12498
12423
|
}) | ({
|
12499
|
-
campaignType: import("@package/resources/enums").
|
12424
|
+
campaignType: import("@package/resources/enums").SYNCSWAP_VAULT;
|
12500
12425
|
whitelist: string[];
|
12501
12426
|
blacklist: string[];
|
12502
12427
|
endTimestamp: number;
|
12503
12428
|
url?: string | undefined;
|
12504
|
-
|
12505
|
-
forwarders: string[];
|
12429
|
+
vaultAddress: string;
|
12506
12430
|
} & {
|
12507
12431
|
rewardToken: string;
|
12508
12432
|
amount: string;
|
@@ -12525,14 +12449,10 @@ declare const app: Elysia<"", {
|
|
12525
12449
|
hookType: import("@package/resources/enums").BOOST;
|
12526
12450
|
boostTokenChainId: number;
|
12527
12451
|
boostTokenAddress: string;
|
12528
|
-
boostTokenSymbol?: string | undefined;
|
12529
|
-
boostTokenDecimals?: number | undefined;
|
12530
12452
|
boostMultiplicator: number;
|
12531
12453
|
} | {
|
12532
12454
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12533
12455
|
boostTokenAddress: string;
|
12534
|
-
boostTokenDecimals?: number | undefined;
|
12535
|
-
boostTokenSymbol?: string | undefined;
|
12536
12456
|
boostTokenChainId: number;
|
12537
12457
|
boostTokenThreshold: number;
|
12538
12458
|
boostConfiguration: {
|
@@ -12555,8 +12475,6 @@ declare const app: Elysia<"", {
|
|
12555
12475
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12556
12476
|
eligibilityTokenChainId: number;
|
12557
12477
|
eligibilityTokenAddress: string;
|
12558
|
-
eligibilityTokenSymbol?: string | undefined;
|
12559
|
-
eligibilityTokenDecimals?: number | undefined;
|
12560
12478
|
eligibilityTokenThreshold: number;
|
12561
12479
|
eligibilityDuration: number;
|
12562
12480
|
} | {
|
@@ -12710,20 +12628,17 @@ declare const app: Elysia<"", {
|
|
12710
12628
|
};
|
12711
12629
|
} | undefined;
|
12712
12630
|
}) | ({
|
12713
|
-
campaignType: import("@package/resources/enums").
|
12631
|
+
campaignType: import("@package/resources/enums").EVENT_BASED;
|
12714
12632
|
whitelist: string[];
|
12715
12633
|
blacklist: string[];
|
12716
12634
|
endTimestamp: number;
|
12717
12635
|
url?: string | undefined;
|
12718
|
-
|
12719
|
-
|
12720
|
-
|
12721
|
-
|
12722
|
-
|
12723
|
-
|
12724
|
-
upperPriceBond?: number | undefined;
|
12725
|
-
lowerPriceTolerance?: number | undefined;
|
12726
|
-
upperPriceTolerance?: number | undefined;
|
12636
|
+
contract: string;
|
12637
|
+
eventID: string;
|
12638
|
+
topicToData: any[];
|
12639
|
+
decodeDataValue: string[];
|
12640
|
+
expectedChecks: any[];
|
12641
|
+
forwarders: string[];
|
12727
12642
|
} & {
|
12728
12643
|
rewardToken: string;
|
12729
12644
|
amount: string;
|
@@ -12746,14 +12661,10 @@ declare const app: Elysia<"", {
|
|
12746
12661
|
hookType: import("@package/resources/enums").BOOST;
|
12747
12662
|
boostTokenChainId: number;
|
12748
12663
|
boostTokenAddress: string;
|
12749
|
-
boostTokenSymbol?: string | undefined;
|
12750
|
-
boostTokenDecimals?: number | undefined;
|
12751
12664
|
boostMultiplicator: number;
|
12752
12665
|
} | {
|
12753
12666
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12754
12667
|
boostTokenAddress: string;
|
12755
|
-
boostTokenDecimals?: number | undefined;
|
12756
|
-
boostTokenSymbol?: string | undefined;
|
12757
12668
|
boostTokenChainId: number;
|
12758
12669
|
boostTokenThreshold: number;
|
12759
12670
|
boostConfiguration: {
|
@@ -12776,8 +12687,6 @@ declare const app: Elysia<"", {
|
|
12776
12687
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12777
12688
|
eligibilityTokenChainId: number;
|
12778
12689
|
eligibilityTokenAddress: string;
|
12779
|
-
eligibilityTokenSymbol?: string | undefined;
|
12780
|
-
eligibilityTokenDecimals?: number | undefined;
|
12781
12690
|
eligibilityTokenThreshold: number;
|
12782
12691
|
eligibilityDuration: number;
|
12783
12692
|
} | {
|
@@ -12931,13 +12840,16 @@ declare const app: Elysia<"", {
|
|
12931
12840
|
};
|
12932
12841
|
} | undefined;
|
12933
12842
|
}) | ({
|
12934
|
-
campaignType: import("@package/resources/enums").
|
12843
|
+
campaignType: import("@package/resources/enums").ERC20REBASEFIXAPR;
|
12935
12844
|
whitelist: string[];
|
12936
12845
|
blacklist: string[];
|
12937
12846
|
endTimestamp: number;
|
12938
12847
|
url?: string | undefined;
|
12939
12848
|
targetToken: string;
|
12940
|
-
|
12849
|
+
forwarders: string[];
|
12850
|
+
apr: string;
|
12851
|
+
rewardTokenPricing: boolean;
|
12852
|
+
targetTokenPricing: boolean;
|
12941
12853
|
} & {
|
12942
12854
|
rewardToken: string;
|
12943
12855
|
amount: string;
|
@@ -12960,14 +12872,10 @@ declare const app: Elysia<"", {
|
|
12960
12872
|
hookType: import("@package/resources/enums").BOOST;
|
12961
12873
|
boostTokenChainId: number;
|
12962
12874
|
boostTokenAddress: string;
|
12963
|
-
boostTokenSymbol?: string | undefined;
|
12964
|
-
boostTokenDecimals?: number | undefined;
|
12965
12875
|
boostMultiplicator: number;
|
12966
12876
|
} | {
|
12967
12877
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12968
12878
|
boostTokenAddress: string;
|
12969
|
-
boostTokenDecimals?: number | undefined;
|
12970
|
-
boostTokenSymbol?: string | undefined;
|
12971
12879
|
boostTokenChainId: number;
|
12972
12880
|
boostTokenThreshold: number;
|
12973
12881
|
boostConfiguration: {
|
@@ -12990,8 +12898,6 @@ declare const app: Elysia<"", {
|
|
12990
12898
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12991
12899
|
eligibilityTokenChainId: number;
|
12992
12900
|
eligibilityTokenAddress: string;
|
12993
|
-
eligibilityTokenSymbol?: string | undefined;
|
12994
|
-
eligibilityTokenDecimals?: number | undefined;
|
12995
12901
|
eligibilityTokenThreshold: number;
|
12996
12902
|
eligibilityDuration: number;
|
12997
12903
|
} | {
|
@@ -13145,10 +13051,13 @@ declare const app: Elysia<"", {
|
|
13145
13051
|
};
|
13146
13052
|
} | undefined;
|
13147
13053
|
}) | ({
|
13148
|
-
campaignType: import("@package/resources/enums").
|
13149
|
-
|
13150
|
-
|
13151
|
-
|
13054
|
+
campaignType: import("@package/resources/enums").MAVERICK_BP;
|
13055
|
+
whitelist: string[];
|
13056
|
+
blacklist: string[];
|
13057
|
+
endTimestamp: number;
|
13058
|
+
url?: string | undefined;
|
13059
|
+
sender: string;
|
13060
|
+
receiver: string;
|
13152
13061
|
} & {
|
13153
13062
|
rewardToken: string;
|
13154
13063
|
amount: string;
|
@@ -13171,14 +13080,10 @@ declare const app: Elysia<"", {
|
|
13171
13080
|
hookType: import("@package/resources/enums").BOOST;
|
13172
13081
|
boostTokenChainId: number;
|
13173
13082
|
boostTokenAddress: string;
|
13174
|
-
boostTokenSymbol?: string | undefined;
|
13175
|
-
boostTokenDecimals?: number | undefined;
|
13176
13083
|
boostMultiplicator: number;
|
13177
13084
|
} | {
|
13178
13085
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
13179
13086
|
boostTokenAddress: string;
|
13180
|
-
boostTokenDecimals?: number | undefined;
|
13181
|
-
boostTokenSymbol?: string | undefined;
|
13182
13087
|
boostTokenChainId: number;
|
13183
13088
|
boostTokenThreshold: number;
|
13184
13089
|
boostConfiguration: {
|
@@ -13201,8 +13106,6 @@ declare const app: Elysia<"", {
|
|
13201
13106
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
13202
13107
|
eligibilityTokenChainId: number;
|
13203
13108
|
eligibilityTokenAddress: string;
|
13204
|
-
eligibilityTokenSymbol?: string | undefined;
|
13205
|
-
eligibilityTokenDecimals?: number | undefined;
|
13206
13109
|
eligibilityTokenThreshold: number;
|
13207
13110
|
eligibilityDuration: number;
|
13208
13111
|
} | {
|
@@ -13356,12 +13259,13 @@ declare const app: Elysia<"", {
|
|
13356
13259
|
};
|
13357
13260
|
} | undefined;
|
13358
13261
|
}) | ({
|
13359
|
-
campaignType: import("@package/resources/enums").
|
13262
|
+
campaignType: import("@package/resources/enums").ERC6909;
|
13360
13263
|
whitelist: string[];
|
13361
13264
|
blacklist: string[];
|
13362
13265
|
endTimestamp: number;
|
13363
13266
|
url?: string | undefined;
|
13364
|
-
|
13267
|
+
targetToken: string;
|
13268
|
+
tokenId: string;
|
13365
13269
|
} & {
|
13366
13270
|
rewardToken: string;
|
13367
13271
|
amount: string;
|
@@ -13384,14 +13288,10 @@ declare const app: Elysia<"", {
|
|
13384
13288
|
hookType: import("@package/resources/enums").BOOST;
|
13385
13289
|
boostTokenChainId: number;
|
13386
13290
|
boostTokenAddress: string;
|
13387
|
-
boostTokenSymbol?: string | undefined;
|
13388
|
-
boostTokenDecimals?: number | undefined;
|
13389
13291
|
boostMultiplicator: number;
|
13390
13292
|
} | {
|
13391
13293
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
13392
13294
|
boostTokenAddress: string;
|
13393
|
-
boostTokenDecimals?: number | undefined;
|
13394
|
-
boostTokenSymbol?: string | undefined;
|
13395
13295
|
boostTokenChainId: number;
|
13396
13296
|
boostTokenThreshold: number;
|
13397
13297
|
boostConfiguration: {
|
@@ -13414,8 +13314,6 @@ declare const app: Elysia<"", {
|
|
13414
13314
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
13415
13315
|
eligibilityTokenChainId: number;
|
13416
13316
|
eligibilityTokenAddress: string;
|
13417
|
-
eligibilityTokenSymbol?: string | undefined;
|
13418
|
-
eligibilityTokenDecimals?: number | undefined;
|
13419
13317
|
eligibilityTokenThreshold: number;
|
13420
13318
|
eligibilityDuration: number;
|
13421
13319
|
} | {
|
@@ -13569,13 +13467,13 @@ declare const app: Elysia<"", {
|
|
13569
13467
|
};
|
13570
13468
|
} | undefined;
|
13571
13469
|
}) | ({
|
13572
|
-
campaignType: import("@package/resources/enums").
|
13470
|
+
campaignType: import("@package/resources/enums").ERC1155;
|
13573
13471
|
whitelist: string[];
|
13574
13472
|
blacklist: string[];
|
13575
13473
|
endTimestamp: number;
|
13576
13474
|
url?: string | undefined;
|
13577
13475
|
targetToken: string;
|
13578
|
-
|
13476
|
+
tokenId: string;
|
13579
13477
|
} & {
|
13580
13478
|
rewardToken: string;
|
13581
13479
|
amount: string;
|
@@ -13598,14 +13496,10 @@ declare const app: Elysia<"", {
|
|
13598
13496
|
hookType: import("@package/resources/enums").BOOST;
|
13599
13497
|
boostTokenChainId: number;
|
13600
13498
|
boostTokenAddress: string;
|
13601
|
-
boostTokenSymbol?: string | undefined;
|
13602
|
-
boostTokenDecimals?: number | undefined;
|
13603
13499
|
boostMultiplicator: number;
|
13604
13500
|
} | {
|
13605
13501
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
13606
13502
|
boostTokenAddress: string;
|
13607
|
-
boostTokenDecimals?: number | undefined;
|
13608
|
-
boostTokenSymbol?: string | undefined;
|
13609
13503
|
boostTokenChainId: number;
|
13610
13504
|
boostTokenThreshold: number;
|
13611
13505
|
boostConfiguration: {
|
@@ -13628,8 +13522,6 @@ declare const app: Elysia<"", {
|
|
13628
13522
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
13629
13523
|
eligibilityTokenChainId: number;
|
13630
13524
|
eligibilityTokenAddress: string;
|
13631
|
-
eligibilityTokenSymbol?: string | undefined;
|
13632
|
-
eligibilityTokenDecimals?: number | undefined;
|
13633
13525
|
eligibilityTokenThreshold: number;
|
13634
13526
|
eligibilityDuration: number;
|
13635
13527
|
} | {
|
@@ -13783,16 +13675,13 @@ declare const app: Elysia<"", {
|
|
13783
13675
|
};
|
13784
13676
|
} | undefined;
|
13785
13677
|
}) | ({
|
13786
|
-
campaignType: import("@package/resources/enums").
|
13678
|
+
campaignType: import("@package/resources/enums").COMPOUND_V3;
|
13787
13679
|
whitelist: string[];
|
13788
13680
|
blacklist: string[];
|
13789
13681
|
endTimestamp: number;
|
13790
13682
|
url?: string | undefined;
|
13791
13683
|
targetToken: string;
|
13792
|
-
|
13793
|
-
apr: string;
|
13794
|
-
rewardTokenPricing: boolean;
|
13795
|
-
targetTokenPricing: boolean;
|
13684
|
+
subCampaignType: import("@package/resources/enums").CompoundSubCampaignType;
|
13796
13685
|
} & {
|
13797
13686
|
rewardToken: string;
|
13798
13687
|
amount: string;
|
@@ -13815,14 +13704,10 @@ declare const app: Elysia<"", {
|
|
13815
13704
|
hookType: import("@package/resources/enums").BOOST;
|
13816
13705
|
boostTokenChainId: number;
|
13817
13706
|
boostTokenAddress: string;
|
13818
|
-
boostTokenSymbol?: string | undefined;
|
13819
|
-
boostTokenDecimals?: number | undefined;
|
13820
13707
|
boostMultiplicator: number;
|
13821
13708
|
} | {
|
13822
13709
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
13823
13710
|
boostTokenAddress: string;
|
13824
|
-
boostTokenDecimals?: number | undefined;
|
13825
|
-
boostTokenSymbol?: string | undefined;
|
13826
13711
|
boostTokenChainId: number;
|
13827
13712
|
boostTokenThreshold: number;
|
13828
13713
|
boostConfiguration: {
|
@@ -13845,8 +13730,6 @@ declare const app: Elysia<"", {
|
|
13845
13730
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
13846
13731
|
eligibilityTokenChainId: number;
|
13847
13732
|
eligibilityTokenAddress: string;
|
13848
|
-
eligibilityTokenSymbol?: string | undefined;
|
13849
|
-
eligibilityTokenDecimals?: number | undefined;
|
13850
13733
|
eligibilityTokenThreshold: number;
|
13851
13734
|
eligibilityDuration: number;
|
13852
13735
|
} | {
|
@@ -14000,14 +13883,13 @@ declare const app: Elysia<"", {
|
|
14000
13883
|
};
|
14001
13884
|
} | undefined;
|
14002
13885
|
}) | ({
|
14003
|
-
campaignType: import("@package/resources/enums").
|
13886
|
+
campaignType: import("@package/resources/enums").ERC721;
|
14004
13887
|
whitelist: string[];
|
14005
13888
|
blacklist: string[];
|
14006
13889
|
endTimestamp: number;
|
14007
13890
|
url?: string | undefined;
|
13891
|
+
subCampaignType: import("@package/resources/enums").ERC721SubCampaignType;
|
14008
13892
|
targetToken: string;
|
14009
|
-
filteredAddresses: string[];
|
14010
|
-
owner?: string | undefined;
|
14011
13893
|
} & {
|
14012
13894
|
rewardToken: string;
|
14013
13895
|
amount: string;
|
@@ -14030,14 +13912,10 @@ declare const app: Elysia<"", {
|
|
14030
13912
|
hookType: import("@package/resources/enums").BOOST;
|
14031
13913
|
boostTokenChainId: number;
|
14032
13914
|
boostTokenAddress: string;
|
14033
|
-
boostTokenSymbol?: string | undefined;
|
14034
|
-
boostTokenDecimals?: number | undefined;
|
14035
13915
|
boostMultiplicator: number;
|
14036
13916
|
} | {
|
14037
13917
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14038
13918
|
boostTokenAddress: string;
|
14039
|
-
boostTokenDecimals?: number | undefined;
|
14040
|
-
boostTokenSymbol?: string | undefined;
|
14041
13919
|
boostTokenChainId: number;
|
14042
13920
|
boostTokenThreshold: number;
|
14043
13921
|
boostConfiguration: {
|
@@ -14060,8 +13938,6 @@ declare const app: Elysia<"", {
|
|
14060
13938
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14061
13939
|
eligibilityTokenChainId: number;
|
14062
13940
|
eligibilityTokenAddress: string;
|
14063
|
-
eligibilityTokenSymbol?: string | undefined;
|
14064
|
-
eligibilityTokenDecimals?: number | undefined;
|
14065
13941
|
eligibilityTokenThreshold: number;
|
14066
13942
|
eligibilityDuration: number;
|
14067
13943
|
} | {
|
@@ -14215,13 +14091,13 @@ declare const app: Elysia<"", {
|
|
14215
14091
|
};
|
14216
14092
|
} | undefined;
|
14217
14093
|
}) | ({
|
14218
|
-
campaignType: import("@package/resources/enums").
|
14094
|
+
campaignType: import("@package/resources/enums").MULTILOG;
|
14219
14095
|
whitelist: string[];
|
14220
14096
|
blacklist: string[];
|
14221
14097
|
endTimestamp: number;
|
14222
14098
|
url?: string | undefined;
|
14223
|
-
|
14224
|
-
|
14099
|
+
composedCampaigns: any[];
|
14100
|
+
composedCampaignsCompute: string;
|
14225
14101
|
} & {
|
14226
14102
|
rewardToken: string;
|
14227
14103
|
amount: string;
|
@@ -14244,14 +14120,10 @@ declare const app: Elysia<"", {
|
|
14244
14120
|
hookType: import("@package/resources/enums").BOOST;
|
14245
14121
|
boostTokenChainId: number;
|
14246
14122
|
boostTokenAddress: string;
|
14247
|
-
boostTokenSymbol?: string | undefined;
|
14248
|
-
boostTokenDecimals?: number | undefined;
|
14249
14123
|
boostMultiplicator: number;
|
14250
14124
|
} | {
|
14251
14125
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14252
14126
|
boostTokenAddress: string;
|
14253
|
-
boostTokenDecimals?: number | undefined;
|
14254
|
-
boostTokenSymbol?: string | undefined;
|
14255
14127
|
boostTokenChainId: number;
|
14256
14128
|
boostTokenThreshold: number;
|
14257
14129
|
boostConfiguration: {
|
@@ -14274,8 +14146,6 @@ declare const app: Elysia<"", {
|
|
14274
14146
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14275
14147
|
eligibilityTokenChainId: number;
|
14276
14148
|
eligibilityTokenAddress: string;
|
14277
|
-
eligibilityTokenSymbol?: string | undefined;
|
14278
|
-
eligibilityTokenDecimals?: number | undefined;
|
14279
14149
|
eligibilityTokenThreshold: number;
|
14280
14150
|
eligibilityDuration: number;
|
14281
14151
|
} | {
|
@@ -14429,16 +14299,18 @@ declare const app: Elysia<"", {
|
|
14429
14299
|
};
|
14430
14300
|
} | undefined;
|
14431
14301
|
}) | ({
|
14432
|
-
campaignType: import("@package/resources/enums").
|
14302
|
+
campaignType: import("@package/resources/enums").LOCKER;
|
14433
14303
|
whitelist: string[];
|
14434
14304
|
blacklist: string[];
|
14435
14305
|
endTimestamp: number;
|
14436
14306
|
url?: string | undefined;
|
14437
|
-
|
14307
|
+
hasSlots: boolean;
|
14308
|
+
lockEvent: any;
|
14309
|
+
extendLockEvent?: any;
|
14310
|
+
unlockEvent: any;
|
14311
|
+
curveParameters: any;
|
14312
|
+
lockerContract: string;
|
14438
14313
|
forwarders: string[];
|
14439
|
-
apr: string;
|
14440
|
-
rewardTokenPricing: boolean;
|
14441
|
-
targetTokenPricing: boolean;
|
14442
14314
|
} & {
|
14443
14315
|
rewardToken: string;
|
14444
14316
|
amount: string;
|
@@ -14461,14 +14333,10 @@ declare const app: Elysia<"", {
|
|
14461
14333
|
hookType: import("@package/resources/enums").BOOST;
|
14462
14334
|
boostTokenChainId: number;
|
14463
14335
|
boostTokenAddress: string;
|
14464
|
-
boostTokenSymbol?: string | undefined;
|
14465
|
-
boostTokenDecimals?: number | undefined;
|
14466
14336
|
boostMultiplicator: number;
|
14467
14337
|
} | {
|
14468
14338
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14469
14339
|
boostTokenAddress: string;
|
14470
|
-
boostTokenDecimals?: number | undefined;
|
14471
|
-
boostTokenSymbol?: string | undefined;
|
14472
14340
|
boostTokenChainId: number;
|
14473
14341
|
boostTokenThreshold: number;
|
14474
14342
|
boostConfiguration: {
|
@@ -14491,8 +14359,6 @@ declare const app: Elysia<"", {
|
|
14491
14359
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14492
14360
|
eligibilityTokenChainId: number;
|
14493
14361
|
eligibilityTokenAddress: string;
|
14494
|
-
eligibilityTokenSymbol?: string | undefined;
|
14495
|
-
eligibilityTokenDecimals?: number | undefined;
|
14496
14362
|
eligibilityTokenThreshold: number;
|
14497
14363
|
eligibilityDuration: number;
|
14498
14364
|
} | {
|
@@ -14646,13 +14512,12 @@ declare const app: Elysia<"", {
|
|
14646
14512
|
};
|
14647
14513
|
} | undefined;
|
14648
14514
|
}) | ({
|
14649
|
-
campaignType: import("@package/resources/enums").
|
14515
|
+
campaignType: import("@package/resources/enums").CONVEX;
|
14650
14516
|
whitelist: string[];
|
14651
14517
|
blacklist: string[];
|
14652
14518
|
endTimestamp: number;
|
14653
14519
|
url?: string | undefined;
|
14654
14520
|
targetToken: string;
|
14655
|
-
forwarders: string[];
|
14656
14521
|
} & {
|
14657
14522
|
rewardToken: string;
|
14658
14523
|
amount: string;
|
@@ -14675,14 +14540,10 @@ declare const app: Elysia<"", {
|
|
14675
14540
|
hookType: import("@package/resources/enums").BOOST;
|
14676
14541
|
boostTokenChainId: number;
|
14677
14542
|
boostTokenAddress: string;
|
14678
|
-
boostTokenSymbol?: string | undefined;
|
14679
|
-
boostTokenDecimals?: number | undefined;
|
14680
14543
|
boostMultiplicator: number;
|
14681
14544
|
} | {
|
14682
14545
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14683
14546
|
boostTokenAddress: string;
|
14684
|
-
boostTokenDecimals?: number | undefined;
|
14685
|
-
boostTokenSymbol?: string | undefined;
|
14686
14547
|
boostTokenChainId: number;
|
14687
14548
|
boostTokenThreshold: number;
|
14688
14549
|
boostConfiguration: {
|
@@ -14705,8 +14566,6 @@ declare const app: Elysia<"", {
|
|
14705
14566
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14706
14567
|
eligibilityTokenChainId: number;
|
14707
14568
|
eligibilityTokenAddress: string;
|
14708
|
-
eligibilityTokenSymbol?: string | undefined;
|
14709
|
-
eligibilityTokenDecimals?: number | undefined;
|
14710
14569
|
eligibilityTokenThreshold: number;
|
14711
14570
|
eligibilityDuration: number;
|
14712
14571
|
} | {
|
@@ -14860,15 +14719,12 @@ declare const app: Elysia<"", {
|
|
14860
14719
|
};
|
14861
14720
|
} | undefined;
|
14862
14721
|
}) | ({
|
14863
|
-
campaignType: import("@package/resources/enums").
|
14722
|
+
campaignType: import("@package/resources/enums").STAKEDAO_CURVEVAULT;
|
14864
14723
|
whitelist: string[];
|
14865
14724
|
blacklist: string[];
|
14866
|
-
|
14725
|
+
endTimestamp: number;
|
14867
14726
|
url?: string | undefined;
|
14868
|
-
|
14869
|
-
usesBlockNumber: boolean;
|
14870
|
-
snapshotTimestamp?: number | undefined;
|
14871
|
-
snapshotBlockNumber?: number | undefined;
|
14727
|
+
targetToken: string;
|
14872
14728
|
} & {
|
14873
14729
|
rewardToken: string;
|
14874
14730
|
amount: string;
|
@@ -14891,14 +14747,10 @@ declare const app: Elysia<"", {
|
|
14891
14747
|
hookType: import("@package/resources/enums").BOOST;
|
14892
14748
|
boostTokenChainId: number;
|
14893
14749
|
boostTokenAddress: string;
|
14894
|
-
boostTokenSymbol?: string | undefined;
|
14895
|
-
boostTokenDecimals?: number | undefined;
|
14896
14750
|
boostMultiplicator: number;
|
14897
14751
|
} | {
|
14898
14752
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14899
14753
|
boostTokenAddress: string;
|
14900
|
-
boostTokenDecimals?: number | undefined;
|
14901
|
-
boostTokenSymbol?: string | undefined;
|
14902
14754
|
boostTokenChainId: number;
|
14903
14755
|
boostTokenThreshold: number;
|
14904
14756
|
boostConfiguration: {
|
@@ -14921,8 +14773,6 @@ declare const app: Elysia<"", {
|
|
14921
14773
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14922
14774
|
eligibilityTokenChainId: number;
|
14923
14775
|
eligibilityTokenAddress: string;
|
14924
|
-
eligibilityTokenSymbol?: string | undefined;
|
14925
|
-
eligibilityTokenDecimals?: number | undefined;
|
14926
14776
|
eligibilityTokenThreshold: number;
|
14927
14777
|
eligibilityDuration: number;
|
14928
14778
|
} | {
|
@@ -15076,14 +14926,13 @@ declare const app: Elysia<"", {
|
|
15076
14926
|
};
|
15077
14927
|
} | undefined;
|
15078
14928
|
}) | ({
|
15079
|
-
campaignType: import("@package/resources/enums").
|
14929
|
+
campaignType: import("@package/resources/enums").MULTILOG_DUTCH;
|
15080
14930
|
whitelist: string[];
|
15081
14931
|
blacklist: string[];
|
15082
14932
|
endTimestamp: number;
|
15083
14933
|
url?: string | undefined;
|
15084
|
-
|
15085
|
-
|
15086
|
-
treasury: string;
|
14934
|
+
composedCampaigns: any[];
|
14935
|
+
composedCampaignsCompute: string;
|
15087
14936
|
} & {
|
15088
14937
|
rewardToken: string;
|
15089
14938
|
amount: string;
|
@@ -15106,14 +14955,10 @@ declare const app: Elysia<"", {
|
|
15106
14955
|
hookType: import("@package/resources/enums").BOOST;
|
15107
14956
|
boostTokenChainId: number;
|
15108
14957
|
boostTokenAddress: string;
|
15109
|
-
boostTokenSymbol?: string | undefined;
|
15110
|
-
boostTokenDecimals?: number | undefined;
|
15111
14958
|
boostMultiplicator: number;
|
15112
14959
|
} | {
|
15113
14960
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15114
14961
|
boostTokenAddress: string;
|
15115
|
-
boostTokenDecimals?: number | undefined;
|
15116
|
-
boostTokenSymbol?: string | undefined;
|
15117
14962
|
boostTokenChainId: number;
|
15118
14963
|
boostTokenThreshold: number;
|
15119
14964
|
boostConfiguration: {
|
@@ -15136,8 +14981,6 @@ declare const app: Elysia<"", {
|
|
15136
14981
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15137
14982
|
eligibilityTokenChainId: number;
|
15138
14983
|
eligibilityTokenAddress: string;
|
15139
|
-
eligibilityTokenSymbol?: string | undefined;
|
15140
|
-
eligibilityTokenDecimals?: number | undefined;
|
15141
14984
|
eligibilityTokenThreshold: number;
|
15142
14985
|
eligibilityDuration: number;
|
15143
14986
|
} | {
|
@@ -15291,13 +15134,15 @@ declare const app: Elysia<"", {
|
|
15291
15134
|
};
|
15292
15135
|
} | undefined;
|
15293
15136
|
}) | ({
|
15294
|
-
campaignType: import("@package/resources/enums").
|
15137
|
+
campaignType: import("@package/resources/enums").MORPHOSUPPLY_FIXAPR;
|
15295
15138
|
whitelist: string[];
|
15296
15139
|
blacklist: string[];
|
15297
15140
|
endTimestamp: number;
|
15298
15141
|
url?: string | undefined;
|
15299
|
-
|
15300
|
-
|
15142
|
+
market: string;
|
15143
|
+
apr: string;
|
15144
|
+
rewardTokenPricing: boolean;
|
15145
|
+
targetTokenPricing: boolean;
|
15301
15146
|
} & {
|
15302
15147
|
rewardToken: string;
|
15303
15148
|
amount: string;
|
@@ -15320,14 +15165,10 @@ declare const app: Elysia<"", {
|
|
15320
15165
|
hookType: import("@package/resources/enums").BOOST;
|
15321
15166
|
boostTokenChainId: number;
|
15322
15167
|
boostTokenAddress: string;
|
15323
|
-
boostTokenSymbol?: string | undefined;
|
15324
|
-
boostTokenDecimals?: number | undefined;
|
15325
15168
|
boostMultiplicator: number;
|
15326
15169
|
} | {
|
15327
15170
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15328
15171
|
boostTokenAddress: string;
|
15329
|
-
boostTokenDecimals?: number | undefined;
|
15330
|
-
boostTokenSymbol?: string | undefined;
|
15331
15172
|
boostTokenChainId: number;
|
15332
15173
|
boostTokenThreshold: number;
|
15333
15174
|
boostConfiguration: {
|
@@ -15350,8 +15191,6 @@ declare const app: Elysia<"", {
|
|
15350
15191
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15351
15192
|
eligibilityTokenChainId: number;
|
15352
15193
|
eligibilityTokenAddress: string;
|
15353
|
-
eligibilityTokenSymbol?: string | undefined;
|
15354
|
-
eligibilityTokenDecimals?: number | undefined;
|
15355
15194
|
eligibilityTokenThreshold: number;
|
15356
15195
|
eligibilityDuration: number;
|
15357
15196
|
} | {
|
@@ -15505,13 +15344,12 @@ declare const app: Elysia<"", {
|
|
15505
15344
|
};
|
15506
15345
|
} | undefined;
|
15507
15346
|
}) | ({
|
15508
|
-
campaignType: import("@package/resources/enums").
|
15347
|
+
campaignType: import("@package/resources/enums").MORPHOBORROW;
|
15509
15348
|
whitelist: string[];
|
15510
15349
|
blacklist: string[];
|
15511
15350
|
endTimestamp: number;
|
15512
15351
|
url?: string | undefined;
|
15513
|
-
|
15514
|
-
tokenId: string;
|
15352
|
+
market: string;
|
15515
15353
|
} & {
|
15516
15354
|
rewardToken: string;
|
15517
15355
|
amount: string;
|
@@ -15534,14 +15372,10 @@ declare const app: Elysia<"", {
|
|
15534
15372
|
hookType: import("@package/resources/enums").BOOST;
|
15535
15373
|
boostTokenChainId: number;
|
15536
15374
|
boostTokenAddress: string;
|
15537
|
-
boostTokenSymbol?: string | undefined;
|
15538
|
-
boostTokenDecimals?: number | undefined;
|
15539
15375
|
boostMultiplicator: number;
|
15540
15376
|
} | {
|
15541
15377
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15542
15378
|
boostTokenAddress: string;
|
15543
|
-
boostTokenDecimals?: number | undefined;
|
15544
|
-
boostTokenSymbol?: string | undefined;
|
15545
15379
|
boostTokenChainId: number;
|
15546
15380
|
boostTokenThreshold: number;
|
15547
15381
|
boostConfiguration: {
|
@@ -15564,8 +15398,6 @@ declare const app: Elysia<"", {
|
|
15564
15398
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15565
15399
|
eligibilityTokenChainId: number;
|
15566
15400
|
eligibilityTokenAddress: string;
|
15567
|
-
eligibilityTokenSymbol?: string | undefined;
|
15568
|
-
eligibilityTokenDecimals?: number | undefined;
|
15569
15401
|
eligibilityTokenThreshold: number;
|
15570
15402
|
eligibilityDuration: number;
|
15571
15403
|
} | {
|
@@ -15719,13 +15551,15 @@ declare const app: Elysia<"", {
|
|
15719
15551
|
};
|
15720
15552
|
} | undefined;
|
15721
15553
|
}) | ({
|
15722
|
-
campaignType: import("@package/resources/enums").
|
15554
|
+
campaignType: import("@package/resources/enums").MORPHOBORROW_FIXAPR;
|
15723
15555
|
whitelist: string[];
|
15724
15556
|
blacklist: string[];
|
15725
15557
|
endTimestamp: number;
|
15726
15558
|
url?: string | undefined;
|
15727
|
-
|
15728
|
-
|
15559
|
+
market: string;
|
15560
|
+
apr: string;
|
15561
|
+
rewardTokenPricing: boolean;
|
15562
|
+
targetTokenPricing: boolean;
|
15729
15563
|
} & {
|
15730
15564
|
rewardToken: string;
|
15731
15565
|
amount: string;
|
@@ -15748,14 +15582,10 @@ declare const app: Elysia<"", {
|
|
15748
15582
|
hookType: import("@package/resources/enums").BOOST;
|
15749
15583
|
boostTokenChainId: number;
|
15750
15584
|
boostTokenAddress: string;
|
15751
|
-
boostTokenSymbol?: string | undefined;
|
15752
|
-
boostTokenDecimals?: number | undefined;
|
15753
15585
|
boostMultiplicator: number;
|
15754
15586
|
} | {
|
15755
15587
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15756
15588
|
boostTokenAddress: string;
|
15757
|
-
boostTokenDecimals?: number | undefined;
|
15758
|
-
boostTokenSymbol?: string | undefined;
|
15759
15589
|
boostTokenChainId: number;
|
15760
15590
|
boostTokenThreshold: number;
|
15761
15591
|
boostConfiguration: {
|
@@ -15778,8 +15608,6 @@ declare const app: Elysia<"", {
|
|
15778
15608
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15779
15609
|
eligibilityTokenChainId: number;
|
15780
15610
|
eligibilityTokenAddress: string;
|
15781
|
-
eligibilityTokenSymbol?: string | undefined;
|
15782
|
-
eligibilityTokenDecimals?: number | undefined;
|
15783
15611
|
eligibilityTokenThreshold: number;
|
15784
15612
|
eligibilityDuration: number;
|
15785
15613
|
} | {
|
@@ -15933,14 +15761,12 @@ declare const app: Elysia<"", {
|
|
15933
15761
|
};
|
15934
15762
|
} | undefined;
|
15935
15763
|
}) | ({
|
15764
|
+
campaignType: import("@package/resources/enums").MORPHOCOLLATERAL;
|
15765
|
+
whitelist: string[];
|
15936
15766
|
blacklist: string[];
|
15937
|
-
campaignType: import("@package/resources/enums").EULER;
|
15938
|
-
collateralAddress?: string | undefined;
|
15939
|
-
subCampaignType: import("@package/resources/enums").EulerSubCampaignType;
|
15940
15767
|
endTimestamp: number;
|
15941
|
-
|
15942
|
-
|
15943
|
-
whitelist: string[];
|
15768
|
+
url?: string | undefined;
|
15769
|
+
market: string;
|
15944
15770
|
} & {
|
15945
15771
|
rewardToken: string;
|
15946
15772
|
amount: string;
|
@@ -15963,14 +15789,10 @@ declare const app: Elysia<"", {
|
|
15963
15789
|
hookType: import("@package/resources/enums").BOOST;
|
15964
15790
|
boostTokenChainId: number;
|
15965
15791
|
boostTokenAddress: string;
|
15966
|
-
boostTokenSymbol?: string | undefined;
|
15967
|
-
boostTokenDecimals?: number | undefined;
|
15968
15792
|
boostMultiplicator: number;
|
15969
15793
|
} | {
|
15970
15794
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15971
15795
|
boostTokenAddress: string;
|
15972
|
-
boostTokenDecimals?: number | undefined;
|
15973
|
-
boostTokenSymbol?: string | undefined;
|
15974
15796
|
boostTokenChainId: number;
|
15975
15797
|
boostTokenThreshold: number;
|
15976
15798
|
boostConfiguration: {
|
@@ -15993,8 +15815,6 @@ declare const app: Elysia<"", {
|
|
15993
15815
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15994
15816
|
eligibilityTokenChainId: number;
|
15995
15817
|
eligibilityTokenAddress: string;
|
15996
|
-
eligibilityTokenSymbol?: string | undefined;
|
15997
|
-
eligibilityTokenDecimals?: number | undefined;
|
15998
15818
|
eligibilityTokenThreshold: number;
|
15999
15819
|
eligibilityDuration: number;
|
16000
15820
|
} | {
|
@@ -16148,17 +15968,15 @@ declare const app: Elysia<"", {
|
|
16148
15968
|
};
|
16149
15969
|
} | undefined;
|
16150
15970
|
}) | ({
|
16151
|
-
campaignType: import("@package/resources/enums").
|
15971
|
+
campaignType: import("@package/resources/enums").MORPHOCOLLATERAL_FIXAPR;
|
16152
15972
|
whitelist: string[];
|
16153
15973
|
blacklist: string[];
|
16154
15974
|
endTimestamp: number;
|
16155
15975
|
url?: string | undefined;
|
16156
|
-
|
16157
|
-
|
16158
|
-
|
16159
|
-
|
16160
|
-
expectedChecks: any[];
|
16161
|
-
forwarders: string[];
|
15976
|
+
market: string;
|
15977
|
+
apr: string;
|
15978
|
+
rewardTokenPricing: boolean;
|
15979
|
+
targetTokenPricing: boolean;
|
16162
15980
|
} & {
|
16163
15981
|
rewardToken: string;
|
16164
15982
|
amount: string;
|
@@ -16181,14 +15999,10 @@ declare const app: Elysia<"", {
|
|
16181
15999
|
hookType: import("@package/resources/enums").BOOST;
|
16182
16000
|
boostTokenChainId: number;
|
16183
16001
|
boostTokenAddress: string;
|
16184
|
-
boostTokenSymbol?: string | undefined;
|
16185
|
-
boostTokenDecimals?: number | undefined;
|
16186
16002
|
boostMultiplicator: number;
|
16187
16003
|
} | {
|
16188
16004
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
16189
16005
|
boostTokenAddress: string;
|
16190
|
-
boostTokenDecimals?: number | undefined;
|
16191
|
-
boostTokenSymbol?: string | undefined;
|
16192
16006
|
boostTokenChainId: number;
|
16193
16007
|
boostTokenThreshold: number;
|
16194
16008
|
boostConfiguration: {
|
@@ -16211,8 +16025,6 @@ declare const app: Elysia<"", {
|
|
16211
16025
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
16212
16026
|
eligibilityTokenChainId: number;
|
16213
16027
|
eligibilityTokenAddress: string;
|
16214
|
-
eligibilityTokenSymbol?: string | undefined;
|
16215
|
-
eligibilityTokenDecimals?: number | undefined;
|
16216
16028
|
eligibilityTokenThreshold: number;
|
16217
16029
|
eligibilityDuration: number;
|
16218
16030
|
} | {
|
@@ -16366,12 +16178,12 @@ declare const app: Elysia<"", {
|
|
16366
16178
|
};
|
16367
16179
|
} | undefined;
|
16368
16180
|
}) | ({
|
16369
|
-
campaignType: import("@package/resources/enums").
|
16181
|
+
campaignType: import("@package/resources/enums").FRAXLEND_BORROW;
|
16370
16182
|
whitelist: string[];
|
16371
16183
|
blacklist: string[];
|
16372
16184
|
endTimestamp: number;
|
16373
16185
|
url?: string | undefined;
|
16374
|
-
|
16186
|
+
targetToken: string;
|
16375
16187
|
} & {
|
16376
16188
|
rewardToken: string;
|
16377
16189
|
amount: string;
|
@@ -16394,14 +16206,10 @@ declare const app: Elysia<"", {
|
|
16394
16206
|
hookType: import("@package/resources/enums").BOOST;
|
16395
16207
|
boostTokenChainId: number;
|
16396
16208
|
boostTokenAddress: string;
|
16397
|
-
boostTokenSymbol?: string | undefined;
|
16398
|
-
boostTokenDecimals?: number | undefined;
|
16399
16209
|
boostMultiplicator: number;
|
16400
16210
|
} | {
|
16401
16211
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
16402
16212
|
boostTokenAddress: string;
|
16403
|
-
boostTokenDecimals?: number | undefined;
|
16404
|
-
boostTokenSymbol?: string | undefined;
|
16405
16213
|
boostTokenChainId: number;
|
16406
16214
|
boostTokenThreshold: number;
|
16407
16215
|
boostConfiguration: {
|
@@ -16424,8 +16232,6 @@ declare const app: Elysia<"", {
|
|
16424
16232
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
16425
16233
|
eligibilityTokenChainId: number;
|
16426
16234
|
eligibilityTokenAddress: string;
|
16427
|
-
eligibilityTokenSymbol?: string | undefined;
|
16428
|
-
eligibilityTokenDecimals?: number | undefined;
|
16429
16235
|
eligibilityTokenThreshold: number;
|
16430
16236
|
eligibilityDuration: number;
|
16431
16237
|
} | {
|
@@ -16579,12 +16385,15 @@ declare const app: Elysia<"", {
|
|
16579
16385
|
};
|
16580
16386
|
} | undefined;
|
16581
16387
|
}) | ({
|
16582
|
-
campaignType: import("@package/resources/enums").
|
16388
|
+
campaignType: import("@package/resources/enums").FRAXLEND_BORROW_FIXAPR;
|
16583
16389
|
whitelist: string[];
|
16584
16390
|
blacklist: string[];
|
16585
16391
|
endTimestamp: number;
|
16586
16392
|
url?: string | undefined;
|
16587
|
-
|
16393
|
+
targetToken: string;
|
16394
|
+
apr: string;
|
16395
|
+
rewardTokenPricing: boolean;
|
16396
|
+
targetTokenPricing: boolean;
|
16588
16397
|
} & {
|
16589
16398
|
rewardToken: string;
|
16590
16399
|
amount: string;
|
@@ -16607,14 +16416,10 @@ declare const app: Elysia<"", {
|
|
16607
16416
|
hookType: import("@package/resources/enums").BOOST;
|
16608
16417
|
boostTokenChainId: number;
|
16609
16418
|
boostTokenAddress: string;
|
16610
|
-
boostTokenSymbol?: string | undefined;
|
16611
|
-
boostTokenDecimals?: number | undefined;
|
16612
16419
|
boostMultiplicator: number;
|
16613
16420
|
} | {
|
16614
16421
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
16615
16422
|
boostTokenAddress: string;
|
16616
|
-
boostTokenDecimals?: number | undefined;
|
16617
|
-
boostTokenSymbol?: string | undefined;
|
16618
16423
|
boostTokenChainId: number;
|
16619
16424
|
boostTokenThreshold: number;
|
16620
16425
|
boostConfiguration: {
|
@@ -16637,8 +16442,6 @@ declare const app: Elysia<"", {
|
|
16637
16442
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
16638
16443
|
eligibilityTokenChainId: number;
|
16639
16444
|
eligibilityTokenAddress: string;
|
16640
|
-
eligibilityTokenSymbol?: string | undefined;
|
16641
|
-
eligibilityTokenDecimals?: number | undefined;
|
16642
16445
|
eligibilityTokenThreshold: number;
|
16643
16446
|
eligibilityDuration: number;
|
16644
16447
|
} | {
|
@@ -16792,7 +16595,7 @@ declare const app: Elysia<"", {
|
|
16792
16595
|
};
|
16793
16596
|
} | undefined;
|
16794
16597
|
}) | ({
|
16795
|
-
campaignType: import("@package/resources/enums").
|
16598
|
+
campaignType: import("@package/resources/enums").FRAXLEND_COLLATERAL;
|
16796
16599
|
whitelist: string[];
|
16797
16600
|
blacklist: string[];
|
16798
16601
|
endTimestamp: number;
|
@@ -16820,14 +16623,10 @@ declare const app: Elysia<"", {
|
|
16820
16623
|
hookType: import("@package/resources/enums").BOOST;
|
16821
16624
|
boostTokenChainId: number;
|
16822
16625
|
boostTokenAddress: string;
|
16823
|
-
boostTokenSymbol?: string | undefined;
|
16824
|
-
boostTokenDecimals?: number | undefined;
|
16825
16626
|
boostMultiplicator: number;
|
16826
16627
|
} | {
|
16827
16628
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
16828
16629
|
boostTokenAddress: string;
|
16829
|
-
boostTokenDecimals?: number | undefined;
|
16830
|
-
boostTokenSymbol?: string | undefined;
|
16831
16630
|
boostTokenChainId: number;
|
16832
16631
|
boostTokenThreshold: number;
|
16833
16632
|
boostConfiguration: {
|
@@ -16850,8 +16649,6 @@ declare const app: Elysia<"", {
|
|
16850
16649
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
16851
16650
|
eligibilityTokenChainId: number;
|
16852
16651
|
eligibilityTokenAddress: string;
|
16853
|
-
eligibilityTokenSymbol?: string | undefined;
|
16854
|
-
eligibilityTokenDecimals?: number | undefined;
|
16855
16652
|
eligibilityTokenThreshold: number;
|
16856
16653
|
eligibilityDuration: number;
|
16857
16654
|
} | {
|
@@ -17005,7 +16802,7 @@ declare const app: Elysia<"", {
|
|
17005
16802
|
};
|
17006
16803
|
} | undefined;
|
17007
16804
|
}) | ({
|
17008
|
-
campaignType: import("@package/resources/enums").
|
16805
|
+
campaignType: import("@package/resources/enums").FRAXLEND_COLLATERAL_FIXAPR;
|
17009
16806
|
whitelist: string[];
|
17010
16807
|
blacklist: string[];
|
17011
16808
|
endTimestamp: number;
|
@@ -17036,14 +16833,10 @@ declare const app: Elysia<"", {
|
|
17036
16833
|
hookType: import("@package/resources/enums").BOOST;
|
17037
16834
|
boostTokenChainId: number;
|
17038
16835
|
boostTokenAddress: string;
|
17039
|
-
boostTokenSymbol?: string | undefined;
|
17040
|
-
boostTokenDecimals?: number | undefined;
|
17041
16836
|
boostMultiplicator: number;
|
17042
16837
|
} | {
|
17043
16838
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17044
16839
|
boostTokenAddress: string;
|
17045
|
-
boostTokenDecimals?: number | undefined;
|
17046
|
-
boostTokenSymbol?: string | undefined;
|
17047
16840
|
boostTokenChainId: number;
|
17048
16841
|
boostTokenThreshold: number;
|
17049
16842
|
boostConfiguration: {
|
@@ -17066,8 +16859,6 @@ declare const app: Elysia<"", {
|
|
17066
16859
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17067
16860
|
eligibilityTokenChainId: number;
|
17068
16861
|
eligibilityTokenAddress: string;
|
17069
|
-
eligibilityTokenSymbol?: string | undefined;
|
17070
|
-
eligibilityTokenDecimals?: number | undefined;
|
17071
16862
|
eligibilityTokenThreshold: number;
|
17072
16863
|
eligibilityDuration: number;
|
17073
16864
|
} | {
|
@@ -17221,7 +17012,7 @@ declare const app: Elysia<"", {
|
|
17221
17012
|
};
|
17222
17013
|
} | undefined;
|
17223
17014
|
}) | ({
|
17224
|
-
campaignType: import("@package/resources/enums").
|
17015
|
+
campaignType: import("@package/resources/enums").STAKEDAO_VAULT;
|
17225
17016
|
whitelist: string[];
|
17226
17017
|
blacklist: string[];
|
17227
17018
|
endTimestamp: number;
|
@@ -17249,14 +17040,10 @@ declare const app: Elysia<"", {
|
|
17249
17040
|
hookType: import("@package/resources/enums").BOOST;
|
17250
17041
|
boostTokenChainId: number;
|
17251
17042
|
boostTokenAddress: string;
|
17252
|
-
boostTokenSymbol?: string | undefined;
|
17253
|
-
boostTokenDecimals?: number | undefined;
|
17254
17043
|
boostMultiplicator: number;
|
17255
17044
|
} | {
|
17256
17045
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17257
17046
|
boostTokenAddress: string;
|
17258
|
-
boostTokenDecimals?: number | undefined;
|
17259
|
-
boostTokenSymbol?: string | undefined;
|
17260
17047
|
boostTokenChainId: number;
|
17261
17048
|
boostTokenThreshold: number;
|
17262
17049
|
boostConfiguration: {
|
@@ -17279,8 +17066,6 @@ declare const app: Elysia<"", {
|
|
17279
17066
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17280
17067
|
eligibilityTokenChainId: number;
|
17281
17068
|
eligibilityTokenAddress: string;
|
17282
|
-
eligibilityTokenSymbol?: string | undefined;
|
17283
|
-
eligibilityTokenDecimals?: number | undefined;
|
17284
17069
|
eligibilityTokenThreshold: number;
|
17285
17070
|
eligibilityDuration: number;
|
17286
17071
|
} | {
|
@@ -17434,15 +17219,12 @@ declare const app: Elysia<"", {
|
|
17434
17219
|
};
|
17435
17220
|
} | undefined;
|
17436
17221
|
}) | ({
|
17437
|
-
campaignType: import("@package/resources/enums").
|
17222
|
+
campaignType: import("@package/resources/enums").SYMBIOTIC_VAULT;
|
17438
17223
|
whitelist: string[];
|
17439
17224
|
blacklist: string[];
|
17440
17225
|
endTimestamp: number;
|
17441
17226
|
url?: string | undefined;
|
17442
|
-
|
17443
|
-
apr: string;
|
17444
|
-
rewardTokenPricing: boolean;
|
17445
|
-
targetTokenPricing: boolean;
|
17227
|
+
vaultContract: string;
|
17446
17228
|
} & {
|
17447
17229
|
rewardToken: string;
|
17448
17230
|
amount: string;
|
@@ -17465,14 +17247,10 @@ declare const app: Elysia<"", {
|
|
17465
17247
|
hookType: import("@package/resources/enums").BOOST;
|
17466
17248
|
boostTokenChainId: number;
|
17467
17249
|
boostTokenAddress: string;
|
17468
|
-
boostTokenSymbol?: string | undefined;
|
17469
|
-
boostTokenDecimals?: number | undefined;
|
17470
17250
|
boostMultiplicator: number;
|
17471
17251
|
} | {
|
17472
17252
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17473
17253
|
boostTokenAddress: string;
|
17474
|
-
boostTokenDecimals?: number | undefined;
|
17475
|
-
boostTokenSymbol?: string | undefined;
|
17476
17254
|
boostTokenChainId: number;
|
17477
17255
|
boostTokenThreshold: number;
|
17478
17256
|
boostConfiguration: {
|
@@ -17495,8 +17273,6 @@ declare const app: Elysia<"", {
|
|
17495
17273
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17496
17274
|
eligibilityTokenChainId: number;
|
17497
17275
|
eligibilityTokenAddress: string;
|
17498
|
-
eligibilityTokenSymbol?: string | undefined;
|
17499
|
-
eligibilityTokenDecimals?: number | undefined;
|
17500
17276
|
eligibilityTokenThreshold: number;
|
17501
17277
|
eligibilityDuration: number;
|
17502
17278
|
} | {
|
@@ -17650,20 +17426,12 @@ declare const app: Elysia<"", {
|
|
17650
17426
|
};
|
17651
17427
|
} | undefined;
|
17652
17428
|
}) | ({
|
17653
|
-
campaignType: import("@package/resources/enums").
|
17429
|
+
campaignType: import("@package/resources/enums").MORPHOVAULT;
|
17654
17430
|
whitelist: string[];
|
17655
17431
|
blacklist: string[];
|
17656
17432
|
endTimestamp: number;
|
17657
17433
|
url?: string | undefined;
|
17658
|
-
|
17659
|
-
isOutOfRangeIncentivized: boolean;
|
17660
|
-
weightFees: number;
|
17661
|
-
weightToken0: number;
|
17662
|
-
weightToken1: number;
|
17663
|
-
lowerPriceBond?: number | undefined;
|
17664
|
-
upperPriceBond?: number | undefined;
|
17665
|
-
lowerPriceTolerance?: number | undefined;
|
17666
|
-
upperPriceTolerance?: number | undefined;
|
17434
|
+
targetToken: string;
|
17667
17435
|
} & {
|
17668
17436
|
rewardToken: string;
|
17669
17437
|
amount: string;
|
@@ -17686,14 +17454,10 @@ declare const app: Elysia<"", {
|
|
17686
17454
|
hookType: import("@package/resources/enums").BOOST;
|
17687
17455
|
boostTokenChainId: number;
|
17688
17456
|
boostTokenAddress: string;
|
17689
|
-
boostTokenSymbol?: string | undefined;
|
17690
|
-
boostTokenDecimals?: number | undefined;
|
17691
17457
|
boostMultiplicator: number;
|
17692
17458
|
} | {
|
17693
17459
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17694
17460
|
boostTokenAddress: string;
|
17695
|
-
boostTokenDecimals?: number | undefined;
|
17696
|
-
boostTokenSymbol?: string | undefined;
|
17697
17461
|
boostTokenChainId: number;
|
17698
17462
|
boostTokenThreshold: number;
|
17699
17463
|
boostConfiguration: {
|
@@ -17716,8 +17480,6 @@ declare const app: Elysia<"", {
|
|
17716
17480
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17717
17481
|
eligibilityTokenChainId: number;
|
17718
17482
|
eligibilityTokenAddress: string;
|
17719
|
-
eligibilityTokenSymbol?: string | undefined;
|
17720
|
-
eligibilityTokenDecimals?: number | undefined;
|
17721
17483
|
eligibilityTokenThreshold: number;
|
17722
17484
|
eligibilityDuration: number;
|
17723
17485
|
} | {
|
@@ -17871,15 +17633,12 @@ declare const app: Elysia<"", {
|
|
17871
17633
|
};
|
17872
17634
|
} | undefined;
|
17873
17635
|
}) | ({
|
17874
|
-
campaignType: import("@package/resources/enums").
|
17636
|
+
campaignType: import("@package/resources/enums").MORPHOSUPPLY_SINGLETOKEN;
|
17875
17637
|
whitelist: string[];
|
17876
17638
|
blacklist: string[];
|
17877
17639
|
endTimestamp: number;
|
17878
17640
|
url?: string | undefined;
|
17879
|
-
subCampaignType: import("@package/resources/enums").HyperDriveSubCampaignType;
|
17880
|
-
tokenId: string;
|
17881
17641
|
targetToken: string;
|
17882
|
-
forwarders: string[];
|
17883
17642
|
} & {
|
17884
17643
|
rewardToken: string;
|
17885
17644
|
amount: string;
|
@@ -17902,14 +17661,10 @@ declare const app: Elysia<"", {
|
|
17902
17661
|
hookType: import("@package/resources/enums").BOOST;
|
17903
17662
|
boostTokenChainId: number;
|
17904
17663
|
boostTokenAddress: string;
|
17905
|
-
boostTokenSymbol?: string | undefined;
|
17906
|
-
boostTokenDecimals?: number | undefined;
|
17907
17664
|
boostMultiplicator: number;
|
17908
17665
|
} | {
|
17909
17666
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17910
17667
|
boostTokenAddress: string;
|
17911
|
-
boostTokenDecimals?: number | undefined;
|
17912
|
-
boostTokenSymbol?: string | undefined;
|
17913
17668
|
boostTokenChainId: number;
|
17914
17669
|
boostTokenThreshold: number;
|
17915
17670
|
boostConfiguration: {
|
@@ -17932,8 +17687,6 @@ declare const app: Elysia<"", {
|
|
17932
17687
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17933
17688
|
eligibilityTokenChainId: number;
|
17934
17689
|
eligibilityTokenAddress: string;
|
17935
|
-
eligibilityTokenSymbol?: string | undefined;
|
17936
|
-
eligibilityTokenDecimals?: number | undefined;
|
17937
17690
|
eligibilityTokenThreshold: number;
|
17938
17691
|
eligibilityDuration: number;
|
17939
17692
|
} | {
|
@@ -18087,18 +17840,12 @@ declare const app: Elysia<"", {
|
|
18087
17840
|
};
|
18088
17841
|
} | undefined;
|
18089
17842
|
}) | ({
|
18090
|
-
campaignType: import("@package/resources/enums").
|
17843
|
+
campaignType: import("@package/resources/enums").MORPHOBORROW_SINGLETOKEN;
|
18091
17844
|
whitelist: string[];
|
18092
17845
|
blacklist: string[];
|
18093
17846
|
endTimestamp: number;
|
18094
17847
|
url?: string | undefined;
|
18095
|
-
subCampaignType: import("@package/resources/enums").HyperDriveSubCampaignType;
|
18096
|
-
tokenId: string;
|
18097
17848
|
targetToken: string;
|
18098
|
-
forwarders: string[];
|
18099
|
-
apr: string;
|
18100
|
-
rewardTokenPricing: boolean;
|
18101
|
-
targetTokenPricing: boolean;
|
18102
17849
|
} & {
|
18103
17850
|
rewardToken: string;
|
18104
17851
|
amount: string;
|
@@ -18121,14 +17868,10 @@ declare const app: Elysia<"", {
|
|
18121
17868
|
hookType: import("@package/resources/enums").BOOST;
|
18122
17869
|
boostTokenChainId: number;
|
18123
17870
|
boostTokenAddress: string;
|
18124
|
-
boostTokenSymbol?: string | undefined;
|
18125
|
-
boostTokenDecimals?: number | undefined;
|
18126
17871
|
boostMultiplicator: number;
|
18127
17872
|
} | {
|
18128
17873
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18129
17874
|
boostTokenAddress: string;
|
18130
|
-
boostTokenDecimals?: number | undefined;
|
18131
|
-
boostTokenSymbol?: string | undefined;
|
18132
17875
|
boostTokenChainId: number;
|
18133
17876
|
boostTokenThreshold: number;
|
18134
17877
|
boostConfiguration: {
|
@@ -18151,8 +17894,6 @@ declare const app: Elysia<"", {
|
|
18151
17894
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18152
17895
|
eligibilityTokenChainId: number;
|
18153
17896
|
eligibilityTokenAddress: string;
|
18154
|
-
eligibilityTokenSymbol?: string | undefined;
|
18155
|
-
eligibilityTokenDecimals?: number | undefined;
|
18156
17897
|
eligibilityTokenThreshold: number;
|
18157
17898
|
eligibilityDuration: number;
|
18158
17899
|
} | {
|
@@ -18306,9 +18047,12 @@ declare const app: Elysia<"", {
|
|
18306
18047
|
};
|
18307
18048
|
} | undefined;
|
18308
18049
|
}) | ({
|
18309
|
-
campaignType: import("@package/resources/enums").
|
18310
|
-
|
18050
|
+
campaignType: import("@package/resources/enums").MORPHOCOLLATERAL_SINGLETOKEN;
|
18051
|
+
whitelist: string[];
|
18052
|
+
blacklist: string[];
|
18053
|
+
endTimestamp: number;
|
18311
18054
|
url?: string | undefined;
|
18055
|
+
targetToken: string;
|
18312
18056
|
} & {
|
18313
18057
|
rewardToken: string;
|
18314
18058
|
amount: string;
|
@@ -18331,14 +18075,10 @@ declare const app: Elysia<"", {
|
|
18331
18075
|
hookType: import("@package/resources/enums").BOOST;
|
18332
18076
|
boostTokenChainId: number;
|
18333
18077
|
boostTokenAddress: string;
|
18334
|
-
boostTokenSymbol?: string | undefined;
|
18335
|
-
boostTokenDecimals?: number | undefined;
|
18336
18078
|
boostMultiplicator: number;
|
18337
18079
|
} | {
|
18338
18080
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18339
18081
|
boostTokenAddress: string;
|
18340
|
-
boostTokenDecimals?: number | undefined;
|
18341
|
-
boostTokenSymbol?: string | undefined;
|
18342
18082
|
boostTokenChainId: number;
|
18343
18083
|
boostTokenThreshold: number;
|
18344
18084
|
boostConfiguration: {
|
@@ -18361,8 +18101,6 @@ declare const app: Elysia<"", {
|
|
18361
18101
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18362
18102
|
eligibilityTokenChainId: number;
|
18363
18103
|
eligibilityTokenAddress: string;
|
18364
|
-
eligibilityTokenSymbol?: string | undefined;
|
18365
|
-
eligibilityTokenDecimals?: number | undefined;
|
18366
18104
|
eligibilityTokenThreshold: number;
|
18367
18105
|
eligibilityDuration: number;
|
18368
18106
|
} | {
|
@@ -18516,18 +18254,20 @@ declare const app: Elysia<"", {
|
|
18516
18254
|
};
|
18517
18255
|
} | undefined;
|
18518
18256
|
}) | ({
|
18519
|
-
campaignType: import("@package/resources/enums").
|
18257
|
+
campaignType: import("@package/resources/enums").EKUBO;
|
18520
18258
|
whitelist: string[];
|
18521
18259
|
blacklist: string[];
|
18522
18260
|
endTimestamp: number;
|
18523
18261
|
url?: string | undefined;
|
18524
|
-
|
18525
|
-
|
18526
|
-
|
18527
|
-
|
18528
|
-
|
18529
|
-
|
18530
|
-
|
18262
|
+
poolId: string;
|
18263
|
+
isOutOfRangeIncentivized: boolean;
|
18264
|
+
weightFees: number;
|
18265
|
+
weightToken0: number;
|
18266
|
+
weightToken1: number;
|
18267
|
+
lowerPriceBond?: number | undefined;
|
18268
|
+
upperPriceBond?: number | undefined;
|
18269
|
+
lowerPriceTolerance?: number | undefined;
|
18270
|
+
upperPriceTolerance?: number | undefined;
|
18531
18271
|
} & {
|
18532
18272
|
rewardToken: string;
|
18533
18273
|
amount: string;
|
@@ -18550,14 +18290,10 @@ declare const app: Elysia<"", {
|
|
18550
18290
|
hookType: import("@package/resources/enums").BOOST;
|
18551
18291
|
boostTokenChainId: number;
|
18552
18292
|
boostTokenAddress: string;
|
18553
|
-
boostTokenSymbol?: string | undefined;
|
18554
|
-
boostTokenDecimals?: number | undefined;
|
18555
18293
|
boostMultiplicator: number;
|
18556
18294
|
} | {
|
18557
18295
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18558
18296
|
boostTokenAddress: string;
|
18559
|
-
boostTokenDecimals?: number | undefined;
|
18560
|
-
boostTokenSymbol?: string | undefined;
|
18561
18297
|
boostTokenChainId: number;
|
18562
18298
|
boostTokenThreshold: number;
|
18563
18299
|
boostConfiguration: {
|
@@ -18580,8 +18316,6 @@ declare const app: Elysia<"", {
|
|
18580
18316
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18581
18317
|
eligibilityTokenChainId: number;
|
18582
18318
|
eligibilityTokenAddress: string;
|
18583
|
-
eligibilityTokenSymbol?: string | undefined;
|
18584
|
-
eligibilityTokenDecimals?: number | undefined;
|
18585
18319
|
eligibilityTokenThreshold: number;
|
18586
18320
|
eligibilityDuration: number;
|
18587
18321
|
} | {
|
@@ -18735,12 +18469,13 @@ declare const app: Elysia<"", {
|
|
18735
18469
|
};
|
18736
18470
|
} | undefined;
|
18737
18471
|
}) | ({
|
18738
|
-
campaignType: import("@package/resources/enums").
|
18472
|
+
campaignType: import("@package/resources/enums").EKUBO_POSITIONMANAGER;
|
18473
|
+
whitelist: string[];
|
18474
|
+
blacklist: string[];
|
18739
18475
|
endTimestamp: number;
|
18740
18476
|
url?: string | undefined;
|
18741
|
-
|
18742
|
-
|
18743
|
-
toAddress: string;
|
18477
|
+
targetToken: string;
|
18478
|
+
tokenId: string;
|
18744
18479
|
} & {
|
18745
18480
|
rewardToken: string;
|
18746
18481
|
amount: string;
|
@@ -18763,14 +18498,10 @@ declare const app: Elysia<"", {
|
|
18763
18498
|
hookType: import("@package/resources/enums").BOOST;
|
18764
18499
|
boostTokenChainId: number;
|
18765
18500
|
boostTokenAddress: string;
|
18766
|
-
boostTokenSymbol?: string | undefined;
|
18767
|
-
boostTokenDecimals?: number | undefined;
|
18768
18501
|
boostMultiplicator: number;
|
18769
18502
|
} | {
|
18770
18503
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18771
18504
|
boostTokenAddress: string;
|
18772
|
-
boostTokenDecimals?: number | undefined;
|
18773
|
-
boostTokenSymbol?: string | undefined;
|
18774
18505
|
boostTokenChainId: number;
|
18775
18506
|
boostTokenThreshold: number;
|
18776
18507
|
boostConfiguration: {
|
@@ -18793,8 +18524,6 @@ declare const app: Elysia<"", {
|
|
18793
18524
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18794
18525
|
eligibilityTokenChainId: number;
|
18795
18526
|
eligibilityTokenAddress: string;
|
18796
|
-
eligibilityTokenSymbol?: string | undefined;
|
18797
|
-
eligibilityTokenDecimals?: number | undefined;
|
18798
18527
|
eligibilityTokenThreshold: number;
|
18799
18528
|
eligibilityDuration: number;
|
18800
18529
|
} | {
|
@@ -18948,13 +18677,12 @@ declare const app: Elysia<"", {
|
|
18948
18677
|
};
|
18949
18678
|
} | undefined;
|
18950
18679
|
}) | ({
|
18951
|
-
campaignType: import("@package/resources/enums").
|
18680
|
+
campaignType: import("@package/resources/enums").FLUIDVAULT_COLLATERAL;
|
18952
18681
|
whitelist: string[];
|
18953
18682
|
blacklist: string[];
|
18954
18683
|
endTimestamp: number;
|
18955
18684
|
url?: string | undefined;
|
18956
|
-
|
18957
|
-
receiver: string;
|
18685
|
+
vault: string;
|
18958
18686
|
} & {
|
18959
18687
|
rewardToken: string;
|
18960
18688
|
amount: string;
|
@@ -18977,14 +18705,10 @@ declare const app: Elysia<"", {
|
|
18977
18705
|
hookType: import("@package/resources/enums").BOOST;
|
18978
18706
|
boostTokenChainId: number;
|
18979
18707
|
boostTokenAddress: string;
|
18980
|
-
boostTokenSymbol?: string | undefined;
|
18981
|
-
boostTokenDecimals?: number | undefined;
|
18982
18708
|
boostMultiplicator: number;
|
18983
18709
|
} | {
|
18984
18710
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18985
18711
|
boostTokenAddress: string;
|
18986
|
-
boostTokenDecimals?: number | undefined;
|
18987
|
-
boostTokenSymbol?: string | undefined;
|
18988
18712
|
boostTokenChainId: number;
|
18989
18713
|
boostTokenThreshold: number;
|
18990
18714
|
boostConfiguration: {
|
@@ -19007,8 +18731,6 @@ declare const app: Elysia<"", {
|
|
19007
18731
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19008
18732
|
eligibilityTokenChainId: number;
|
19009
18733
|
eligibilityTokenAddress: string;
|
19010
|
-
eligibilityTokenSymbol?: string | undefined;
|
19011
|
-
eligibilityTokenDecimals?: number | undefined;
|
19012
18734
|
eligibilityTokenThreshold: number;
|
19013
18735
|
eligibilityDuration: number;
|
19014
18736
|
} | {
|
@@ -19162,15 +18884,12 @@ declare const app: Elysia<"", {
|
|
19162
18884
|
};
|
19163
18885
|
} | undefined;
|
19164
18886
|
}) | ({
|
19165
|
-
campaignType: import("@package/resources/enums").
|
18887
|
+
campaignType: import("@package/resources/enums").FLUIDVAULT_BORROW;
|
19166
18888
|
whitelist: string[];
|
19167
18889
|
blacklist: string[];
|
19168
18890
|
endTimestamp: number;
|
19169
18891
|
url?: string | undefined;
|
19170
|
-
|
19171
|
-
subCampaignType: import("@package/resources/enums").MorphoSubCampaignType;
|
19172
|
-
targetToken?: string | undefined;
|
19173
|
-
marketId?: string | undefined;
|
18892
|
+
vault: string;
|
19174
18893
|
} & {
|
19175
18894
|
rewardToken: string;
|
19176
18895
|
amount: string;
|
@@ -19193,14 +18912,10 @@ declare const app: Elysia<"", {
|
|
19193
18912
|
hookType: import("@package/resources/enums").BOOST;
|
19194
18913
|
boostTokenChainId: number;
|
19195
18914
|
boostTokenAddress: string;
|
19196
|
-
boostTokenSymbol?: string | undefined;
|
19197
|
-
boostTokenDecimals?: number | undefined;
|
19198
18915
|
boostMultiplicator: number;
|
19199
18916
|
} | {
|
19200
18917
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
19201
18918
|
boostTokenAddress: string;
|
19202
|
-
boostTokenDecimals?: number | undefined;
|
19203
|
-
boostTokenSymbol?: string | undefined;
|
19204
18919
|
boostTokenChainId: number;
|
19205
18920
|
boostTokenThreshold: number;
|
19206
18921
|
boostConfiguration: {
|
@@ -19223,8 +18938,6 @@ declare const app: Elysia<"", {
|
|
19223
18938
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19224
18939
|
eligibilityTokenChainId: number;
|
19225
18940
|
eligibilityTokenAddress: string;
|
19226
|
-
eligibilityTokenSymbol?: string | undefined;
|
19227
|
-
eligibilityTokenDecimals?: number | undefined;
|
19228
18941
|
eligibilityTokenThreshold: number;
|
19229
18942
|
eligibilityDuration: number;
|
19230
18943
|
} | {
|
@@ -19378,12 +19091,12 @@ declare const app: Elysia<"", {
|
|
19378
19091
|
};
|
19379
19092
|
} | undefined;
|
19380
19093
|
}) | ({
|
19381
|
-
campaignType: import("@package/resources/enums").
|
19094
|
+
campaignType: import("@package/resources/enums").CCL_TAC;
|
19382
19095
|
whitelist: string[];
|
19383
19096
|
blacklist: string[];
|
19384
19097
|
endTimestamp: number;
|
19385
19098
|
url?: string | undefined;
|
19386
|
-
|
19099
|
+
targetToken: string;
|
19387
19100
|
} & {
|
19388
19101
|
rewardToken: string;
|
19389
19102
|
amount: string;
|
@@ -19406,14 +19119,10 @@ declare const app: Elysia<"", {
|
|
19406
19119
|
hookType: import("@package/resources/enums").BOOST;
|
19407
19120
|
boostTokenChainId: number;
|
19408
19121
|
boostTokenAddress: string;
|
19409
|
-
boostTokenSymbol?: string | undefined;
|
19410
|
-
boostTokenDecimals?: number | undefined;
|
19411
19122
|
boostMultiplicator: number;
|
19412
19123
|
} | {
|
19413
19124
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
19414
19125
|
boostTokenAddress: string;
|
19415
|
-
boostTokenDecimals?: number | undefined;
|
19416
|
-
boostTokenSymbol?: string | undefined;
|
19417
19126
|
boostTokenChainId: number;
|
19418
19127
|
boostTokenThreshold: number;
|
19419
19128
|
boostConfiguration: {
|
@@ -19436,8 +19145,6 @@ declare const app: Elysia<"", {
|
|
19436
19145
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19437
19146
|
eligibilityTokenChainId: number;
|
19438
19147
|
eligibilityTokenAddress: string;
|
19439
|
-
eligibilityTokenSymbol?: string | undefined;
|
19440
|
-
eligibilityTokenDecimals?: number | undefined;
|
19441
19148
|
eligibilityTokenThreshold: number;
|
19442
19149
|
eligibilityDuration: number;
|
19443
19150
|
} | {
|
@@ -19591,15 +19298,12 @@ declare const app: Elysia<"", {
|
|
19591
19298
|
};
|
19592
19299
|
} | undefined;
|
19593
19300
|
}) | ({
|
19594
|
-
campaignType: import("@package/resources/enums").
|
19301
|
+
campaignType: import("@package/resources/enums").EQUILIBRIA_VAULT;
|
19595
19302
|
whitelist: string[];
|
19596
19303
|
blacklist: string[];
|
19597
19304
|
endTimestamp: number;
|
19598
19305
|
url?: string | undefined;
|
19599
|
-
|
19600
|
-
apr: string;
|
19601
|
-
rewardTokenPricing: boolean;
|
19602
|
-
targetTokenPricing: boolean;
|
19306
|
+
vaultAddress: string;
|
19603
19307
|
} & {
|
19604
19308
|
rewardToken: string;
|
19605
19309
|
amount: string;
|
@@ -19622,14 +19326,10 @@ declare const app: Elysia<"", {
|
|
19622
19326
|
hookType: import("@package/resources/enums").BOOST;
|
19623
19327
|
boostTokenChainId: number;
|
19624
19328
|
boostTokenAddress: string;
|
19625
|
-
boostTokenSymbol?: string | undefined;
|
19626
|
-
boostTokenDecimals?: number | undefined;
|
19627
19329
|
boostMultiplicator: number;
|
19628
19330
|
} | {
|
19629
19331
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
19630
19332
|
boostTokenAddress: string;
|
19631
|
-
boostTokenDecimals?: number | undefined;
|
19632
|
-
boostTokenSymbol?: string | undefined;
|
19633
19333
|
boostTokenChainId: number;
|
19634
19334
|
boostTokenThreshold: number;
|
19635
19335
|
boostConfiguration: {
|
@@ -19652,8 +19352,6 @@ declare const app: Elysia<"", {
|
|
19652
19352
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19653
19353
|
eligibilityTokenChainId: number;
|
19654
19354
|
eligibilityTokenAddress: string;
|
19655
|
-
eligibilityTokenSymbol?: string | undefined;
|
19656
|
-
eligibilityTokenDecimals?: number | undefined;
|
19657
19355
|
eligibilityTokenThreshold: number;
|
19658
19356
|
eligibilityDuration: number;
|
19659
19357
|
} | {
|
@@ -19807,12 +19505,12 @@ declare const app: Elysia<"", {
|
|
19807
19505
|
};
|
19808
19506
|
} | undefined;
|
19809
19507
|
}) | ({
|
19810
|
-
campaignType: import("@package/resources/enums").
|
19508
|
+
campaignType: import("@package/resources/enums").SATOSHI_VAULT;
|
19811
19509
|
whitelist: string[];
|
19812
19510
|
blacklist: string[];
|
19813
19511
|
endTimestamp: number;
|
19814
19512
|
url?: string | undefined;
|
19815
|
-
|
19513
|
+
vaultAddress: string;
|
19816
19514
|
} & {
|
19817
19515
|
rewardToken: string;
|
19818
19516
|
amount: string;
|
@@ -19835,14 +19533,10 @@ declare const app: Elysia<"", {
|
|
19835
19533
|
hookType: import("@package/resources/enums").BOOST;
|
19836
19534
|
boostTokenChainId: number;
|
19837
19535
|
boostTokenAddress: string;
|
19838
|
-
boostTokenSymbol?: string | undefined;
|
19839
|
-
boostTokenDecimals?: number | undefined;
|
19840
19536
|
boostMultiplicator: number;
|
19841
19537
|
} | {
|
19842
19538
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
19843
19539
|
boostTokenAddress: string;
|
19844
|
-
boostTokenDecimals?: number | undefined;
|
19845
|
-
boostTokenSymbol?: string | undefined;
|
19846
19540
|
boostTokenChainId: number;
|
19847
19541
|
boostTokenThreshold: number;
|
19848
19542
|
boostConfiguration: {
|
@@ -19865,8 +19559,6 @@ declare const app: Elysia<"", {
|
|
19865
19559
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19866
19560
|
eligibilityTokenChainId: number;
|
19867
19561
|
eligibilityTokenAddress: string;
|
19868
|
-
eligibilityTokenSymbol?: string | undefined;
|
19869
|
-
eligibilityTokenDecimals?: number | undefined;
|
19870
19562
|
eligibilityTokenThreshold: number;
|
19871
19563
|
eligibilityDuration: number;
|
19872
19564
|
} | {
|
@@ -20020,12 +19712,12 @@ declare const app: Elysia<"", {
|
|
20020
19712
|
};
|
20021
19713
|
} | undefined;
|
20022
19714
|
}) | ({
|
20023
|
-
campaignType: import("@package/resources/enums").
|
19715
|
+
campaignType: import("@package/resources/enums").SUMMERFINANCE_VAULT;
|
20024
19716
|
whitelist: string[];
|
20025
19717
|
blacklist: string[];
|
20026
19718
|
endTimestamp: number;
|
20027
19719
|
url?: string | undefined;
|
20028
|
-
|
19720
|
+
vaultAddress: string;
|
20029
19721
|
} & {
|
20030
19722
|
rewardToken: string;
|
20031
19723
|
amount: string;
|
@@ -20048,14 +19740,10 @@ declare const app: Elysia<"", {
|
|
20048
19740
|
hookType: import("@package/resources/enums").BOOST;
|
20049
19741
|
boostTokenChainId: number;
|
20050
19742
|
boostTokenAddress: string;
|
20051
|
-
boostTokenSymbol?: string | undefined;
|
20052
|
-
boostTokenDecimals?: number | undefined;
|
20053
19743
|
boostMultiplicator: number;
|
20054
19744
|
} | {
|
20055
19745
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20056
19746
|
boostTokenAddress: string;
|
20057
|
-
boostTokenDecimals?: number | undefined;
|
20058
|
-
boostTokenSymbol?: string | undefined;
|
20059
19747
|
boostTokenChainId: number;
|
20060
19748
|
boostTokenThreshold: number;
|
20061
19749
|
boostConfiguration: {
|
@@ -20078,8 +19766,6 @@ declare const app: Elysia<"", {
|
|
20078
19766
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20079
19767
|
eligibilityTokenChainId: number;
|
20080
19768
|
eligibilityTokenAddress: string;
|
20081
|
-
eligibilityTokenSymbol?: string | undefined;
|
20082
|
-
eligibilityTokenDecimals?: number | undefined;
|
20083
19769
|
eligibilityTokenThreshold: number;
|
20084
19770
|
eligibilityDuration: number;
|
20085
19771
|
} | {
|
@@ -20233,15 +19919,14 @@ declare const app: Elysia<"", {
|
|
20233
19919
|
};
|
20234
19920
|
} | undefined;
|
20235
19921
|
}) | ({
|
20236
|
-
campaignType: import("@package/resources/enums").
|
19922
|
+
campaignType: import("@package/resources/enums").ERC20INCOMINGTRANSFERS;
|
20237
19923
|
whitelist: string[];
|
20238
19924
|
blacklist: string[];
|
20239
19925
|
endTimestamp: number;
|
20240
19926
|
url?: string | undefined;
|
20241
|
-
|
20242
|
-
|
20243
|
-
|
20244
|
-
targetTokenPricing: boolean;
|
19927
|
+
targetToken: string;
|
19928
|
+
filteredAddresses: string[];
|
19929
|
+
owner?: string | undefined;
|
20245
19930
|
} & {
|
20246
19931
|
rewardToken: string;
|
20247
19932
|
amount: string;
|
@@ -20264,14 +19949,10 @@ declare const app: Elysia<"", {
|
|
20264
19949
|
hookType: import("@package/resources/enums").BOOST;
|
20265
19950
|
boostTokenChainId: number;
|
20266
19951
|
boostTokenAddress: string;
|
20267
|
-
boostTokenSymbol?: string | undefined;
|
20268
|
-
boostTokenDecimals?: number | undefined;
|
20269
19952
|
boostMultiplicator: number;
|
20270
19953
|
} | {
|
20271
19954
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20272
19955
|
boostTokenAddress: string;
|
20273
|
-
boostTokenDecimals?: number | undefined;
|
20274
|
-
boostTokenSymbol?: string | undefined;
|
20275
19956
|
boostTokenChainId: number;
|
20276
19957
|
boostTokenThreshold: number;
|
20277
19958
|
boostConfiguration: {
|
@@ -20294,8 +19975,6 @@ declare const app: Elysia<"", {
|
|
20294
19975
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20295
19976
|
eligibilityTokenChainId: number;
|
20296
19977
|
eligibilityTokenAddress: string;
|
20297
|
-
eligibilityTokenSymbol?: string | undefined;
|
20298
|
-
eligibilityTokenDecimals?: number | undefined;
|
20299
19978
|
eligibilityTokenThreshold: number;
|
20300
19979
|
eligibilityDuration: number;
|
20301
19980
|
} | {
|
@@ -20449,7 +20128,7 @@ declare const app: Elysia<"", {
|
|
20449
20128
|
};
|
20450
20129
|
} | undefined;
|
20451
20130
|
}) | ({
|
20452
|
-
campaignType: import("@package/resources/enums").
|
20131
|
+
campaignType: import("@package/resources/enums").STABULLSTAKING;
|
20453
20132
|
whitelist: string[];
|
20454
20133
|
blacklist: string[];
|
20455
20134
|
endTimestamp: number;
|
@@ -20477,14 +20156,10 @@ declare const app: Elysia<"", {
|
|
20477
20156
|
hookType: import("@package/resources/enums").BOOST;
|
20478
20157
|
boostTokenChainId: number;
|
20479
20158
|
boostTokenAddress: string;
|
20480
|
-
boostTokenSymbol?: string | undefined;
|
20481
|
-
boostTokenDecimals?: number | undefined;
|
20482
20159
|
boostMultiplicator: number;
|
20483
20160
|
} | {
|
20484
20161
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20485
20162
|
boostTokenAddress: string;
|
20486
|
-
boostTokenDecimals?: number | undefined;
|
20487
|
-
boostTokenSymbol?: string | undefined;
|
20488
20163
|
boostTokenChainId: number;
|
20489
20164
|
boostTokenThreshold: number;
|
20490
20165
|
boostConfiguration: {
|
@@ -20507,8 +20182,6 @@ declare const app: Elysia<"", {
|
|
20507
20182
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20508
20183
|
eligibilityTokenChainId: number;
|
20509
20184
|
eligibilityTokenAddress: string;
|
20510
|
-
eligibilityTokenSymbol?: string | undefined;
|
20511
|
-
eligibilityTokenDecimals?: number | undefined;
|
20512
20185
|
eligibilityTokenThreshold: number;
|
20513
20186
|
eligibilityDuration: number;
|
20514
20187
|
} | {
|
@@ -20662,12 +20335,12 @@ declare const app: Elysia<"", {
|
|
20662
20335
|
};
|
20663
20336
|
} | undefined;
|
20664
20337
|
}) | ({
|
20665
|
-
campaignType: import("@package/resources/enums").
|
20338
|
+
campaignType: import("@package/resources/enums").TERM_FINANCE;
|
20666
20339
|
whitelist: string[];
|
20667
20340
|
blacklist: string[];
|
20668
20341
|
endTimestamp: number;
|
20669
20342
|
url?: string | undefined;
|
20670
|
-
|
20343
|
+
collateral: string;
|
20671
20344
|
} & {
|
20672
20345
|
rewardToken: string;
|
20673
20346
|
amount: string;
|
@@ -20690,14 +20363,10 @@ declare const app: Elysia<"", {
|
|
20690
20363
|
hookType: import("@package/resources/enums").BOOST;
|
20691
20364
|
boostTokenChainId: number;
|
20692
20365
|
boostTokenAddress: string;
|
20693
|
-
boostTokenSymbol?: string | undefined;
|
20694
|
-
boostTokenDecimals?: number | undefined;
|
20695
20366
|
boostMultiplicator: number;
|
20696
20367
|
} | {
|
20697
20368
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20698
20369
|
boostTokenAddress: string;
|
20699
|
-
boostTokenDecimals?: number | undefined;
|
20700
|
-
boostTokenSymbol?: string | undefined;
|
20701
20370
|
boostTokenChainId: number;
|
20702
20371
|
boostTokenThreshold: number;
|
20703
20372
|
boostConfiguration: {
|
@@ -20720,8 +20389,6 @@ declare const app: Elysia<"", {
|
|
20720
20389
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20721
20390
|
eligibilityTokenChainId: number;
|
20722
20391
|
eligibilityTokenAddress: string;
|
20723
|
-
eligibilityTokenSymbol?: string | undefined;
|
20724
|
-
eligibilityTokenDecimals?: number | undefined;
|
20725
20392
|
eligibilityTokenThreshold: number;
|
20726
20393
|
eligibilityDuration: number;
|
20727
20394
|
} | {
|
@@ -20875,15 +20542,12 @@ declare const app: Elysia<"", {
|
|
20875
20542
|
};
|
20876
20543
|
} | undefined;
|
20877
20544
|
}) | ({
|
20878
|
-
campaignType: import("@package/resources/enums").
|
20545
|
+
campaignType: import("@package/resources/enums").BUNNIHUB;
|
20879
20546
|
whitelist: string[];
|
20880
20547
|
blacklist: string[];
|
20881
20548
|
endTimestamp: number;
|
20882
20549
|
url?: string | undefined;
|
20883
|
-
|
20884
|
-
apr: string;
|
20885
|
-
rewardTokenPricing: boolean;
|
20886
|
-
targetTokenPricing: boolean;
|
20550
|
+
targetToken: string;
|
20887
20551
|
} & {
|
20888
20552
|
rewardToken: string;
|
20889
20553
|
amount: string;
|
@@ -20906,14 +20570,10 @@ declare const app: Elysia<"", {
|
|
20906
20570
|
hookType: import("@package/resources/enums").BOOST;
|
20907
20571
|
boostTokenChainId: number;
|
20908
20572
|
boostTokenAddress: string;
|
20909
|
-
boostTokenSymbol?: string | undefined;
|
20910
|
-
boostTokenDecimals?: number | undefined;
|
20911
20573
|
boostMultiplicator: number;
|
20912
20574
|
} | {
|
20913
20575
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20914
20576
|
boostTokenAddress: string;
|
20915
|
-
boostTokenDecimals?: number | undefined;
|
20916
|
-
boostTokenSymbol?: string | undefined;
|
20917
20577
|
boostTokenChainId: number;
|
20918
20578
|
boostTokenThreshold: number;
|
20919
20579
|
boostConfiguration: {
|
@@ -20936,8 +20596,6 @@ declare const app: Elysia<"", {
|
|
20936
20596
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20937
20597
|
eligibilityTokenChainId: number;
|
20938
20598
|
eligibilityTokenAddress: string;
|
20939
|
-
eligibilityTokenSymbol?: string | undefined;
|
20940
|
-
eligibilityTokenDecimals?: number | undefined;
|
20941
20599
|
eligibilityTokenThreshold: number;
|
20942
20600
|
eligibilityDuration: number;
|
20943
20601
|
} | {
|
@@ -21091,12 +20749,13 @@ declare const app: Elysia<"", {
|
|
21091
20749
|
};
|
21092
20750
|
} | undefined;
|
21093
20751
|
}) | ({
|
21094
|
-
campaignType: import("@package/resources/enums").
|
20752
|
+
campaignType: import("@package/resources/enums").VII;
|
21095
20753
|
whitelist: string[];
|
21096
20754
|
blacklist: string[];
|
21097
20755
|
endTimestamp: number;
|
21098
20756
|
url?: string | undefined;
|
21099
20757
|
targetToken: string;
|
20758
|
+
tokenId: string;
|
21100
20759
|
} & {
|
21101
20760
|
rewardToken: string;
|
21102
20761
|
amount: string;
|
@@ -21119,14 +20778,10 @@ declare const app: Elysia<"", {
|
|
21119
20778
|
hookType: import("@package/resources/enums").BOOST;
|
21120
20779
|
boostTokenChainId: number;
|
21121
20780
|
boostTokenAddress: string;
|
21122
|
-
boostTokenSymbol?: string | undefined;
|
21123
|
-
boostTokenDecimals?: number | undefined;
|
21124
20781
|
boostMultiplicator: number;
|
21125
20782
|
} | {
|
21126
20783
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21127
20784
|
boostTokenAddress: string;
|
21128
|
-
boostTokenDecimals?: number | undefined;
|
21129
|
-
boostTokenSymbol?: string | undefined;
|
21130
20785
|
boostTokenChainId: number;
|
21131
20786
|
boostTokenThreshold: number;
|
21132
20787
|
boostConfiguration: {
|
@@ -21149,8 +20804,6 @@ declare const app: Elysia<"", {
|
|
21149
20804
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21150
20805
|
eligibilityTokenChainId: number;
|
21151
20806
|
eligibilityTokenAddress: string;
|
21152
|
-
eligibilityTokenSymbol?: string | undefined;
|
21153
|
-
eligibilityTokenDecimals?: number | undefined;
|
21154
20807
|
eligibilityTokenThreshold: number;
|
21155
20808
|
eligibilityDuration: number;
|
21156
20809
|
} | {
|
@@ -21332,14 +20985,10 @@ declare const app: Elysia<"", {
|
|
21332
20985
|
hookType: import("@package/resources/enums").BOOST;
|
21333
20986
|
boostTokenChainId: number;
|
21334
20987
|
boostTokenAddress: string;
|
21335
|
-
boostTokenSymbol?: string | undefined;
|
21336
|
-
boostTokenDecimals?: number | undefined;
|
21337
20988
|
boostMultiplicator: number;
|
21338
20989
|
} | {
|
21339
20990
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21340
20991
|
boostTokenAddress: string;
|
21341
|
-
boostTokenDecimals?: number | undefined;
|
21342
|
-
boostTokenSymbol?: string | undefined;
|
21343
20992
|
boostTokenChainId: number;
|
21344
20993
|
boostTokenThreshold: number;
|
21345
20994
|
boostConfiguration: {
|
@@ -21362,8 +21011,6 @@ declare const app: Elysia<"", {
|
|
21362
21011
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21363
21012
|
eligibilityTokenChainId: number;
|
21364
21013
|
eligibilityTokenAddress: string;
|
21365
|
-
eligibilityTokenSymbol?: string | undefined;
|
21366
|
-
eligibilityTokenDecimals?: number | undefined;
|
21367
21014
|
eligibilityTokenThreshold: number;
|
21368
21015
|
eligibilityDuration: number;
|
21369
21016
|
} | {
|
@@ -21517,13 +21164,20 @@ declare const app: Elysia<"", {
|
|
21517
21164
|
};
|
21518
21165
|
} | undefined;
|
21519
21166
|
}) | ({
|
21520
|
-
campaignType: import("@package/resources/enums").
|
21167
|
+
campaignType: import("@package/resources/enums").HYBRA;
|
21521
21168
|
whitelist: string[];
|
21522
21169
|
blacklist: string[];
|
21523
21170
|
endTimestamp: number;
|
21524
21171
|
url?: string | undefined;
|
21525
|
-
|
21526
|
-
|
21172
|
+
poolId: string;
|
21173
|
+
isOutOfRangeIncentivized: boolean;
|
21174
|
+
weightFees: number;
|
21175
|
+
weightToken0: number;
|
21176
|
+
weightToken1: number;
|
21177
|
+
lowerPriceBond?: number | undefined;
|
21178
|
+
upperPriceBond?: number | undefined;
|
21179
|
+
lowerPriceTolerance?: number | undefined;
|
21180
|
+
upperPriceTolerance?: number | undefined;
|
21527
21181
|
} & {
|
21528
21182
|
rewardToken: string;
|
21529
21183
|
amount: string;
|
@@ -21546,14 +21200,10 @@ declare const app: Elysia<"", {
|
|
21546
21200
|
hookType: import("@package/resources/enums").BOOST;
|
21547
21201
|
boostTokenChainId: number;
|
21548
21202
|
boostTokenAddress: string;
|
21549
|
-
boostTokenSymbol?: string | undefined;
|
21550
|
-
boostTokenDecimals?: number | undefined;
|
21551
21203
|
boostMultiplicator: number;
|
21552
21204
|
} | {
|
21553
21205
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21554
21206
|
boostTokenAddress: string;
|
21555
|
-
boostTokenDecimals?: number | undefined;
|
21556
|
-
boostTokenSymbol?: string | undefined;
|
21557
21207
|
boostTokenChainId: number;
|
21558
21208
|
boostTokenThreshold: number;
|
21559
21209
|
boostConfiguration: {
|
@@ -21576,8 +21226,6 @@ declare const app: Elysia<"", {
|
|
21576
21226
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21577
21227
|
eligibilityTokenChainId: number;
|
21578
21228
|
eligibilityTokenAddress: string;
|
21579
|
-
eligibilityTokenSymbol?: string | undefined;
|
21580
|
-
eligibilityTokenDecimals?: number | undefined;
|
21581
21229
|
eligibilityTokenThreshold: number;
|
21582
21230
|
eligibilityDuration: number;
|
21583
21231
|
} | {
|
@@ -21731,13 +21379,14 @@ declare const app: Elysia<"", {
|
|
21731
21379
|
};
|
21732
21380
|
} | undefined;
|
21733
21381
|
}) | ({
|
21734
|
-
campaignType: import("@package/resources/enums").
|
21382
|
+
campaignType: import("@package/resources/enums").ERC20EXPIRYLOG;
|
21735
21383
|
whitelist: string[];
|
21736
21384
|
blacklist: string[];
|
21737
21385
|
endTimestamp: number;
|
21738
21386
|
url?: string | undefined;
|
21739
|
-
|
21740
|
-
|
21387
|
+
targetToken: string;
|
21388
|
+
expiry: number;
|
21389
|
+
treasury: string;
|
21741
21390
|
} & {
|
21742
21391
|
rewardToken: string;
|
21743
21392
|
amount: string;
|
@@ -21760,14 +21409,10 @@ declare const app: Elysia<"", {
|
|
21760
21409
|
hookType: import("@package/resources/enums").BOOST;
|
21761
21410
|
boostTokenChainId: number;
|
21762
21411
|
boostTokenAddress: string;
|
21763
|
-
boostTokenSymbol?: string | undefined;
|
21764
|
-
boostTokenDecimals?: number | undefined;
|
21765
21412
|
boostMultiplicator: number;
|
21766
21413
|
} | {
|
21767
21414
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21768
21415
|
boostTokenAddress: string;
|
21769
|
-
boostTokenDecimals?: number | undefined;
|
21770
|
-
boostTokenSymbol?: string | undefined;
|
21771
21416
|
boostTokenChainId: number;
|
21772
21417
|
boostTokenThreshold: number;
|
21773
21418
|
boostConfiguration: {
|
@@ -21790,8 +21435,6 @@ declare const app: Elysia<"", {
|
|
21790
21435
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21791
21436
|
eligibilityTokenChainId: number;
|
21792
21437
|
eligibilityTokenAddress: string;
|
21793
|
-
eligibilityTokenSymbol?: string | undefined;
|
21794
|
-
eligibilityTokenDecimals?: number | undefined;
|
21795
21438
|
eligibilityTokenThreshold: number;
|
21796
21439
|
eligibilityDuration: number;
|
21797
21440
|
} | {
|
@@ -21945,13 +21588,20 @@ declare const app: Elysia<"", {
|
|
21945
21588
|
};
|
21946
21589
|
} | undefined;
|
21947
21590
|
}) | ({
|
21948
|
-
campaignType: import("@package/resources/enums").
|
21591
|
+
campaignType: import("@package/resources/enums").UNISWAP_V3;
|
21949
21592
|
whitelist: string[];
|
21950
21593
|
blacklist: string[];
|
21951
21594
|
endTimestamp: number;
|
21952
|
-
|
21953
|
-
|
21954
|
-
|
21595
|
+
url?: string | undefined;
|
21596
|
+
poolId: string;
|
21597
|
+
isOutOfRangeIncentivized: boolean;
|
21598
|
+
weightFees: number;
|
21599
|
+
weightToken0: number;
|
21600
|
+
weightToken1: number;
|
21601
|
+
lowerPriceBond?: number | undefined;
|
21602
|
+
upperPriceBond?: number | undefined;
|
21603
|
+
lowerPriceTolerance?: number | undefined;
|
21604
|
+
upperPriceTolerance?: number | undefined;
|
21955
21605
|
} & {
|
21956
21606
|
rewardToken: string;
|
21957
21607
|
amount: string;
|
@@ -21974,14 +21624,10 @@ declare const app: Elysia<"", {
|
|
21974
21624
|
hookType: import("@package/resources/enums").BOOST;
|
21975
21625
|
boostTokenChainId: number;
|
21976
21626
|
boostTokenAddress: string;
|
21977
|
-
boostTokenSymbol?: string | undefined;
|
21978
|
-
boostTokenDecimals?: number | undefined;
|
21979
21627
|
boostMultiplicator: number;
|
21980
21628
|
} | {
|
21981
21629
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21982
21630
|
boostTokenAddress: string;
|
21983
|
-
boostTokenDecimals?: number | undefined;
|
21984
|
-
boostTokenSymbol?: string | undefined;
|
21985
21631
|
boostTokenChainId: number;
|
21986
21632
|
boostTokenThreshold: number;
|
21987
21633
|
boostConfiguration: {
|
@@ -22004,8 +21650,6 @@ declare const app: Elysia<"", {
|
|
22004
21650
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22005
21651
|
eligibilityTokenChainId: number;
|
22006
21652
|
eligibilityTokenAddress: string;
|
22007
|
-
eligibilityTokenSymbol?: string | undefined;
|
22008
|
-
eligibilityTokenDecimals?: number | undefined;
|
22009
21653
|
eligibilityTokenThreshold: number;
|
22010
21654
|
eligibilityDuration: number;
|
22011
21655
|
} | {
|
@@ -22159,12 +21803,14 @@ declare const app: Elysia<"", {
|
|
22159
21803
|
};
|
22160
21804
|
} | undefined;
|
22161
21805
|
}) | ({
|
22162
|
-
campaignType: import("@package/resources/enums").
|
21806
|
+
campaignType: import("@package/resources/enums").AJNA;
|
22163
21807
|
whitelist: string[];
|
22164
21808
|
blacklist: string[];
|
22165
21809
|
endTimestamp: number;
|
22166
21810
|
url?: string | undefined;
|
22167
|
-
|
21811
|
+
poolId: string;
|
21812
|
+
subCampaignType: import("@package/resources/enums").AjnaSubCampaignType;
|
21813
|
+
forwarders: string[];
|
22168
21814
|
} & {
|
22169
21815
|
rewardToken: string;
|
22170
21816
|
amount: string;
|
@@ -22187,14 +21833,10 @@ declare const app: Elysia<"", {
|
|
22187
21833
|
hookType: import("@package/resources/enums").BOOST;
|
22188
21834
|
boostTokenChainId: number;
|
22189
21835
|
boostTokenAddress: string;
|
22190
|
-
boostTokenSymbol?: string | undefined;
|
22191
|
-
boostTokenDecimals?: number | undefined;
|
22192
21836
|
boostMultiplicator: number;
|
22193
21837
|
} | {
|
22194
21838
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
22195
21839
|
boostTokenAddress: string;
|
22196
|
-
boostTokenDecimals?: number | undefined;
|
22197
|
-
boostTokenSymbol?: string | undefined;
|
22198
21840
|
boostTokenChainId: number;
|
22199
21841
|
boostTokenThreshold: number;
|
22200
21842
|
boostConfiguration: {
|
@@ -22217,8 +21859,6 @@ declare const app: Elysia<"", {
|
|
22217
21859
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22218
21860
|
eligibilityTokenChainId: number;
|
22219
21861
|
eligibilityTokenAddress: string;
|
22220
|
-
eligibilityTokenSymbol?: string | undefined;
|
22221
|
-
eligibilityTokenDecimals?: number | undefined;
|
22222
21862
|
eligibilityTokenThreshold: number;
|
22223
21863
|
eligibilityDuration: number;
|
22224
21864
|
} | {
|
@@ -22372,13 +22012,19 @@ declare const app: Elysia<"", {
|
|
22372
22012
|
};
|
22373
22013
|
} | undefined;
|
22374
22014
|
}) | ({
|
22375
|
-
campaignType: import("@package/resources/enums").
|
22015
|
+
campaignType: import("@package/resources/enums").AMBIENTPROCESSOR;
|
22376
22016
|
whitelist: string[];
|
22377
22017
|
blacklist: string[];
|
22378
|
-
subCampaignType: import("@package/resources/enums").SILOSubCampaignType;
|
22379
22018
|
endTimestamp: number;
|
22380
|
-
|
22381
|
-
|
22019
|
+
url?: string | undefined;
|
22020
|
+
poolId: string;
|
22021
|
+
baseToken: string;
|
22022
|
+
quoteToken: string;
|
22023
|
+
poolIdx: number;
|
22024
|
+
isOutOfRangeIncentivized: boolean;
|
22025
|
+
weightFees: number;
|
22026
|
+
weightToken0: number;
|
22027
|
+
weightToken1: number;
|
22382
22028
|
forwarders: string[];
|
22383
22029
|
} & {
|
22384
22030
|
rewardToken: string;
|
@@ -22402,14 +22048,10 @@ declare const app: Elysia<"", {
|
|
22402
22048
|
hookType: import("@package/resources/enums").BOOST;
|
22403
22049
|
boostTokenChainId: number;
|
22404
22050
|
boostTokenAddress: string;
|
22405
|
-
boostTokenSymbol?: string | undefined;
|
22406
|
-
boostTokenDecimals?: number | undefined;
|
22407
22051
|
boostMultiplicator: number;
|
22408
22052
|
} | {
|
22409
22053
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
22410
22054
|
boostTokenAddress: string;
|
22411
|
-
boostTokenDecimals?: number | undefined;
|
22412
|
-
boostTokenSymbol?: string | undefined;
|
22413
22055
|
boostTokenChainId: number;
|
22414
22056
|
boostTokenThreshold: number;
|
22415
22057
|
boostConfiguration: {
|
@@ -22432,8 +22074,6 @@ declare const app: Elysia<"", {
|
|
22432
22074
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22433
22075
|
eligibilityTokenChainId: number;
|
22434
22076
|
eligibilityTokenAddress: string;
|
22435
|
-
eligibilityTokenSymbol?: string | undefined;
|
22436
|
-
eligibilityTokenDecimals?: number | undefined;
|
22437
22077
|
eligibilityTokenThreshold: number;
|
22438
22078
|
eligibilityDuration: number;
|
22439
22079
|
} | {
|
@@ -22587,12 +22227,13 @@ declare const app: Elysia<"", {
|
|
22587
22227
|
};
|
22588
22228
|
} | undefined;
|
22589
22229
|
}) | ({
|
22590
|
-
campaignType: import("@package/resources/enums").
|
22230
|
+
campaignType: import("@package/resources/enums").BADGER;
|
22591
22231
|
whitelist: string[];
|
22592
22232
|
blacklist: string[];
|
22593
22233
|
endTimestamp: number;
|
22594
22234
|
url?: string | undefined;
|
22595
22235
|
targetToken: string;
|
22236
|
+
forwarders: string[];
|
22596
22237
|
} & {
|
22597
22238
|
rewardToken: string;
|
22598
22239
|
amount: string;
|
@@ -22615,14 +22256,10 @@ declare const app: Elysia<"", {
|
|
22615
22256
|
hookType: import("@package/resources/enums").BOOST;
|
22616
22257
|
boostTokenChainId: number;
|
22617
22258
|
boostTokenAddress: string;
|
22618
|
-
boostTokenSymbol?: string | undefined;
|
22619
|
-
boostTokenDecimals?: number | undefined;
|
22620
22259
|
boostMultiplicator: number;
|
22621
22260
|
} | {
|
22622
22261
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
22623
22262
|
boostTokenAddress: string;
|
22624
|
-
boostTokenDecimals?: number | undefined;
|
22625
|
-
boostTokenSymbol?: string | undefined;
|
22626
22263
|
boostTokenChainId: number;
|
22627
22264
|
boostTokenThreshold: number;
|
22628
22265
|
boostConfiguration: {
|
@@ -22645,8 +22282,6 @@ declare const app: Elysia<"", {
|
|
22645
22282
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22646
22283
|
eligibilityTokenChainId: number;
|
22647
22284
|
eligibilityTokenAddress: string;
|
22648
|
-
eligibilityTokenSymbol?: string | undefined;
|
22649
|
-
eligibilityTokenDecimals?: number | undefined;
|
22650
22285
|
eligibilityTokenThreshold: number;
|
22651
22286
|
eligibilityDuration: number;
|
22652
22287
|
} | {
|
@@ -22800,12 +22435,15 @@ declare const app: Elysia<"", {
|
|
22800
22435
|
};
|
22801
22436
|
} | undefined;
|
22802
22437
|
}) | ({
|
22803
|
-
campaignType: import("@package/resources/enums").
|
22438
|
+
campaignType: import("@package/resources/enums").COMPOUND;
|
22804
22439
|
whitelist: string[];
|
22805
22440
|
blacklist: string[];
|
22806
22441
|
endTimestamp: number;
|
22807
22442
|
url?: string | undefined;
|
22443
|
+
subCampaignType: import("@package/resources/enums").CompoundSubCampaignType;
|
22444
|
+
compFork: import("@package/resources/enums").CompFork;
|
22808
22445
|
targetToken: string;
|
22446
|
+
forwarders: string[];
|
22809
22447
|
} & {
|
22810
22448
|
rewardToken: string;
|
22811
22449
|
amount: string;
|
@@ -22828,14 +22466,10 @@ declare const app: Elysia<"", {
|
|
22828
22466
|
hookType: import("@package/resources/enums").BOOST;
|
22829
22467
|
boostTokenChainId: number;
|
22830
22468
|
boostTokenAddress: string;
|
22831
|
-
boostTokenSymbol?: string | undefined;
|
22832
|
-
boostTokenDecimals?: number | undefined;
|
22833
22469
|
boostMultiplicator: number;
|
22834
22470
|
} | {
|
22835
22471
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
22836
22472
|
boostTokenAddress: string;
|
22837
|
-
boostTokenDecimals?: number | undefined;
|
22838
|
-
boostTokenSymbol?: string | undefined;
|
22839
22473
|
boostTokenChainId: number;
|
22840
22474
|
boostTokenThreshold: number;
|
22841
22475
|
boostConfiguration: {
|
@@ -22858,8 +22492,6 @@ declare const app: Elysia<"", {
|
|
22858
22492
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22859
22493
|
eligibilityTokenChainId: number;
|
22860
22494
|
eligibilityTokenAddress: string;
|
22861
|
-
eligibilityTokenSymbol?: string | undefined;
|
22862
|
-
eligibilityTokenDecimals?: number | undefined;
|
22863
22495
|
eligibilityTokenThreshold: number;
|
22864
22496
|
eligibilityDuration: number;
|
22865
22497
|
} | {
|
@@ -23013,12 +22645,16 @@ declare const app: Elysia<"", {
|
|
23013
22645
|
};
|
23014
22646
|
} | undefined;
|
23015
22647
|
}) | ({
|
23016
|
-
campaignType: import("@package/resources/enums").
|
22648
|
+
campaignType: import("@package/resources/enums").CLAMM;
|
23017
22649
|
whitelist: string[];
|
23018
22650
|
blacklist: string[];
|
23019
22651
|
endTimestamp: number;
|
23020
22652
|
url?: string | undefined;
|
23021
|
-
|
22653
|
+
poolAddress: string;
|
22654
|
+
isOutOfRangeIncentivized: boolean;
|
22655
|
+
weightFees: number;
|
22656
|
+
weightToken0: number;
|
22657
|
+
weightToken1: number;
|
23022
22658
|
} & {
|
23023
22659
|
rewardToken: string;
|
23024
22660
|
amount: string;
|
@@ -23041,14 +22677,10 @@ declare const app: Elysia<"", {
|
|
23041
22677
|
hookType: import("@package/resources/enums").BOOST;
|
23042
22678
|
boostTokenChainId: number;
|
23043
22679
|
boostTokenAddress: string;
|
23044
|
-
boostTokenSymbol?: string | undefined;
|
23045
|
-
boostTokenDecimals?: number | undefined;
|
23046
22680
|
boostMultiplicator: number;
|
23047
22681
|
} | {
|
23048
22682
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23049
22683
|
boostTokenAddress: string;
|
23050
|
-
boostTokenDecimals?: number | undefined;
|
23051
|
-
boostTokenSymbol?: string | undefined;
|
23052
22684
|
boostTokenChainId: number;
|
23053
22685
|
boostTokenThreshold: number;
|
23054
22686
|
boostConfiguration: {
|
@@ -23071,8 +22703,6 @@ declare const app: Elysia<"", {
|
|
23071
22703
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23072
22704
|
eligibilityTokenChainId: number;
|
23073
22705
|
eligibilityTokenAddress: string;
|
23074
|
-
eligibilityTokenSymbol?: string | undefined;
|
23075
|
-
eligibilityTokenDecimals?: number | undefined;
|
23076
22706
|
eligibilityTokenThreshold: number;
|
23077
22707
|
eligibilityDuration: number;
|
23078
22708
|
} | {
|
@@ -23226,12 +22856,13 @@ declare const app: Elysia<"", {
|
|
23226
22856
|
};
|
23227
22857
|
} | undefined;
|
23228
22858
|
}) | ({
|
23229
|
-
campaignType: import("@package/resources/enums").
|
22859
|
+
campaignType: import("@package/resources/enums").DOLOMITE;
|
23230
22860
|
whitelist: string[];
|
23231
22861
|
blacklist: string[];
|
22862
|
+
subCampaignType: import("@package/resources/enums").DolomiteSubCampaignType;
|
23232
22863
|
endTimestamp: number;
|
23233
|
-
|
23234
|
-
|
22864
|
+
targetToken: string;
|
22865
|
+
forwarders: string[];
|
23235
22866
|
} & {
|
23236
22867
|
rewardToken: string;
|
23237
22868
|
amount: string;
|
@@ -23254,14 +22885,10 @@ declare const app: Elysia<"", {
|
|
23254
22885
|
hookType: import("@package/resources/enums").BOOST;
|
23255
22886
|
boostTokenChainId: number;
|
23256
22887
|
boostTokenAddress: string;
|
23257
|
-
boostTokenSymbol?: string | undefined;
|
23258
|
-
boostTokenDecimals?: number | undefined;
|
23259
22888
|
boostMultiplicator: number;
|
23260
22889
|
} | {
|
23261
22890
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23262
22891
|
boostTokenAddress: string;
|
23263
|
-
boostTokenDecimals?: number | undefined;
|
23264
|
-
boostTokenSymbol?: string | undefined;
|
23265
22892
|
boostTokenChainId: number;
|
23266
22893
|
boostTokenThreshold: number;
|
23267
22894
|
boostConfiguration: {
|
@@ -23284,8 +22911,6 @@ declare const app: Elysia<"", {
|
|
23284
22911
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23285
22912
|
eligibilityTokenChainId: number;
|
23286
22913
|
eligibilityTokenAddress: string;
|
23287
|
-
eligibilityTokenSymbol?: string | undefined;
|
23288
|
-
eligibilityTokenDecimals?: number | undefined;
|
23289
22914
|
eligibilityTokenThreshold: number;
|
23290
22915
|
eligibilityDuration: number;
|
23291
22916
|
} | {
|
@@ -23439,12 +23064,10 @@ declare const app: Elysia<"", {
|
|
23439
23064
|
};
|
23440
23065
|
} | undefined;
|
23441
23066
|
}) | ({
|
23442
|
-
campaignType: import("@package/resources/enums").
|
23443
|
-
|
23444
|
-
|
23445
|
-
|
23446
|
-
url?: string | undefined;
|
23447
|
-
vaultContract: string;
|
23067
|
+
campaignType: import("@package/resources/enums").ENCOMPASSING;
|
23068
|
+
rewardsUrl: string;
|
23069
|
+
endTimestamp?: number | undefined;
|
23070
|
+
dataUrl?: string | undefined;
|
23448
23071
|
} & {
|
23449
23072
|
rewardToken: string;
|
23450
23073
|
amount: string;
|
@@ -23467,14 +23090,10 @@ declare const app: Elysia<"", {
|
|
23467
23090
|
hookType: import("@package/resources/enums").BOOST;
|
23468
23091
|
boostTokenChainId: number;
|
23469
23092
|
boostTokenAddress: string;
|
23470
|
-
boostTokenSymbol?: string | undefined;
|
23471
|
-
boostTokenDecimals?: number | undefined;
|
23472
23093
|
boostMultiplicator: number;
|
23473
23094
|
} | {
|
23474
23095
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23475
23096
|
boostTokenAddress: string;
|
23476
|
-
boostTokenDecimals?: number | undefined;
|
23477
|
-
boostTokenSymbol?: string | undefined;
|
23478
23097
|
boostTokenChainId: number;
|
23479
23098
|
boostTokenThreshold: number;
|
23480
23099
|
boostConfiguration: {
|
@@ -23497,8 +23116,6 @@ declare const app: Elysia<"", {
|
|
23497
23116
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23498
23117
|
eligibilityTokenChainId: number;
|
23499
23118
|
eligibilityTokenAddress: string;
|
23500
|
-
eligibilityTokenSymbol?: string | undefined;
|
23501
|
-
eligibilityTokenDecimals?: number | undefined;
|
23502
23119
|
eligibilityTokenThreshold: number;
|
23503
23120
|
eligibilityDuration: number;
|
23504
23121
|
} | {
|
@@ -23652,12 +23269,13 @@ declare const app: Elysia<"", {
|
|
23652
23269
|
};
|
23653
23270
|
} | undefined;
|
23654
23271
|
}) | ({
|
23655
|
-
campaignType: import("@package/resources/enums").
|
23272
|
+
campaignType: import("@package/resources/enums").ERC20;
|
23656
23273
|
whitelist: string[];
|
23657
23274
|
blacklist: string[];
|
23658
23275
|
endTimestamp: number;
|
23659
23276
|
url?: string | undefined;
|
23660
|
-
|
23277
|
+
targetToken: string;
|
23278
|
+
forwarders: string[];
|
23661
23279
|
} & {
|
23662
23280
|
rewardToken: string;
|
23663
23281
|
amount: string;
|
@@ -23680,14 +23298,10 @@ declare const app: Elysia<"", {
|
|
23680
23298
|
hookType: import("@package/resources/enums").BOOST;
|
23681
23299
|
boostTokenChainId: number;
|
23682
23300
|
boostTokenAddress: string;
|
23683
|
-
boostTokenSymbol?: string | undefined;
|
23684
|
-
boostTokenDecimals?: number | undefined;
|
23685
23301
|
boostMultiplicator: number;
|
23686
23302
|
} | {
|
23687
23303
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23688
23304
|
boostTokenAddress: string;
|
23689
|
-
boostTokenDecimals?: number | undefined;
|
23690
|
-
boostTokenSymbol?: string | undefined;
|
23691
23305
|
boostTokenChainId: number;
|
23692
23306
|
boostTokenThreshold: number;
|
23693
23307
|
boostConfiguration: {
|
@@ -23710,8 +23324,6 @@ declare const app: Elysia<"", {
|
|
23710
23324
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23711
23325
|
eligibilityTokenChainId: number;
|
23712
23326
|
eligibilityTokenAddress: string;
|
23713
|
-
eligibilityTokenSymbol?: string | undefined;
|
23714
|
-
eligibilityTokenDecimals?: number | undefined;
|
23715
23327
|
eligibilityTokenThreshold: number;
|
23716
23328
|
eligibilityDuration: number;
|
23717
23329
|
} | {
|
@@ -23865,12 +23477,15 @@ declare const app: Elysia<"", {
|
|
23865
23477
|
};
|
23866
23478
|
} | undefined;
|
23867
23479
|
}) | ({
|
23868
|
-
campaignType: import("@package/resources/enums").
|
23480
|
+
campaignType: import("@package/resources/enums").ERC20_SNAPSHOT;
|
23869
23481
|
whitelist: string[];
|
23870
23482
|
blacklist: string[];
|
23871
|
-
endTimestamp: number;
|
23872
|
-
url?: string | undefined;
|
23873
23483
|
targetToken: string;
|
23484
|
+
url?: string | undefined;
|
23485
|
+
forwarders: string[];
|
23486
|
+
usesBlockNumber: boolean;
|
23487
|
+
snapshotTimestamp?: number | undefined;
|
23488
|
+
snapshotBlockNumber?: number | undefined;
|
23874
23489
|
} & {
|
23875
23490
|
rewardToken: string;
|
23876
23491
|
amount: string;
|
@@ -23893,14 +23508,10 @@ declare const app: Elysia<"", {
|
|
23893
23508
|
hookType: import("@package/resources/enums").BOOST;
|
23894
23509
|
boostTokenChainId: number;
|
23895
23510
|
boostTokenAddress: string;
|
23896
|
-
boostTokenSymbol?: string | undefined;
|
23897
|
-
boostTokenDecimals?: number | undefined;
|
23898
23511
|
boostMultiplicator: number;
|
23899
23512
|
} | {
|
23900
23513
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23901
23514
|
boostTokenAddress: string;
|
23902
|
-
boostTokenDecimals?: number | undefined;
|
23903
|
-
boostTokenSymbol?: string | undefined;
|
23904
23515
|
boostTokenChainId: number;
|
23905
23516
|
boostTokenThreshold: number;
|
23906
23517
|
boostConfiguration: {
|
@@ -23923,8 +23534,6 @@ declare const app: Elysia<"", {
|
|
23923
23534
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23924
23535
|
eligibilityTokenChainId: number;
|
23925
23536
|
eligibilityTokenAddress: string;
|
23926
|
-
eligibilityTokenSymbol?: string | undefined;
|
23927
|
-
eligibilityTokenDecimals?: number | undefined;
|
23928
23537
|
eligibilityTokenThreshold: number;
|
23929
23538
|
eligibilityDuration: number;
|
23930
23539
|
} | {
|
@@ -24078,12 +23687,9 @@ declare const app: Elysia<"", {
|
|
24078
23687
|
};
|
24079
23688
|
} | undefined;
|
24080
23689
|
}) | ({
|
24081
|
-
campaignType: import("@package/resources/enums").
|
24082
|
-
|
24083
|
-
blacklist: string[];
|
24084
|
-
endTimestamp: number;
|
23690
|
+
campaignType: import("@package/resources/enums").JSON_AIRDROP;
|
23691
|
+
jsonUrl: string;
|
24085
23692
|
url?: string | undefined;
|
24086
|
-
collateral: string;
|
24087
23693
|
} & {
|
24088
23694
|
rewardToken: string;
|
24089
23695
|
amount: string;
|
@@ -24106,14 +23712,10 @@ declare const app: Elysia<"", {
|
|
24106
23712
|
hookType: import("@package/resources/enums").BOOST;
|
24107
23713
|
boostTokenChainId: number;
|
24108
23714
|
boostTokenAddress: string;
|
24109
|
-
boostTokenSymbol?: string | undefined;
|
24110
|
-
boostTokenDecimals?: number | undefined;
|
24111
23715
|
boostMultiplicator: number;
|
24112
23716
|
} | {
|
24113
23717
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
24114
23718
|
boostTokenAddress: string;
|
24115
|
-
boostTokenDecimals?: number | undefined;
|
24116
|
-
boostTokenSymbol?: string | undefined;
|
24117
23719
|
boostTokenChainId: number;
|
24118
23720
|
boostTokenThreshold: number;
|
24119
23721
|
boostConfiguration: {
|
@@ -24136,8 +23738,6 @@ declare const app: Elysia<"", {
|
|
24136
23738
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
24137
23739
|
eligibilityTokenChainId: number;
|
24138
23740
|
eligibilityTokenAddress: string;
|
24139
|
-
eligibilityTokenSymbol?: string | undefined;
|
24140
|
-
eligibilityTokenDecimals?: number | undefined;
|
24141
23741
|
eligibilityTokenThreshold: number;
|
24142
23742
|
eligibilityDuration: number;
|
24143
23743
|
} | {
|
@@ -24291,20 +23891,12 @@ declare const app: Elysia<"", {
|
|
24291
23891
|
};
|
24292
23892
|
} | undefined;
|
24293
23893
|
}) | ({
|
24294
|
-
campaignType: import("@package/resources/enums").
|
24295
|
-
whitelist: string[];
|
24296
|
-
blacklist: string[];
|
23894
|
+
campaignType: import("@package/resources/enums").MAPPING;
|
24297
23895
|
endTimestamp: number;
|
24298
23896
|
url?: string | undefined;
|
24299
|
-
|
24300
|
-
|
24301
|
-
|
24302
|
-
weightToken0: number;
|
24303
|
-
weightToken1: number;
|
24304
|
-
lowerPriceBond?: number | undefined;
|
24305
|
-
upperPriceBond?: number | undefined;
|
24306
|
-
lowerPriceTolerance?: number | undefined;
|
24307
|
-
upperPriceTolerance?: number | undefined;
|
23897
|
+
protocol: any;
|
23898
|
+
fromAddress: string;
|
23899
|
+
toAddress: string;
|
24308
23900
|
} & {
|
24309
23901
|
rewardToken: string;
|
24310
23902
|
amount: string;
|
@@ -24327,14 +23919,10 @@ declare const app: Elysia<"", {
|
|
24327
23919
|
hookType: import("@package/resources/enums").BOOST;
|
24328
23920
|
boostTokenChainId: number;
|
24329
23921
|
boostTokenAddress: string;
|
24330
|
-
boostTokenSymbol?: string | undefined;
|
24331
|
-
boostTokenDecimals?: number | undefined;
|
24332
23922
|
boostMultiplicator: number;
|
24333
23923
|
} | {
|
24334
23924
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
24335
23925
|
boostTokenAddress: string;
|
24336
|
-
boostTokenDecimals?: number | undefined;
|
24337
|
-
boostTokenSymbol?: string | undefined;
|
24338
23926
|
boostTokenChainId: number;
|
24339
23927
|
boostTokenThreshold: number;
|
24340
23928
|
boostConfiguration: {
|
@@ -24357,8 +23945,6 @@ declare const app: Elysia<"", {
|
|
24357
23945
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
24358
23946
|
eligibilityTokenChainId: number;
|
24359
23947
|
eligibilityTokenAddress: string;
|
24360
|
-
eligibilityTokenSymbol?: string | undefined;
|
24361
|
-
eligibilityTokenDecimals?: number | undefined;
|
24362
23948
|
eligibilityTokenThreshold: number;
|
24363
23949
|
eligibilityDuration: number;
|
24364
23950
|
} | {
|
@@ -24512,20 +24098,15 @@ declare const app: Elysia<"", {
|
|
24512
24098
|
};
|
24513
24099
|
} | undefined;
|
24514
24100
|
}) | ({
|
24515
|
-
campaignType: import("@package/resources/enums").
|
24101
|
+
campaignType: import("@package/resources/enums").MORPHO;
|
24516
24102
|
whitelist: string[];
|
24517
24103
|
blacklist: string[];
|
24518
24104
|
endTimestamp: number;
|
24519
24105
|
url?: string | undefined;
|
24520
|
-
|
24521
|
-
|
24522
|
-
|
24523
|
-
|
24524
|
-
weightToken1: number;
|
24525
|
-
lowerPriceBond?: number | undefined;
|
24526
|
-
upperPriceBond?: number | undefined;
|
24527
|
-
lowerPriceTolerance?: number | undefined;
|
24528
|
-
upperPriceTolerance?: number | undefined;
|
24106
|
+
forwarders: string[];
|
24107
|
+
subCampaignType: import("@package/resources/enums").MorphoSubCampaignType;
|
24108
|
+
targetToken?: string | undefined;
|
24109
|
+
marketId?: string | undefined;
|
24529
24110
|
} & {
|
24530
24111
|
rewardToken: string;
|
24531
24112
|
amount: string;
|
@@ -24548,14 +24129,10 @@ declare const app: Elysia<"", {
|
|
24548
24129
|
hookType: import("@package/resources/enums").BOOST;
|
24549
24130
|
boostTokenChainId: number;
|
24550
24131
|
boostTokenAddress: string;
|
24551
|
-
boostTokenSymbol?: string | undefined;
|
24552
|
-
boostTokenDecimals?: number | undefined;
|
24553
24132
|
boostMultiplicator: number;
|
24554
24133
|
} | {
|
24555
24134
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
24556
24135
|
boostTokenAddress: string;
|
24557
|
-
boostTokenDecimals?: number | undefined;
|
24558
|
-
boostTokenSymbol?: string | undefined;
|
24559
24136
|
boostTokenChainId: number;
|
24560
24137
|
boostTokenThreshold: number;
|
24561
24138
|
boostConfiguration: {
|
@@ -24578,8 +24155,6 @@ declare const app: Elysia<"", {
|
|
24578
24155
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
24579
24156
|
eligibilityTokenChainId: number;
|
24580
24157
|
eligibilityTokenAddress: string;
|
24581
|
-
eligibilityTokenSymbol?: string | undefined;
|
24582
|
-
eligibilityTokenDecimals?: number | undefined;
|
24583
24158
|
eligibilityTokenThreshold: number;
|
24584
24159
|
eligibilityDuration: number;
|
24585
24160
|
} | {
|
@@ -24733,11 +24308,13 @@ declare const app: Elysia<"", {
|
|
24733
24308
|
};
|
24734
24309
|
} | undefined;
|
24735
24310
|
}) | ({
|
24736
|
-
campaignType: import("@package/resources/enums").
|
24737
|
-
|
24738
|
-
url?: string | undefined;
|
24739
|
-
token: string;
|
24311
|
+
campaignType: import("@package/resources/enums").RADIANT;
|
24312
|
+
whitelist: string[];
|
24740
24313
|
blacklist: string[];
|
24314
|
+
endTimestamp: number;
|
24315
|
+
targetToken: string;
|
24316
|
+
forwarders: string[];
|
24317
|
+
capInUSD?: string | undefined;
|
24741
24318
|
} & {
|
24742
24319
|
rewardToken: string;
|
24743
24320
|
amount: string;
|
@@ -24760,14 +24337,10 @@ declare const app: Elysia<"", {
|
|
24760
24337
|
hookType: import("@package/resources/enums").BOOST;
|
24761
24338
|
boostTokenChainId: number;
|
24762
24339
|
boostTokenAddress: string;
|
24763
|
-
boostTokenSymbol?: string | undefined;
|
24764
|
-
boostTokenDecimals?: number | undefined;
|
24765
24340
|
boostMultiplicator: number;
|
24766
24341
|
} | {
|
24767
24342
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
24768
24343
|
boostTokenAddress: string;
|
24769
|
-
boostTokenDecimals?: number | undefined;
|
24770
|
-
boostTokenSymbol?: string | undefined;
|
24771
24344
|
boostTokenChainId: number;
|
24772
24345
|
boostTokenThreshold: number;
|
24773
24346
|
boostConfiguration: {
|
@@ -24790,8 +24363,6 @@ declare const app: Elysia<"", {
|
|
24790
24363
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
24791
24364
|
eligibilityTokenChainId: number;
|
24792
24365
|
eligibilityTokenAddress: string;
|
24793
|
-
eligibilityTokenSymbol?: string | undefined;
|
24794
|
-
eligibilityTokenDecimals?: number | undefined;
|
24795
24366
|
eligibilityTokenThreshold: number;
|
24796
24367
|
eligibilityDuration: number;
|
24797
24368
|
} | {
|
@@ -24945,13 +24516,14 @@ declare const app: Elysia<"", {
|
|
24945
24516
|
};
|
24946
24517
|
} | undefined;
|
24947
24518
|
}) | ({
|
24948
|
-
campaignType: import("@package/resources/enums").
|
24519
|
+
campaignType: import("@package/resources/enums").SILO;
|
24949
24520
|
whitelist: string[];
|
24950
24521
|
blacklist: string[];
|
24522
|
+
subCampaignType: import("@package/resources/enums").SILOSubCampaignType;
|
24951
24523
|
endTimestamp: number;
|
24952
|
-
url?: string | undefined;
|
24953
24524
|
targetToken: string;
|
24954
|
-
|
24525
|
+
repository: string;
|
24526
|
+
forwarders: string[];
|
24955
24527
|
} & {
|
24956
24528
|
rewardToken: string;
|
24957
24529
|
amount: string;
|
@@ -24974,14 +24546,10 @@ declare const app: Elysia<"", {
|
|
24974
24546
|
hookType: import("@package/resources/enums").BOOST;
|
24975
24547
|
boostTokenChainId: number;
|
24976
24548
|
boostTokenAddress: string;
|
24977
|
-
boostTokenSymbol?: string | undefined;
|
24978
|
-
boostTokenDecimals?: number | undefined;
|
24979
24549
|
boostMultiplicator: number;
|
24980
24550
|
} | {
|
24981
24551
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
24982
24552
|
boostTokenAddress: string;
|
24983
|
-
boostTokenDecimals?: number | undefined;
|
24984
|
-
boostTokenSymbol?: string | undefined;
|
24985
24553
|
boostTokenChainId: number;
|
24986
24554
|
boostTokenThreshold: number;
|
24987
24555
|
boostConfiguration: {
|
@@ -25004,8 +24572,6 @@ declare const app: Elysia<"", {
|
|
25004
24572
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
25005
24573
|
eligibilityTokenChainId: number;
|
25006
24574
|
eligibilityTokenAddress: string;
|
25007
|
-
eligibilityTokenSymbol?: string | undefined;
|
25008
|
-
eligibilityTokenDecimals?: number | undefined;
|
25009
24575
|
eligibilityTokenThreshold: number;
|
25010
24576
|
eligibilityDuration: number;
|
25011
24577
|
} | {
|