@merkl/api 1.4.7 → 1.4.8
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 +240 -672
- 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/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 +4 -440
- 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/programPayload/programPayload.controller.d.ts +0 -432
- 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 +13 -449
- package/dist/src/utils/models.d.ts +4 -8
- package/package.json +1 -1
package/dist/src/eden/index.d.ts
CHANGED
@@ -8605,13 +8605,20 @@ declare const eden: {
|
|
8605
8605
|
};
|
8606
8606
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
8607
8607
|
200: ({
|
8608
|
-
campaignType: CampaignType.
|
8608
|
+
campaignType: CampaignType.UNISWAP_V4;
|
8609
8609
|
whitelist: string[];
|
8610
8610
|
blacklist: string[];
|
8611
8611
|
endTimestamp: number;
|
8612
8612
|
url?: string | undefined;
|
8613
|
-
|
8614
|
-
|
8613
|
+
poolId: string;
|
8614
|
+
isOutOfRangeIncentivized: boolean;
|
8615
|
+
weightFees: number;
|
8616
|
+
weightToken0: number;
|
8617
|
+
weightToken1: number;
|
8618
|
+
lowerPriceBond?: number | undefined;
|
8619
|
+
upperPriceBond?: number | undefined;
|
8620
|
+
lowerPriceTolerance?: number | undefined;
|
8621
|
+
upperPriceTolerance?: number | undefined;
|
8615
8622
|
} & {
|
8616
8623
|
rewardToken: string;
|
8617
8624
|
amount: string;
|
@@ -8634,14 +8641,10 @@ declare const eden: {
|
|
8634
8641
|
hookType: import("@package/resources/enums").BOOST;
|
8635
8642
|
boostTokenChainId: number;
|
8636
8643
|
boostTokenAddress: string;
|
8637
|
-
boostTokenSymbol?: string | undefined;
|
8638
|
-
boostTokenDecimals?: number | undefined;
|
8639
8644
|
boostMultiplicator: number;
|
8640
8645
|
} | {
|
8641
8646
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
8642
8647
|
boostTokenAddress: string;
|
8643
|
-
boostTokenDecimals?: number | undefined;
|
8644
|
-
boostTokenSymbol?: string | undefined;
|
8645
8648
|
boostTokenChainId: number;
|
8646
8649
|
boostTokenThreshold: number;
|
8647
8650
|
boostConfiguration: {
|
@@ -8664,8 +8667,6 @@ declare const eden: {
|
|
8664
8667
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
8665
8668
|
eligibilityTokenChainId: number;
|
8666
8669
|
eligibilityTokenAddress: string;
|
8667
|
-
eligibilityTokenSymbol?: string | undefined;
|
8668
|
-
eligibilityTokenDecimals?: number | undefined;
|
8669
8670
|
eligibilityTokenThreshold: number;
|
8670
8671
|
eligibilityDuration: number;
|
8671
8672
|
} | {
|
@@ -8819,12 +8820,20 @@ declare const eden: {
|
|
8819
8820
|
};
|
8820
8821
|
} | undefined;
|
8821
8822
|
}) | ({
|
8822
|
-
campaignType: CampaignType.
|
8823
|
+
campaignType: CampaignType.EKUBO;
|
8823
8824
|
whitelist: string[];
|
8824
8825
|
blacklist: string[];
|
8825
8826
|
endTimestamp: number;
|
8826
8827
|
url?: string | undefined;
|
8827
|
-
|
8828
|
+
poolId: string;
|
8829
|
+
isOutOfRangeIncentivized: boolean;
|
8830
|
+
weightFees: number;
|
8831
|
+
weightToken0: number;
|
8832
|
+
weightToken1: number;
|
8833
|
+
lowerPriceBond?: number | undefined;
|
8834
|
+
upperPriceBond?: number | undefined;
|
8835
|
+
lowerPriceTolerance?: number | undefined;
|
8836
|
+
upperPriceTolerance?: number | undefined;
|
8828
8837
|
} & {
|
8829
8838
|
rewardToken: string;
|
8830
8839
|
amount: string;
|
@@ -8847,14 +8856,10 @@ declare const eden: {
|
|
8847
8856
|
hookType: import("@package/resources/enums").BOOST;
|
8848
8857
|
boostTokenChainId: number;
|
8849
8858
|
boostTokenAddress: string;
|
8850
|
-
boostTokenSymbol?: string | undefined;
|
8851
|
-
boostTokenDecimals?: number | undefined;
|
8852
8859
|
boostMultiplicator: number;
|
8853
8860
|
} | {
|
8854
8861
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
8855
8862
|
boostTokenAddress: string;
|
8856
|
-
boostTokenDecimals?: number | undefined;
|
8857
|
-
boostTokenSymbol?: string | undefined;
|
8858
8863
|
boostTokenChainId: number;
|
8859
8864
|
boostTokenThreshold: number;
|
8860
8865
|
boostConfiguration: {
|
@@ -8877,8 +8882,6 @@ declare const eden: {
|
|
8877
8882
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
8878
8883
|
eligibilityTokenChainId: number;
|
8879
8884
|
eligibilityTokenAddress: string;
|
8880
|
-
eligibilityTokenSymbol?: string | undefined;
|
8881
|
-
eligibilityTokenDecimals?: number | undefined;
|
8882
8885
|
eligibilityTokenThreshold: number;
|
8883
8886
|
eligibilityDuration: number;
|
8884
8887
|
} | {
|
@@ -9032,7 +9035,7 @@ declare const eden: {
|
|
9032
9035
|
};
|
9033
9036
|
} | undefined;
|
9034
9037
|
}) | ({
|
9035
|
-
campaignType: CampaignType.
|
9038
|
+
campaignType: CampaignType.CONVEX;
|
9036
9039
|
whitelist: string[];
|
9037
9040
|
blacklist: string[];
|
9038
9041
|
endTimestamp: number;
|
@@ -9060,14 +9063,10 @@ declare const eden: {
|
|
9060
9063
|
hookType: import("@package/resources/enums").BOOST;
|
9061
9064
|
boostTokenChainId: number;
|
9062
9065
|
boostTokenAddress: string;
|
9063
|
-
boostTokenSymbol?: string | undefined;
|
9064
|
-
boostTokenDecimals?: number | undefined;
|
9065
9066
|
boostMultiplicator: number;
|
9066
9067
|
} | {
|
9067
9068
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
9068
9069
|
boostTokenAddress: string;
|
9069
|
-
boostTokenDecimals?: number | undefined;
|
9070
|
-
boostTokenSymbol?: string | undefined;
|
9071
9070
|
boostTokenChainId: number;
|
9072
9071
|
boostTokenThreshold: number;
|
9073
9072
|
boostConfiguration: {
|
@@ -9090,8 +9089,6 @@ declare const eden: {
|
|
9090
9089
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
9091
9090
|
eligibilityTokenChainId: number;
|
9092
9091
|
eligibilityTokenAddress: string;
|
9093
|
-
eligibilityTokenSymbol?: string | undefined;
|
9094
|
-
eligibilityTokenDecimals?: number | undefined;
|
9095
9092
|
eligibilityTokenThreshold: number;
|
9096
9093
|
eligibilityDuration: number;
|
9097
9094
|
} | {
|
@@ -9245,13 +9242,12 @@ declare const eden: {
|
|
9245
9242
|
};
|
9246
9243
|
} | undefined;
|
9247
9244
|
}) | ({
|
9248
|
-
campaignType: CampaignType.
|
9245
|
+
campaignType: CampaignType.M0;
|
9249
9246
|
whitelist: string[];
|
9250
9247
|
blacklist: string[];
|
9251
9248
|
endTimestamp: number;
|
9252
9249
|
url?: string | undefined;
|
9253
|
-
|
9254
|
-
subCampaignType: import("@package/resources/enums").AjnaSubCampaignType;
|
9250
|
+
markets: string[];
|
9255
9251
|
forwarders: string[];
|
9256
9252
|
} & {
|
9257
9253
|
rewardToken: string;
|
@@ -9275,14 +9271,10 @@ declare const eden: {
|
|
9275
9271
|
hookType: import("@package/resources/enums").BOOST;
|
9276
9272
|
boostTokenChainId: number;
|
9277
9273
|
boostTokenAddress: string;
|
9278
|
-
boostTokenSymbol?: string | undefined;
|
9279
|
-
boostTokenDecimals?: number | undefined;
|
9280
9274
|
boostMultiplicator: number;
|
9281
9275
|
} | {
|
9282
9276
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
9283
9277
|
boostTokenAddress: string;
|
9284
|
-
boostTokenDecimals?: number | undefined;
|
9285
|
-
boostTokenSymbol?: string | undefined;
|
9286
9278
|
boostTokenChainId: number;
|
9287
9279
|
boostTokenThreshold: number;
|
9288
9280
|
boostConfiguration: {
|
@@ -9305,8 +9297,6 @@ declare const eden: {
|
|
9305
9297
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
9306
9298
|
eligibilityTokenChainId: number;
|
9307
9299
|
eligibilityTokenAddress: string;
|
9308
|
-
eligibilityTokenSymbol?: string | undefined;
|
9309
|
-
eligibilityTokenDecimals?: number | undefined;
|
9310
9300
|
eligibilityTokenThreshold: number;
|
9311
9301
|
eligibilityDuration: number;
|
9312
9302
|
} | {
|
@@ -9460,20 +9450,12 @@ declare const eden: {
|
|
9460
9450
|
};
|
9461
9451
|
} | undefined;
|
9462
9452
|
}) | ({
|
9463
|
-
campaignType: CampaignType.
|
9453
|
+
campaignType: CampaignType.AAVE_SUPPLY;
|
9464
9454
|
whitelist: string[];
|
9465
9455
|
blacklist: string[];
|
9466
9456
|
endTimestamp: number;
|
9467
9457
|
url?: string | undefined;
|
9468
|
-
|
9469
|
-
baseToken: string;
|
9470
|
-
quoteToken: string;
|
9471
|
-
poolIdx: number;
|
9472
|
-
isOutOfRangeIncentivized: boolean;
|
9473
|
-
weightFees: number;
|
9474
|
-
weightToken0: number;
|
9475
|
-
weightToken1: number;
|
9476
|
-
forwarders: string[];
|
9458
|
+
targetToken: string;
|
9477
9459
|
} & {
|
9478
9460
|
rewardToken: string;
|
9479
9461
|
amount: string;
|
@@ -9496,14 +9478,10 @@ declare const eden: {
|
|
9496
9478
|
hookType: import("@package/resources/enums").BOOST;
|
9497
9479
|
boostTokenChainId: number;
|
9498
9480
|
boostTokenAddress: string;
|
9499
|
-
boostTokenSymbol?: string | undefined;
|
9500
|
-
boostTokenDecimals?: number | undefined;
|
9501
9481
|
boostMultiplicator: number;
|
9502
9482
|
} | {
|
9503
9483
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
9504
9484
|
boostTokenAddress: string;
|
9505
|
-
boostTokenDecimals?: number | undefined;
|
9506
|
-
boostTokenSymbol?: string | undefined;
|
9507
9485
|
boostTokenChainId: number;
|
9508
9486
|
boostTokenThreshold: number;
|
9509
9487
|
boostConfiguration: {
|
@@ -9526,8 +9504,6 @@ declare const eden: {
|
|
9526
9504
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
9527
9505
|
eligibilityTokenChainId: number;
|
9528
9506
|
eligibilityTokenAddress: string;
|
9529
|
-
eligibilityTokenSymbol?: string | undefined;
|
9530
|
-
eligibilityTokenDecimals?: number | undefined;
|
9531
9507
|
eligibilityTokenThreshold: number;
|
9532
9508
|
eligibilityDuration: number;
|
9533
9509
|
} | {
|
@@ -9681,13 +9657,12 @@ declare const eden: {
|
|
9681
9657
|
};
|
9682
9658
|
} | undefined;
|
9683
9659
|
}) | ({
|
9684
|
-
campaignType: CampaignType.
|
9660
|
+
campaignType: CampaignType.AAVE_BORROW;
|
9685
9661
|
whitelist: string[];
|
9686
9662
|
blacklist: string[];
|
9687
9663
|
endTimestamp: number;
|
9688
9664
|
url?: string | undefined;
|
9689
9665
|
targetToken: string;
|
9690
|
-
forwarders: string[];
|
9691
9666
|
} & {
|
9692
9667
|
rewardToken: string;
|
9693
9668
|
amount: string;
|
@@ -9710,14 +9685,10 @@ declare const eden: {
|
|
9710
9685
|
hookType: import("@package/resources/enums").BOOST;
|
9711
9686
|
boostTokenChainId: number;
|
9712
9687
|
boostTokenAddress: string;
|
9713
|
-
boostTokenSymbol?: string | undefined;
|
9714
|
-
boostTokenDecimals?: number | undefined;
|
9715
9688
|
boostMultiplicator: number;
|
9716
9689
|
} | {
|
9717
9690
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
9718
9691
|
boostTokenAddress: string;
|
9719
|
-
boostTokenDecimals?: number | undefined;
|
9720
|
-
boostTokenSymbol?: string | undefined;
|
9721
9692
|
boostTokenChainId: number;
|
9722
9693
|
boostTokenThreshold: number;
|
9723
9694
|
boostConfiguration: {
|
@@ -9740,8 +9711,6 @@ declare const eden: {
|
|
9740
9711
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
9741
9712
|
eligibilityTokenChainId: number;
|
9742
9713
|
eligibilityTokenAddress: string;
|
9743
|
-
eligibilityTokenSymbol?: string | undefined;
|
9744
|
-
eligibilityTokenDecimals?: number | undefined;
|
9745
9714
|
eligibilityTokenThreshold: number;
|
9746
9715
|
eligibilityDuration: number;
|
9747
9716
|
} | {
|
@@ -9895,12 +9864,14 @@ declare const eden: {
|
|
9895
9864
|
};
|
9896
9865
|
} | undefined;
|
9897
9866
|
}) | ({
|
9898
|
-
campaignType: CampaignType.
|
9867
|
+
campaignType: CampaignType.AJNA;
|
9899
9868
|
whitelist: string[];
|
9900
9869
|
blacklist: string[];
|
9901
9870
|
endTimestamp: number;
|
9902
9871
|
url?: string | undefined;
|
9903
|
-
|
9872
|
+
poolId: string;
|
9873
|
+
subCampaignType: import("@package/resources/enums").AjnaSubCampaignType;
|
9874
|
+
forwarders: string[];
|
9904
9875
|
} & {
|
9905
9876
|
rewardToken: string;
|
9906
9877
|
amount: string;
|
@@ -9923,14 +9894,10 @@ declare const eden: {
|
|
9923
9894
|
hookType: import("@package/resources/enums").BOOST;
|
9924
9895
|
boostTokenChainId: number;
|
9925
9896
|
boostTokenAddress: string;
|
9926
|
-
boostTokenSymbol?: string | undefined;
|
9927
|
-
boostTokenDecimals?: number | undefined;
|
9928
9897
|
boostMultiplicator: number;
|
9929
9898
|
} | {
|
9930
9899
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
9931
9900
|
boostTokenAddress: string;
|
9932
|
-
boostTokenDecimals?: number | undefined;
|
9933
|
-
boostTokenSymbol?: string | undefined;
|
9934
9901
|
boostTokenChainId: number;
|
9935
9902
|
boostTokenThreshold: number;
|
9936
9903
|
boostConfiguration: {
|
@@ -9953,8 +9920,6 @@ declare const eden: {
|
|
9953
9920
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
9954
9921
|
eligibilityTokenChainId: number;
|
9955
9922
|
eligibilityTokenAddress: string;
|
9956
|
-
eligibilityTokenSymbol?: string | undefined;
|
9957
|
-
eligibilityTokenDecimals?: number | undefined;
|
9958
9923
|
eligibilityTokenThreshold: number;
|
9959
9924
|
eligibilityDuration: number;
|
9960
9925
|
} | {
|
@@ -10108,12 +10073,20 @@ declare const eden: {
|
|
10108
10073
|
};
|
10109
10074
|
} | undefined;
|
10110
10075
|
}) | ({
|
10111
|
-
campaignType: CampaignType.
|
10076
|
+
campaignType: CampaignType.AMBIENTPROCESSOR;
|
10112
10077
|
whitelist: string[];
|
10113
10078
|
blacklist: string[];
|
10114
10079
|
endTimestamp: number;
|
10115
10080
|
url?: string | undefined;
|
10116
|
-
|
10081
|
+
poolId: string;
|
10082
|
+
baseToken: string;
|
10083
|
+
quoteToken: string;
|
10084
|
+
poolIdx: number;
|
10085
|
+
isOutOfRangeIncentivized: boolean;
|
10086
|
+
weightFees: number;
|
10087
|
+
weightToken0: number;
|
10088
|
+
weightToken1: number;
|
10089
|
+
forwarders: string[];
|
10117
10090
|
} & {
|
10118
10091
|
rewardToken: string;
|
10119
10092
|
amount: string;
|
@@ -10136,14 +10109,10 @@ declare const eden: {
|
|
10136
10109
|
hookType: import("@package/resources/enums").BOOST;
|
10137
10110
|
boostTokenChainId: number;
|
10138
10111
|
boostTokenAddress: string;
|
10139
|
-
boostTokenSymbol?: string | undefined;
|
10140
|
-
boostTokenDecimals?: number | undefined;
|
10141
10112
|
boostMultiplicator: number;
|
10142
10113
|
} | {
|
10143
10114
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
10144
10115
|
boostTokenAddress: string;
|
10145
|
-
boostTokenDecimals?: number | undefined;
|
10146
|
-
boostTokenSymbol?: string | undefined;
|
10147
10116
|
boostTokenChainId: number;
|
10148
10117
|
boostTokenThreshold: number;
|
10149
10118
|
boostConfiguration: {
|
@@ -10166,8 +10135,6 @@ declare const eden: {
|
|
10166
10135
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
10167
10136
|
eligibilityTokenChainId: number;
|
10168
10137
|
eligibilityTokenAddress: string;
|
10169
|
-
eligibilityTokenSymbol?: string | undefined;
|
10170
|
-
eligibilityTokenDecimals?: number | undefined;
|
10171
10138
|
eligibilityTokenThreshold: number;
|
10172
10139
|
eligibilityDuration: number;
|
10173
10140
|
} | {
|
@@ -10321,13 +10288,11 @@ declare const eden: {
|
|
10321
10288
|
};
|
10322
10289
|
} | undefined;
|
10323
10290
|
}) | ({
|
10324
|
-
campaignType: CampaignType.
|
10291
|
+
campaignType: CampaignType.BADGER;
|
10325
10292
|
whitelist: string[];
|
10326
10293
|
blacklist: string[];
|
10327
10294
|
endTimestamp: number;
|
10328
10295
|
url?: string | undefined;
|
10329
|
-
subCampaignType: import("@package/resources/enums").CompoundSubCampaignType;
|
10330
|
-
compFork: import("@package/resources/enums").CompFork;
|
10331
10296
|
targetToken: string;
|
10332
10297
|
forwarders: string[];
|
10333
10298
|
} & {
|
@@ -10352,14 +10317,10 @@ declare const eden: {
|
|
10352
10317
|
hookType: import("@package/resources/enums").BOOST;
|
10353
10318
|
boostTokenChainId: number;
|
10354
10319
|
boostTokenAddress: string;
|
10355
|
-
boostTokenSymbol?: string | undefined;
|
10356
|
-
boostTokenDecimals?: number | undefined;
|
10357
10320
|
boostMultiplicator: number;
|
10358
10321
|
} | {
|
10359
10322
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
10360
10323
|
boostTokenAddress: string;
|
10361
|
-
boostTokenDecimals?: number | undefined;
|
10362
|
-
boostTokenSymbol?: string | undefined;
|
10363
10324
|
boostTokenChainId: number;
|
10364
10325
|
boostTokenThreshold: number;
|
10365
10326
|
boostConfiguration: {
|
@@ -10382,8 +10343,6 @@ declare const eden: {
|
|
10382
10343
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
10383
10344
|
eligibilityTokenChainId: number;
|
10384
10345
|
eligibilityTokenAddress: string;
|
10385
|
-
eligibilityTokenSymbol?: string | undefined;
|
10386
|
-
eligibilityTokenDecimals?: number | undefined;
|
10387
10346
|
eligibilityTokenThreshold: number;
|
10388
10347
|
eligibilityDuration: number;
|
10389
10348
|
} | {
|
@@ -10537,13 +10496,12 @@ declare const eden: {
|
|
10537
10496
|
};
|
10538
10497
|
} | undefined;
|
10539
10498
|
}) | ({
|
10540
|
-
campaignType: CampaignType.
|
10499
|
+
campaignType: CampaignType.BUNNIHUB;
|
10541
10500
|
whitelist: string[];
|
10542
10501
|
blacklist: string[];
|
10543
10502
|
endTimestamp: number;
|
10544
10503
|
url?: string | undefined;
|
10545
10504
|
targetToken: string;
|
10546
|
-
subCampaignType: import("@package/resources/enums").CompoundSubCampaignType;
|
10547
10505
|
} & {
|
10548
10506
|
rewardToken: string;
|
10549
10507
|
amount: string;
|
@@ -10566,14 +10524,10 @@ declare const eden: {
|
|
10566
10524
|
hookType: import("@package/resources/enums").BOOST;
|
10567
10525
|
boostTokenChainId: number;
|
10568
10526
|
boostTokenAddress: string;
|
10569
|
-
boostTokenSymbol?: string | undefined;
|
10570
|
-
boostTokenDecimals?: number | undefined;
|
10571
10527
|
boostMultiplicator: number;
|
10572
10528
|
} | {
|
10573
10529
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
10574
10530
|
boostTokenAddress: string;
|
10575
|
-
boostTokenDecimals?: number | undefined;
|
10576
|
-
boostTokenSymbol?: string | undefined;
|
10577
10531
|
boostTokenChainId: number;
|
10578
10532
|
boostTokenThreshold: number;
|
10579
10533
|
boostConfiguration: {
|
@@ -10596,8 +10550,6 @@ declare const eden: {
|
|
10596
10550
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
10597
10551
|
eligibilityTokenChainId: number;
|
10598
10552
|
eligibilityTokenAddress: string;
|
10599
|
-
eligibilityTokenSymbol?: string | undefined;
|
10600
|
-
eligibilityTokenDecimals?: number | undefined;
|
10601
10553
|
eligibilityTokenThreshold: number;
|
10602
10554
|
eligibilityDuration: number;
|
10603
10555
|
} | {
|
@@ -10751,7 +10703,7 @@ declare const eden: {
|
|
10751
10703
|
};
|
10752
10704
|
} | undefined;
|
10753
10705
|
}) | ({
|
10754
|
-
campaignType: CampaignType.
|
10706
|
+
campaignType: CampaignType.CCL_TAC;
|
10755
10707
|
whitelist: string[];
|
10756
10708
|
blacklist: string[];
|
10757
10709
|
endTimestamp: number;
|
@@ -10779,14 +10731,10 @@ declare const eden: {
|
|
10779
10731
|
hookType: import("@package/resources/enums").BOOST;
|
10780
10732
|
boostTokenChainId: number;
|
10781
10733
|
boostTokenAddress: string;
|
10782
|
-
boostTokenSymbol?: string | undefined;
|
10783
|
-
boostTokenDecimals?: number | undefined;
|
10784
10734
|
boostMultiplicator: number;
|
10785
10735
|
} | {
|
10786
10736
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
10787
10737
|
boostTokenAddress: string;
|
10788
|
-
boostTokenDecimals?: number | undefined;
|
10789
|
-
boostTokenSymbol?: string | undefined;
|
10790
10738
|
boostTokenChainId: number;
|
10791
10739
|
boostTokenThreshold: number;
|
10792
10740
|
boostConfiguration: {
|
@@ -10809,8 +10757,6 @@ declare const eden: {
|
|
10809
10757
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
10810
10758
|
eligibilityTokenChainId: number;
|
10811
10759
|
eligibilityTokenAddress: string;
|
10812
|
-
eligibilityTokenSymbol?: string | undefined;
|
10813
|
-
eligibilityTokenDecimals?: number | undefined;
|
10814
10760
|
eligibilityTokenThreshold: number;
|
10815
10761
|
eligibilityDuration: number;
|
10816
10762
|
} | {
|
@@ -10964,16 +10910,15 @@ declare const eden: {
|
|
10964
10910
|
};
|
10965
10911
|
} | undefined;
|
10966
10912
|
}) | ({
|
10967
|
-
campaignType: CampaignType.
|
10913
|
+
campaignType: CampaignType.COMPOUND;
|
10968
10914
|
whitelist: string[];
|
10969
10915
|
blacklist: string[];
|
10970
10916
|
endTimestamp: number;
|
10971
10917
|
url?: string | undefined;
|
10972
|
-
|
10973
|
-
|
10974
|
-
|
10975
|
-
|
10976
|
-
weightToken1: number;
|
10918
|
+
subCampaignType: import("@package/resources/enums").CompoundSubCampaignType;
|
10919
|
+
compFork: import("@package/resources/enums").CompFork;
|
10920
|
+
targetToken: string;
|
10921
|
+
forwarders: string[];
|
10977
10922
|
} & {
|
10978
10923
|
rewardToken: string;
|
10979
10924
|
amount: string;
|
@@ -10996,14 +10941,10 @@ declare const eden: {
|
|
10996
10941
|
hookType: import("@package/resources/enums").BOOST;
|
10997
10942
|
boostTokenChainId: number;
|
10998
10943
|
boostTokenAddress: string;
|
10999
|
-
boostTokenSymbol?: string | undefined;
|
11000
|
-
boostTokenDecimals?: number | undefined;
|
11001
10944
|
boostMultiplicator: number;
|
11002
10945
|
} | {
|
11003
10946
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11004
10947
|
boostTokenAddress: string;
|
11005
|
-
boostTokenDecimals?: number | undefined;
|
11006
|
-
boostTokenSymbol?: string | undefined;
|
11007
10948
|
boostTokenChainId: number;
|
11008
10949
|
boostTokenThreshold: number;
|
11009
10950
|
boostConfiguration: {
|
@@ -11026,8 +10967,6 @@ declare const eden: {
|
|
11026
10967
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11027
10968
|
eligibilityTokenChainId: number;
|
11028
10969
|
eligibilityTokenAddress: string;
|
11029
|
-
eligibilityTokenSymbol?: string | undefined;
|
11030
|
-
eligibilityTokenDecimals?: number | undefined;
|
11031
10970
|
eligibilityTokenThreshold: number;
|
11032
10971
|
eligibilityDuration: number;
|
11033
10972
|
} | {
|
@@ -11181,13 +11120,13 @@ declare const eden: {
|
|
11181
11120
|
};
|
11182
11121
|
} | undefined;
|
11183
11122
|
}) | ({
|
11184
|
-
campaignType: CampaignType.
|
11123
|
+
campaignType: CampaignType.COMPOUND_V3;
|
11185
11124
|
whitelist: string[];
|
11186
11125
|
blacklist: string[];
|
11187
|
-
subCampaignType: import("@package/resources/enums").DolomiteSubCampaignType;
|
11188
11126
|
endTimestamp: number;
|
11127
|
+
url?: string | undefined;
|
11189
11128
|
targetToken: string;
|
11190
|
-
|
11129
|
+
subCampaignType: import("@package/resources/enums").CompoundSubCampaignType;
|
11191
11130
|
} & {
|
11192
11131
|
rewardToken: string;
|
11193
11132
|
amount: string;
|
@@ -11210,14 +11149,10 @@ declare const eden: {
|
|
11210
11149
|
hookType: import("@package/resources/enums").BOOST;
|
11211
11150
|
boostTokenChainId: number;
|
11212
11151
|
boostTokenAddress: string;
|
11213
|
-
boostTokenSymbol?: string | undefined;
|
11214
|
-
boostTokenDecimals?: number | undefined;
|
11215
11152
|
boostMultiplicator: number;
|
11216
11153
|
} | {
|
11217
11154
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11218
11155
|
boostTokenAddress: string;
|
11219
|
-
boostTokenDecimals?: number | undefined;
|
11220
|
-
boostTokenSymbol?: string | undefined;
|
11221
11156
|
boostTokenChainId: number;
|
11222
11157
|
boostTokenThreshold: number;
|
11223
11158
|
boostConfiguration: {
|
@@ -11240,8 +11175,6 @@ declare const eden: {
|
|
11240
11175
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11241
11176
|
eligibilityTokenChainId: number;
|
11242
11177
|
eligibilityTokenAddress: string;
|
11243
|
-
eligibilityTokenSymbol?: string | undefined;
|
11244
|
-
eligibilityTokenDecimals?: number | undefined;
|
11245
11178
|
eligibilityTokenThreshold: number;
|
11246
11179
|
eligibilityDuration: number;
|
11247
11180
|
} | {
|
@@ -11395,13 +11328,16 @@ declare const eden: {
|
|
11395
11328
|
};
|
11396
11329
|
} | undefined;
|
11397
11330
|
}) | ({
|
11398
|
-
campaignType: CampaignType.
|
11331
|
+
campaignType: CampaignType.CLAMM;
|
11399
11332
|
whitelist: string[];
|
11400
11333
|
blacklist: string[];
|
11401
11334
|
endTimestamp: number;
|
11402
11335
|
url?: string | undefined;
|
11403
|
-
|
11404
|
-
|
11336
|
+
poolAddress: string;
|
11337
|
+
isOutOfRangeIncentivized: boolean;
|
11338
|
+
weightFees: number;
|
11339
|
+
weightToken0: number;
|
11340
|
+
weightToken1: number;
|
11405
11341
|
} & {
|
11406
11342
|
rewardToken: string;
|
11407
11343
|
amount: string;
|
@@ -11424,14 +11360,10 @@ declare const eden: {
|
|
11424
11360
|
hookType: import("@package/resources/enums").BOOST;
|
11425
11361
|
boostTokenChainId: number;
|
11426
11362
|
boostTokenAddress: string;
|
11427
|
-
boostTokenSymbol?: string | undefined;
|
11428
|
-
boostTokenDecimals?: number | undefined;
|
11429
11363
|
boostMultiplicator: number;
|
11430
11364
|
} | {
|
11431
11365
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11432
11366
|
boostTokenAddress: string;
|
11433
|
-
boostTokenDecimals?: number | undefined;
|
11434
|
-
boostTokenSymbol?: string | undefined;
|
11435
11367
|
boostTokenChainId: number;
|
11436
11368
|
boostTokenThreshold: number;
|
11437
11369
|
boostConfiguration: {
|
@@ -11454,8 +11386,6 @@ declare const eden: {
|
|
11454
11386
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11455
11387
|
eligibilityTokenChainId: number;
|
11456
11388
|
eligibilityTokenAddress: string;
|
11457
|
-
eligibilityTokenSymbol?: string | undefined;
|
11458
|
-
eligibilityTokenDecimals?: number | undefined;
|
11459
11389
|
eligibilityTokenThreshold: number;
|
11460
11390
|
eligibilityDuration: number;
|
11461
11391
|
} | {
|
@@ -11609,20 +11539,13 @@ declare const eden: {
|
|
11609
11539
|
};
|
11610
11540
|
} | undefined;
|
11611
11541
|
}) | ({
|
11612
|
-
campaignType: CampaignType.
|
11542
|
+
campaignType: CampaignType.DOLOMITE;
|
11613
11543
|
whitelist: string[];
|
11614
11544
|
blacklist: string[];
|
11545
|
+
subCampaignType: import("@package/resources/enums").DolomiteSubCampaignType;
|
11615
11546
|
endTimestamp: number;
|
11616
|
-
|
11617
|
-
|
11618
|
-
isOutOfRangeIncentivized: boolean;
|
11619
|
-
weightFees: number;
|
11620
|
-
weightToken0: number;
|
11621
|
-
weightToken1: number;
|
11622
|
-
lowerPriceBond?: number | undefined;
|
11623
|
-
upperPriceBond?: number | undefined;
|
11624
|
-
lowerPriceTolerance?: number | undefined;
|
11625
|
-
upperPriceTolerance?: number | undefined;
|
11547
|
+
targetToken: string;
|
11548
|
+
forwarders: string[];
|
11626
11549
|
} & {
|
11627
11550
|
rewardToken: string;
|
11628
11551
|
amount: string;
|
@@ -11645,14 +11568,10 @@ declare const eden: {
|
|
11645
11568
|
hookType: import("@package/resources/enums").BOOST;
|
11646
11569
|
boostTokenChainId: number;
|
11647
11570
|
boostTokenAddress: string;
|
11648
|
-
boostTokenSymbol?: string | undefined;
|
11649
|
-
boostTokenDecimals?: number | undefined;
|
11650
11571
|
boostMultiplicator: number;
|
11651
11572
|
} | {
|
11652
11573
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11653
11574
|
boostTokenAddress: string;
|
11654
|
-
boostTokenDecimals?: number | undefined;
|
11655
|
-
boostTokenSymbol?: string | undefined;
|
11656
11575
|
boostTokenChainId: number;
|
11657
11576
|
boostTokenThreshold: number;
|
11658
11577
|
boostConfiguration: {
|
@@ -11675,8 +11594,6 @@ declare const eden: {
|
|
11675
11594
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11676
11595
|
eligibilityTokenChainId: number;
|
11677
11596
|
eligibilityTokenAddress: string;
|
11678
|
-
eligibilityTokenSymbol?: string | undefined;
|
11679
|
-
eligibilityTokenDecimals?: number | undefined;
|
11680
11597
|
eligibilityTokenThreshold: number;
|
11681
11598
|
eligibilityDuration: number;
|
11682
11599
|
} | {
|
@@ -11830,13 +11747,13 @@ declare const eden: {
|
|
11830
11747
|
};
|
11831
11748
|
} | undefined;
|
11832
11749
|
}) | ({
|
11833
|
-
campaignType: CampaignType.
|
11750
|
+
campaignType: CampaignType.EIGENLAYER;
|
11834
11751
|
whitelist: string[];
|
11835
11752
|
blacklist: string[];
|
11836
11753
|
endTimestamp: number;
|
11837
11754
|
url?: string | undefined;
|
11838
|
-
|
11839
|
-
|
11755
|
+
strategy: string;
|
11756
|
+
forwarders: string[];
|
11840
11757
|
} & {
|
11841
11758
|
rewardToken: string;
|
11842
11759
|
amount: string;
|
@@ -11859,14 +11776,10 @@ declare const eden: {
|
|
11859
11776
|
hookType: import("@package/resources/enums").BOOST;
|
11860
11777
|
boostTokenChainId: number;
|
11861
11778
|
boostTokenAddress: string;
|
11862
|
-
boostTokenSymbol?: string | undefined;
|
11863
|
-
boostTokenDecimals?: number | undefined;
|
11864
11779
|
boostMultiplicator: number;
|
11865
11780
|
} | {
|
11866
11781
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11867
11782
|
boostTokenAddress: string;
|
11868
|
-
boostTokenDecimals?: number | undefined;
|
11869
|
-
boostTokenSymbol?: string | undefined;
|
11870
11783
|
boostTokenChainId: number;
|
11871
11784
|
boostTokenThreshold: number;
|
11872
11785
|
boostConfiguration: {
|
@@ -11889,8 +11802,6 @@ declare const eden: {
|
|
11889
11802
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11890
11803
|
eligibilityTokenChainId: number;
|
11891
11804
|
eligibilityTokenAddress: string;
|
11892
|
-
eligibilityTokenSymbol?: string | undefined;
|
11893
|
-
eligibilityTokenDecimals?: number | undefined;
|
11894
11805
|
eligibilityTokenThreshold: number;
|
11895
11806
|
eligibilityDuration: number;
|
11896
11807
|
} | {
|
@@ -12044,10 +11955,13 @@ declare const eden: {
|
|
12044
11955
|
};
|
12045
11956
|
} | undefined;
|
12046
11957
|
}) | ({
|
12047
|
-
campaignType: CampaignType.
|
12048
|
-
|
12049
|
-
|
12050
|
-
|
11958
|
+
campaignType: CampaignType.EKUBO_POSITIONMANAGER;
|
11959
|
+
whitelist: string[];
|
11960
|
+
blacklist: string[];
|
11961
|
+
endTimestamp: number;
|
11962
|
+
url?: string | undefined;
|
11963
|
+
targetToken: string;
|
11964
|
+
tokenId: string;
|
12051
11965
|
} & {
|
12052
11966
|
rewardToken: string;
|
12053
11967
|
amount: string;
|
@@ -12070,14 +11984,10 @@ declare const eden: {
|
|
12070
11984
|
hookType: import("@package/resources/enums").BOOST;
|
12071
11985
|
boostTokenChainId: number;
|
12072
11986
|
boostTokenAddress: string;
|
12073
|
-
boostTokenSymbol?: string | undefined;
|
12074
|
-
boostTokenDecimals?: number | undefined;
|
12075
11987
|
boostMultiplicator: number;
|
12076
11988
|
} | {
|
12077
11989
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12078
11990
|
boostTokenAddress: string;
|
12079
|
-
boostTokenDecimals?: number | undefined;
|
12080
|
-
boostTokenSymbol?: string | undefined;
|
12081
11991
|
boostTokenChainId: number;
|
12082
11992
|
boostTokenThreshold: number;
|
12083
11993
|
boostConfiguration: {
|
@@ -12100,8 +12010,6 @@ declare const eden: {
|
|
12100
12010
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12101
12011
|
eligibilityTokenChainId: number;
|
12102
12012
|
eligibilityTokenAddress: string;
|
12103
|
-
eligibilityTokenSymbol?: string | undefined;
|
12104
|
-
eligibilityTokenDecimals?: number | undefined;
|
12105
12013
|
eligibilityTokenThreshold: number;
|
12106
12014
|
eligibilityDuration: number;
|
12107
12015
|
} | {
|
@@ -12255,12 +12163,10 @@ declare const eden: {
|
|
12255
12163
|
};
|
12256
12164
|
} | undefined;
|
12257
12165
|
}) | ({
|
12258
|
-
campaignType: CampaignType.
|
12259
|
-
|
12260
|
-
|
12261
|
-
|
12262
|
-
url?: string | undefined;
|
12263
|
-
vaultAddress: string;
|
12166
|
+
campaignType: CampaignType.ENCOMPASSING;
|
12167
|
+
rewardsUrl: string;
|
12168
|
+
endTimestamp?: number | undefined;
|
12169
|
+
dataUrl?: string | undefined;
|
12264
12170
|
} & {
|
12265
12171
|
rewardToken: string;
|
12266
12172
|
amount: string;
|
@@ -12283,14 +12189,10 @@ declare const eden: {
|
|
12283
12189
|
hookType: import("@package/resources/enums").BOOST;
|
12284
12190
|
boostTokenChainId: number;
|
12285
12191
|
boostTokenAddress: string;
|
12286
|
-
boostTokenSymbol?: string | undefined;
|
12287
|
-
boostTokenDecimals?: number | undefined;
|
12288
12192
|
boostMultiplicator: number;
|
12289
12193
|
} | {
|
12290
12194
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12291
12195
|
boostTokenAddress: string;
|
12292
|
-
boostTokenDecimals?: number | undefined;
|
12293
|
-
boostTokenSymbol?: string | undefined;
|
12294
12196
|
boostTokenChainId: number;
|
12295
12197
|
boostTokenThreshold: number;
|
12296
12198
|
boostConfiguration: {
|
@@ -12313,8 +12215,6 @@ declare const eden: {
|
|
12313
12215
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12314
12216
|
eligibilityTokenChainId: number;
|
12315
12217
|
eligibilityTokenAddress: string;
|
12316
|
-
eligibilityTokenSymbol?: string | undefined;
|
12317
|
-
eligibilityTokenDecimals?: number | undefined;
|
12318
12218
|
eligibilityTokenThreshold: number;
|
12319
12219
|
eligibilityDuration: number;
|
12320
12220
|
} | {
|
@@ -12468,13 +12368,12 @@ declare const eden: {
|
|
12468
12368
|
};
|
12469
12369
|
} | undefined;
|
12470
12370
|
}) | ({
|
12471
|
-
campaignType: CampaignType.
|
12371
|
+
campaignType: CampaignType.EQUILIBRIA_VAULT;
|
12472
12372
|
whitelist: string[];
|
12473
12373
|
blacklist: string[];
|
12474
12374
|
endTimestamp: number;
|
12475
12375
|
url?: string | undefined;
|
12476
|
-
|
12477
|
-
forwarders: string[];
|
12376
|
+
vaultAddress: string;
|
12478
12377
|
} & {
|
12479
12378
|
rewardToken: string;
|
12480
12379
|
amount: string;
|
@@ -12497,14 +12396,10 @@ declare const eden: {
|
|
12497
12396
|
hookType: import("@package/resources/enums").BOOST;
|
12498
12397
|
boostTokenChainId: number;
|
12499
12398
|
boostTokenAddress: string;
|
12500
|
-
boostTokenSymbol?: string | undefined;
|
12501
|
-
boostTokenDecimals?: number | undefined;
|
12502
12399
|
boostMultiplicator: number;
|
12503
12400
|
} | {
|
12504
12401
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12505
12402
|
boostTokenAddress: string;
|
12506
|
-
boostTokenDecimals?: number | undefined;
|
12507
|
-
boostTokenSymbol?: string | undefined;
|
12508
12403
|
boostTokenChainId: number;
|
12509
12404
|
boostTokenThreshold: number;
|
12510
12405
|
boostConfiguration: {
|
@@ -12527,8 +12422,6 @@ declare const eden: {
|
|
12527
12422
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12528
12423
|
eligibilityTokenChainId: number;
|
12529
12424
|
eligibilityTokenAddress: string;
|
12530
|
-
eligibilityTokenSymbol?: string | undefined;
|
12531
|
-
eligibilityTokenDecimals?: number | undefined;
|
12532
12425
|
eligibilityTokenThreshold: number;
|
12533
12426
|
eligibilityDuration: number;
|
12534
12427
|
} | {
|
@@ -12682,16 +12575,13 @@ declare const eden: {
|
|
12682
12575
|
};
|
12683
12576
|
} | undefined;
|
12684
12577
|
}) | ({
|
12685
|
-
campaignType: CampaignType.
|
12578
|
+
campaignType: CampaignType.ERC20;
|
12686
12579
|
whitelist: string[];
|
12687
12580
|
blacklist: string[];
|
12688
12581
|
endTimestamp: number;
|
12689
12582
|
url?: string | undefined;
|
12690
12583
|
targetToken: string;
|
12691
12584
|
forwarders: string[];
|
12692
|
-
apr: string;
|
12693
|
-
rewardTokenPricing: boolean;
|
12694
|
-
targetTokenPricing: boolean;
|
12695
12585
|
} & {
|
12696
12586
|
rewardToken: string;
|
12697
12587
|
amount: string;
|
@@ -12714,14 +12604,10 @@ declare const eden: {
|
|
12714
12604
|
hookType: import("@package/resources/enums").BOOST;
|
12715
12605
|
boostTokenChainId: number;
|
12716
12606
|
boostTokenAddress: string;
|
12717
|
-
boostTokenSymbol?: string | undefined;
|
12718
|
-
boostTokenDecimals?: number | undefined;
|
12719
12607
|
boostMultiplicator: number;
|
12720
12608
|
} | {
|
12721
12609
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12722
12610
|
boostTokenAddress: string;
|
12723
|
-
boostTokenDecimals?: number | undefined;
|
12724
|
-
boostTokenSymbol?: string | undefined;
|
12725
12611
|
boostTokenChainId: number;
|
12726
12612
|
boostTokenThreshold: number;
|
12727
12613
|
boostConfiguration: {
|
@@ -12744,8 +12630,6 @@ declare const eden: {
|
|
12744
12630
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12745
12631
|
eligibilityTokenChainId: number;
|
12746
12632
|
eligibilityTokenAddress: string;
|
12747
|
-
eligibilityTokenSymbol?: string | undefined;
|
12748
|
-
eligibilityTokenDecimals?: number | undefined;
|
12749
12633
|
eligibilityTokenThreshold: number;
|
12750
12634
|
eligibilityDuration: number;
|
12751
12635
|
} | {
|
@@ -12899,14 +12783,16 @@ declare const eden: {
|
|
12899
12783
|
};
|
12900
12784
|
} | undefined;
|
12901
12785
|
}) | ({
|
12902
|
-
campaignType: CampaignType.
|
12786
|
+
campaignType: CampaignType.ERC20_FIX_APR;
|
12903
12787
|
whitelist: string[];
|
12904
12788
|
blacklist: string[];
|
12905
12789
|
endTimestamp: number;
|
12906
12790
|
url?: string | undefined;
|
12907
12791
|
targetToken: string;
|
12908
|
-
|
12909
|
-
|
12792
|
+
forwarders: string[];
|
12793
|
+
apr: string;
|
12794
|
+
rewardTokenPricing: boolean;
|
12795
|
+
targetTokenPricing: boolean;
|
12910
12796
|
} & {
|
12911
12797
|
rewardToken: string;
|
12912
12798
|
amount: string;
|
@@ -12929,14 +12815,10 @@ declare const eden: {
|
|
12929
12815
|
hookType: import("@package/resources/enums").BOOST;
|
12930
12816
|
boostTokenChainId: number;
|
12931
12817
|
boostTokenAddress: string;
|
12932
|
-
boostTokenSymbol?: string | undefined;
|
12933
|
-
boostTokenDecimals?: number | undefined;
|
12934
12818
|
boostMultiplicator: number;
|
12935
12819
|
} | {
|
12936
12820
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12937
12821
|
boostTokenAddress: string;
|
12938
|
-
boostTokenDecimals?: number | undefined;
|
12939
|
-
boostTokenSymbol?: string | undefined;
|
12940
12822
|
boostTokenChainId: number;
|
12941
12823
|
boostTokenThreshold: number;
|
12942
12824
|
boostConfiguration: {
|
@@ -12959,8 +12841,6 @@ declare const eden: {
|
|
12959
12841
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12960
12842
|
eligibilityTokenChainId: number;
|
12961
12843
|
eligibilityTokenAddress: string;
|
12962
|
-
eligibilityTokenSymbol?: string | undefined;
|
12963
|
-
eligibilityTokenDecimals?: number | undefined;
|
12964
12844
|
eligibilityTokenThreshold: number;
|
12965
12845
|
eligibilityDuration: number;
|
12966
12846
|
} | {
|
@@ -13114,13 +12994,14 @@ declare const eden: {
|
|
13114
12994
|
};
|
13115
12995
|
} | undefined;
|
13116
12996
|
}) | ({
|
13117
|
-
campaignType: CampaignType.
|
12997
|
+
campaignType: CampaignType.ERC20INCOMINGTRANSFERS;
|
13118
12998
|
whitelist: string[];
|
13119
12999
|
blacklist: string[];
|
13120
13000
|
endTimestamp: number;
|
13121
13001
|
url?: string | undefined;
|
13122
13002
|
targetToken: string;
|
13123
|
-
|
13003
|
+
filteredAddresses: string[];
|
13004
|
+
owner?: string | undefined;
|
13124
13005
|
} & {
|
13125
13006
|
rewardToken: string;
|
13126
13007
|
amount: string;
|
@@ -13143,14 +13024,10 @@ declare const eden: {
|
|
13143
13024
|
hookType: import("@package/resources/enums").BOOST;
|
13144
13025
|
boostTokenChainId: number;
|
13145
13026
|
boostTokenAddress: string;
|
13146
|
-
boostTokenSymbol?: string | undefined;
|
13147
|
-
boostTokenDecimals?: number | undefined;
|
13148
13027
|
boostMultiplicator: number;
|
13149
13028
|
} | {
|
13150
13029
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
13151
13030
|
boostTokenAddress: string;
|
13152
|
-
boostTokenDecimals?: number | undefined;
|
13153
|
-
boostTokenSymbol?: string | undefined;
|
13154
13031
|
boostTokenChainId: number;
|
13155
13032
|
boostTokenThreshold: number;
|
13156
13033
|
boostConfiguration: {
|
@@ -13173,8 +13050,6 @@ declare const eden: {
|
|
13173
13050
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
13174
13051
|
eligibilityTokenChainId: number;
|
13175
13052
|
eligibilityTokenAddress: string;
|
13176
|
-
eligibilityTokenSymbol?: string | undefined;
|
13177
|
-
eligibilityTokenDecimals?: number | undefined;
|
13178
13053
|
eligibilityTokenThreshold: number;
|
13179
13054
|
eligibilityDuration: number;
|
13180
13055
|
} | {
|
@@ -13328,16 +13203,13 @@ declare const eden: {
|
|
13328
13203
|
};
|
13329
13204
|
} | undefined;
|
13330
13205
|
}) | ({
|
13331
|
-
campaignType: CampaignType.
|
13206
|
+
campaignType: CampaignType.ERC20LOGPROCESSOR;
|
13332
13207
|
whitelist: string[];
|
13333
13208
|
blacklist: string[];
|
13334
13209
|
endTimestamp: number;
|
13335
13210
|
url?: string | undefined;
|
13336
13211
|
targetToken: string;
|
13337
13212
|
forwarders: string[];
|
13338
|
-
apr: string;
|
13339
|
-
rewardTokenPricing: boolean;
|
13340
|
-
targetTokenPricing: boolean;
|
13341
13213
|
} & {
|
13342
13214
|
rewardToken: string;
|
13343
13215
|
amount: string;
|
@@ -13360,14 +13232,10 @@ declare const eden: {
|
|
13360
13232
|
hookType: import("@package/resources/enums").BOOST;
|
13361
13233
|
boostTokenChainId: number;
|
13362
13234
|
boostTokenAddress: string;
|
13363
|
-
boostTokenSymbol?: string | undefined;
|
13364
|
-
boostTokenDecimals?: number | undefined;
|
13365
13235
|
boostMultiplicator: number;
|
13366
13236
|
} | {
|
13367
13237
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
13368
13238
|
boostTokenAddress: string;
|
13369
|
-
boostTokenDecimals?: number | undefined;
|
13370
|
-
boostTokenSymbol?: string | undefined;
|
13371
13239
|
boostTokenChainId: number;
|
13372
13240
|
boostTokenThreshold: number;
|
13373
13241
|
boostConfiguration: {
|
@@ -13390,8 +13258,6 @@ declare const eden: {
|
|
13390
13258
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
13391
13259
|
eligibilityTokenChainId: number;
|
13392
13260
|
eligibilityTokenAddress: string;
|
13393
|
-
eligibilityTokenSymbol?: string | undefined;
|
13394
|
-
eligibilityTokenDecimals?: number | undefined;
|
13395
13261
|
eligibilityTokenThreshold: number;
|
13396
13262
|
eligibilityDuration: number;
|
13397
13263
|
} | {
|
@@ -13545,13 +13411,16 @@ declare const eden: {
|
|
13545
13411
|
};
|
13546
13412
|
} | undefined;
|
13547
13413
|
}) | ({
|
13548
|
-
campaignType: CampaignType.
|
13414
|
+
campaignType: CampaignType.ERC20REBASEFIXAPR;
|
13549
13415
|
whitelist: string[];
|
13550
13416
|
blacklist: string[];
|
13551
13417
|
endTimestamp: number;
|
13552
13418
|
url?: string | undefined;
|
13553
13419
|
targetToken: string;
|
13554
13420
|
forwarders: string[];
|
13421
|
+
apr: string;
|
13422
|
+
rewardTokenPricing: boolean;
|
13423
|
+
targetTokenPricing: boolean;
|
13555
13424
|
} & {
|
13556
13425
|
rewardToken: string;
|
13557
13426
|
amount: string;
|
@@ -13574,14 +13443,10 @@ declare const eden: {
|
|
13574
13443
|
hookType: import("@package/resources/enums").BOOST;
|
13575
13444
|
boostTokenChainId: number;
|
13576
13445
|
boostTokenAddress: string;
|
13577
|
-
boostTokenSymbol?: string | undefined;
|
13578
|
-
boostTokenDecimals?: number | undefined;
|
13579
13446
|
boostMultiplicator: number;
|
13580
13447
|
} | {
|
13581
13448
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
13582
13449
|
boostTokenAddress: string;
|
13583
|
-
boostTokenDecimals?: number | undefined;
|
13584
|
-
boostTokenSymbol?: string | undefined;
|
13585
13450
|
boostTokenChainId: number;
|
13586
13451
|
boostTokenThreshold: number;
|
13587
13452
|
boostConfiguration: {
|
@@ -13604,8 +13469,6 @@ declare const eden: {
|
|
13604
13469
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
13605
13470
|
eligibilityTokenChainId: number;
|
13606
13471
|
eligibilityTokenAddress: string;
|
13607
|
-
eligibilityTokenSymbol?: string | undefined;
|
13608
|
-
eligibilityTokenDecimals?: number | undefined;
|
13609
13472
|
eligibilityTokenThreshold: number;
|
13610
13473
|
eligibilityDuration: number;
|
13611
13474
|
} | {
|
@@ -13759,15 +13622,13 @@ declare const eden: {
|
|
13759
13622
|
};
|
13760
13623
|
} | undefined;
|
13761
13624
|
}) | ({
|
13762
|
-
campaignType: CampaignType.
|
13625
|
+
campaignType: CampaignType.ERC20REBASELOGPROCESSOR;
|
13763
13626
|
whitelist: string[];
|
13764
13627
|
blacklist: string[];
|
13765
|
-
|
13628
|
+
endTimestamp: number;
|
13766
13629
|
url?: string | undefined;
|
13630
|
+
targetToken: string;
|
13767
13631
|
forwarders: string[];
|
13768
|
-
usesBlockNumber: boolean;
|
13769
|
-
snapshotTimestamp?: number | undefined;
|
13770
|
-
snapshotBlockNumber?: number | undefined;
|
13771
13632
|
} & {
|
13772
13633
|
rewardToken: string;
|
13773
13634
|
amount: string;
|
@@ -13790,14 +13651,10 @@ declare const eden: {
|
|
13790
13651
|
hookType: import("@package/resources/enums").BOOST;
|
13791
13652
|
boostTokenChainId: number;
|
13792
13653
|
boostTokenAddress: string;
|
13793
|
-
boostTokenSymbol?: string | undefined;
|
13794
|
-
boostTokenDecimals?: number | undefined;
|
13795
13654
|
boostMultiplicator: number;
|
13796
13655
|
} | {
|
13797
13656
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
13798
13657
|
boostTokenAddress: string;
|
13799
|
-
boostTokenDecimals?: number | undefined;
|
13800
|
-
boostTokenSymbol?: string | undefined;
|
13801
13658
|
boostTokenChainId: number;
|
13802
13659
|
boostTokenThreshold: number;
|
13803
13660
|
boostConfiguration: {
|
@@ -13820,8 +13677,6 @@ declare const eden: {
|
|
13820
13677
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
13821
13678
|
eligibilityTokenChainId: number;
|
13822
13679
|
eligibilityTokenAddress: string;
|
13823
|
-
eligibilityTokenSymbol?: string | undefined;
|
13824
|
-
eligibilityTokenDecimals?: number | undefined;
|
13825
13680
|
eligibilityTokenThreshold: number;
|
13826
13681
|
eligibilityDuration: number;
|
13827
13682
|
} | {
|
@@ -13975,14 +13830,15 @@ declare const eden: {
|
|
13975
13830
|
};
|
13976
13831
|
} | undefined;
|
13977
13832
|
}) | ({
|
13978
|
-
campaignType: CampaignType.
|
13833
|
+
campaignType: CampaignType.ERC20_SNAPSHOT;
|
13979
13834
|
whitelist: string[];
|
13980
13835
|
blacklist: string[];
|
13981
|
-
endTimestamp: number;
|
13982
|
-
url?: string | undefined;
|
13983
13836
|
targetToken: string;
|
13984
|
-
|
13985
|
-
|
13837
|
+
url?: string | undefined;
|
13838
|
+
forwarders: string[];
|
13839
|
+
usesBlockNumber: boolean;
|
13840
|
+
snapshotTimestamp?: number | undefined;
|
13841
|
+
snapshotBlockNumber?: number | undefined;
|
13986
13842
|
} & {
|
13987
13843
|
rewardToken: string;
|
13988
13844
|
amount: string;
|
@@ -14005,14 +13861,10 @@ declare const eden: {
|
|
14005
13861
|
hookType: import("@package/resources/enums").BOOST;
|
14006
13862
|
boostTokenChainId: number;
|
14007
13863
|
boostTokenAddress: string;
|
14008
|
-
boostTokenSymbol?: string | undefined;
|
14009
|
-
boostTokenDecimals?: number | undefined;
|
14010
13864
|
boostMultiplicator: number;
|
14011
13865
|
} | {
|
14012
13866
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14013
13867
|
boostTokenAddress: string;
|
14014
|
-
boostTokenDecimals?: number | undefined;
|
14015
|
-
boostTokenSymbol?: string | undefined;
|
14016
13868
|
boostTokenChainId: number;
|
14017
13869
|
boostTokenThreshold: number;
|
14018
13870
|
boostConfiguration: {
|
@@ -14035,8 +13887,6 @@ declare const eden: {
|
|
14035
13887
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14036
13888
|
eligibilityTokenChainId: number;
|
14037
13889
|
eligibilityTokenAddress: string;
|
14038
|
-
eligibilityTokenSymbol?: string | undefined;
|
14039
|
-
eligibilityTokenDecimals?: number | undefined;
|
14040
13890
|
eligibilityTokenThreshold: number;
|
14041
13891
|
eligibilityDuration: number;
|
14042
13892
|
} | {
|
@@ -14190,13 +14040,14 @@ declare const eden: {
|
|
14190
14040
|
};
|
14191
14041
|
} | undefined;
|
14192
14042
|
}) | ({
|
14193
|
-
campaignType: CampaignType.
|
14043
|
+
campaignType: CampaignType.ERC20EXPIRYLOG;
|
14194
14044
|
whitelist: string[];
|
14195
14045
|
blacklist: string[];
|
14196
14046
|
endTimestamp: number;
|
14197
14047
|
url?: string | undefined;
|
14198
|
-
subCampaignType: import("@package/resources/enums").ERC721SubCampaignType;
|
14199
14048
|
targetToken: string;
|
14049
|
+
expiry: number;
|
14050
|
+
treasury: string;
|
14200
14051
|
} & {
|
14201
14052
|
rewardToken: string;
|
14202
14053
|
amount: string;
|
@@ -14219,14 +14070,10 @@ declare const eden: {
|
|
14219
14070
|
hookType: import("@package/resources/enums").BOOST;
|
14220
14071
|
boostTokenChainId: number;
|
14221
14072
|
boostTokenAddress: string;
|
14222
|
-
boostTokenSymbol?: string | undefined;
|
14223
|
-
boostTokenDecimals?: number | undefined;
|
14224
14073
|
boostMultiplicator: number;
|
14225
14074
|
} | {
|
14226
14075
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14227
14076
|
boostTokenAddress: string;
|
14228
|
-
boostTokenDecimals?: number | undefined;
|
14229
|
-
boostTokenSymbol?: string | undefined;
|
14230
14077
|
boostTokenChainId: number;
|
14231
14078
|
boostTokenThreshold: number;
|
14232
14079
|
boostConfiguration: {
|
@@ -14249,8 +14096,6 @@ declare const eden: {
|
|
14249
14096
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14250
14097
|
eligibilityTokenChainId: number;
|
14251
14098
|
eligibilityTokenAddress: string;
|
14252
|
-
eligibilityTokenSymbol?: string | undefined;
|
14253
|
-
eligibilityTokenDecimals?: number | undefined;
|
14254
14099
|
eligibilityTokenThreshold: number;
|
14255
14100
|
eligibilityDuration: number;
|
14256
14101
|
} | {
|
@@ -14404,13 +14249,13 @@ declare const eden: {
|
|
14404
14249
|
};
|
14405
14250
|
} | undefined;
|
14406
14251
|
}) | ({
|
14407
|
-
campaignType: CampaignType.
|
14252
|
+
campaignType: CampaignType.ERC721;
|
14408
14253
|
whitelist: string[];
|
14409
14254
|
blacklist: string[];
|
14410
14255
|
endTimestamp: number;
|
14411
14256
|
url?: string | undefined;
|
14257
|
+
subCampaignType: import("@package/resources/enums").ERC721SubCampaignType;
|
14412
14258
|
targetToken: string;
|
14413
|
-
tokenId: string;
|
14414
14259
|
} & {
|
14415
14260
|
rewardToken: string;
|
14416
14261
|
amount: string;
|
@@ -14433,14 +14278,10 @@ declare const eden: {
|
|
14433
14278
|
hookType: import("@package/resources/enums").BOOST;
|
14434
14279
|
boostTokenChainId: number;
|
14435
14280
|
boostTokenAddress: string;
|
14436
|
-
boostTokenSymbol?: string | undefined;
|
14437
|
-
boostTokenDecimals?: number | undefined;
|
14438
14281
|
boostMultiplicator: number;
|
14439
14282
|
} | {
|
14440
14283
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14441
14284
|
boostTokenAddress: string;
|
14442
|
-
boostTokenDecimals?: number | undefined;
|
14443
|
-
boostTokenSymbol?: string | undefined;
|
14444
14285
|
boostTokenChainId: number;
|
14445
14286
|
boostTokenThreshold: number;
|
14446
14287
|
boostConfiguration: {
|
@@ -14463,8 +14304,6 @@ declare const eden: {
|
|
14463
14304
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14464
14305
|
eligibilityTokenChainId: number;
|
14465
14306
|
eligibilityTokenAddress: string;
|
14466
|
-
eligibilityTokenSymbol?: string | undefined;
|
14467
|
-
eligibilityTokenDecimals?: number | undefined;
|
14468
14307
|
eligibilityTokenThreshold: number;
|
14469
14308
|
eligibilityDuration: number;
|
14470
14309
|
} | {
|
@@ -14618,7 +14457,7 @@ declare const eden: {
|
|
14618
14457
|
};
|
14619
14458
|
} | undefined;
|
14620
14459
|
}) | ({
|
14621
|
-
campaignType: CampaignType.
|
14460
|
+
campaignType: CampaignType.ERC1155;
|
14622
14461
|
whitelist: string[];
|
14623
14462
|
blacklist: string[];
|
14624
14463
|
endTimestamp: number;
|
@@ -14647,14 +14486,10 @@ declare const eden: {
|
|
14647
14486
|
hookType: import("@package/resources/enums").BOOST;
|
14648
14487
|
boostTokenChainId: number;
|
14649
14488
|
boostTokenAddress: string;
|
14650
|
-
boostTokenSymbol?: string | undefined;
|
14651
|
-
boostTokenDecimals?: number | undefined;
|
14652
14489
|
boostMultiplicator: number;
|
14653
14490
|
} | {
|
14654
14491
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14655
14492
|
boostTokenAddress: string;
|
14656
|
-
boostTokenDecimals?: number | undefined;
|
14657
|
-
boostTokenSymbol?: string | undefined;
|
14658
14493
|
boostTokenChainId: number;
|
14659
14494
|
boostTokenThreshold: number;
|
14660
14495
|
boostConfiguration: {
|
@@ -14677,8 +14512,6 @@ declare const eden: {
|
|
14677
14512
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14678
14513
|
eligibilityTokenChainId: number;
|
14679
14514
|
eligibilityTokenAddress: string;
|
14680
|
-
eligibilityTokenSymbol?: string | undefined;
|
14681
|
-
eligibilityTokenDecimals?: number | undefined;
|
14682
14515
|
eligibilityTokenThreshold: number;
|
14683
14516
|
eligibilityDuration: number;
|
14684
14517
|
} | {
|
@@ -14832,14 +14665,13 @@ declare const eden: {
|
|
14832
14665
|
};
|
14833
14666
|
} | undefined;
|
14834
14667
|
}) | ({
|
14668
|
+
campaignType: CampaignType.ERC6909;
|
14669
|
+
whitelist: string[];
|
14835
14670
|
blacklist: string[];
|
14836
|
-
campaignType: CampaignType.EULER;
|
14837
|
-
collateralAddress?: string | undefined;
|
14838
|
-
subCampaignType: import("@package/resources/enums").EulerSubCampaignType;
|
14839
14671
|
endTimestamp: number;
|
14840
|
-
|
14841
|
-
|
14842
|
-
|
14672
|
+
url?: string | undefined;
|
14673
|
+
targetToken: string;
|
14674
|
+
tokenId: string;
|
14843
14675
|
} & {
|
14844
14676
|
rewardToken: string;
|
14845
14677
|
amount: string;
|
@@ -14862,14 +14694,10 @@ declare const eden: {
|
|
14862
14694
|
hookType: import("@package/resources/enums").BOOST;
|
14863
14695
|
boostTokenChainId: number;
|
14864
14696
|
boostTokenAddress: string;
|
14865
|
-
boostTokenSymbol?: string | undefined;
|
14866
|
-
boostTokenDecimals?: number | undefined;
|
14867
14697
|
boostMultiplicator: number;
|
14868
14698
|
} | {
|
14869
14699
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14870
14700
|
boostTokenAddress: string;
|
14871
|
-
boostTokenDecimals?: number | undefined;
|
14872
|
-
boostTokenSymbol?: string | undefined;
|
14873
14701
|
boostTokenChainId: number;
|
14874
14702
|
boostTokenThreshold: number;
|
14875
14703
|
boostConfiguration: {
|
@@ -14892,8 +14720,6 @@ declare const eden: {
|
|
14892
14720
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14893
14721
|
eligibilityTokenChainId: number;
|
14894
14722
|
eligibilityTokenAddress: string;
|
14895
|
-
eligibilityTokenSymbol?: string | undefined;
|
14896
|
-
eligibilityTokenDecimals?: number | undefined;
|
14897
14723
|
eligibilityTokenThreshold: number;
|
14898
14724
|
eligibilityDuration: number;
|
14899
14725
|
} | {
|
@@ -15047,17 +14873,14 @@ declare const eden: {
|
|
15047
14873
|
};
|
15048
14874
|
} | undefined;
|
15049
14875
|
}) | ({
|
15050
|
-
campaignType: CampaignType.EVENT_BASED;
|
15051
|
-
whitelist: string[];
|
15052
14876
|
blacklist: string[];
|
14877
|
+
campaignType: CampaignType.EULER;
|
14878
|
+
collateralAddress?: string | undefined;
|
14879
|
+
subCampaignType: import("@package/resources/enums").EulerSubCampaignType;
|
15053
14880
|
endTimestamp: number;
|
15054
|
-
|
15055
|
-
contract: string;
|
15056
|
-
eventID: string;
|
15057
|
-
topicToData: any[];
|
15058
|
-
decodeDataValue: string[];
|
15059
|
-
expectedChecks: any[];
|
14881
|
+
evkAddress: string;
|
15060
14882
|
forwarders: string[];
|
14883
|
+
whitelist: string[];
|
15061
14884
|
} & {
|
15062
14885
|
rewardToken: string;
|
15063
14886
|
amount: string;
|
@@ -15080,14 +14903,10 @@ declare const eden: {
|
|
15080
14903
|
hookType: import("@package/resources/enums").BOOST;
|
15081
14904
|
boostTokenChainId: number;
|
15082
14905
|
boostTokenAddress: string;
|
15083
|
-
boostTokenSymbol?: string | undefined;
|
15084
|
-
boostTokenDecimals?: number | undefined;
|
15085
14906
|
boostMultiplicator: number;
|
15086
14907
|
} | {
|
15087
14908
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15088
14909
|
boostTokenAddress: string;
|
15089
|
-
boostTokenDecimals?: number | undefined;
|
15090
|
-
boostTokenSymbol?: string | undefined;
|
15091
14910
|
boostTokenChainId: number;
|
15092
14911
|
boostTokenThreshold: number;
|
15093
14912
|
boostConfiguration: {
|
@@ -15110,8 +14929,6 @@ declare const eden: {
|
|
15110
14929
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15111
14930
|
eligibilityTokenChainId: number;
|
15112
14931
|
eligibilityTokenAddress: string;
|
15113
|
-
eligibilityTokenSymbol?: string | undefined;
|
15114
|
-
eligibilityTokenDecimals?: number | undefined;
|
15115
14932
|
eligibilityTokenThreshold: number;
|
15116
14933
|
eligibilityDuration: number;
|
15117
14934
|
} | {
|
@@ -15265,12 +15082,17 @@ declare const eden: {
|
|
15265
15082
|
};
|
15266
15083
|
} | undefined;
|
15267
15084
|
}) | ({
|
15268
|
-
campaignType: CampaignType.
|
15085
|
+
campaignType: CampaignType.EVENT_BASED;
|
15269
15086
|
whitelist: string[];
|
15270
15087
|
blacklist: string[];
|
15271
15088
|
endTimestamp: number;
|
15272
15089
|
url?: string | undefined;
|
15273
|
-
|
15090
|
+
contract: string;
|
15091
|
+
eventID: string;
|
15092
|
+
topicToData: any[];
|
15093
|
+
decodeDataValue: string[];
|
15094
|
+
expectedChecks: any[];
|
15095
|
+
forwarders: string[];
|
15274
15096
|
} & {
|
15275
15097
|
rewardToken: string;
|
15276
15098
|
amount: string;
|
@@ -15293,14 +15115,10 @@ declare const eden: {
|
|
15293
15115
|
hookType: import("@package/resources/enums").BOOST;
|
15294
15116
|
boostTokenChainId: number;
|
15295
15117
|
boostTokenAddress: string;
|
15296
|
-
boostTokenSymbol?: string | undefined;
|
15297
|
-
boostTokenDecimals?: number | undefined;
|
15298
15118
|
boostMultiplicator: number;
|
15299
15119
|
} | {
|
15300
15120
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15301
15121
|
boostTokenAddress: string;
|
15302
|
-
boostTokenDecimals?: number | undefined;
|
15303
|
-
boostTokenSymbol?: string | undefined;
|
15304
15122
|
boostTokenChainId: number;
|
15305
15123
|
boostTokenThreshold: number;
|
15306
15124
|
boostConfiguration: {
|
@@ -15323,8 +15141,6 @@ declare const eden: {
|
|
15323
15141
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15324
15142
|
eligibilityTokenChainId: number;
|
15325
15143
|
eligibilityTokenAddress: string;
|
15326
|
-
eligibilityTokenSymbol?: string | undefined;
|
15327
|
-
eligibilityTokenDecimals?: number | undefined;
|
15328
15144
|
eligibilityTokenThreshold: number;
|
15329
15145
|
eligibilityDuration: number;
|
15330
15146
|
} | {
|
@@ -15478,7 +15294,7 @@ declare const eden: {
|
|
15478
15294
|
};
|
15479
15295
|
} | undefined;
|
15480
15296
|
}) | ({
|
15481
|
-
campaignType: CampaignType.
|
15297
|
+
campaignType: CampaignType.FLUIDVAULT_COLLATERAL;
|
15482
15298
|
whitelist: string[];
|
15483
15299
|
blacklist: string[];
|
15484
15300
|
endTimestamp: number;
|
@@ -15506,14 +15322,10 @@ declare const eden: {
|
|
15506
15322
|
hookType: import("@package/resources/enums").BOOST;
|
15507
15323
|
boostTokenChainId: number;
|
15508
15324
|
boostTokenAddress: string;
|
15509
|
-
boostTokenSymbol?: string | undefined;
|
15510
|
-
boostTokenDecimals?: number | undefined;
|
15511
15325
|
boostMultiplicator: number;
|
15512
15326
|
} | {
|
15513
15327
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15514
15328
|
boostTokenAddress: string;
|
15515
|
-
boostTokenDecimals?: number | undefined;
|
15516
|
-
boostTokenSymbol?: string | undefined;
|
15517
15329
|
boostTokenChainId: number;
|
15518
15330
|
boostTokenThreshold: number;
|
15519
15331
|
boostConfiguration: {
|
@@ -15536,8 +15348,6 @@ declare const eden: {
|
|
15536
15348
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15537
15349
|
eligibilityTokenChainId: number;
|
15538
15350
|
eligibilityTokenAddress: string;
|
15539
|
-
eligibilityTokenSymbol?: string | undefined;
|
15540
|
-
eligibilityTokenDecimals?: number | undefined;
|
15541
15351
|
eligibilityTokenThreshold: number;
|
15542
15352
|
eligibilityDuration: number;
|
15543
15353
|
} | {
|
@@ -15691,12 +15501,12 @@ declare const eden: {
|
|
15691
15501
|
};
|
15692
15502
|
} | undefined;
|
15693
15503
|
}) | ({
|
15694
|
-
campaignType: CampaignType.
|
15504
|
+
campaignType: CampaignType.FLUIDVAULT_BORROW;
|
15695
15505
|
whitelist: string[];
|
15696
15506
|
blacklist: string[];
|
15697
15507
|
endTimestamp: number;
|
15698
15508
|
url?: string | undefined;
|
15699
|
-
|
15509
|
+
vault: string;
|
15700
15510
|
} & {
|
15701
15511
|
rewardToken: string;
|
15702
15512
|
amount: string;
|
@@ -15719,14 +15529,10 @@ declare const eden: {
|
|
15719
15529
|
hookType: import("@package/resources/enums").BOOST;
|
15720
15530
|
boostTokenChainId: number;
|
15721
15531
|
boostTokenAddress: string;
|
15722
|
-
boostTokenSymbol?: string | undefined;
|
15723
|
-
boostTokenDecimals?: number | undefined;
|
15724
15532
|
boostMultiplicator: number;
|
15725
15533
|
} | {
|
15726
15534
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15727
15535
|
boostTokenAddress: string;
|
15728
|
-
boostTokenDecimals?: number | undefined;
|
15729
|
-
boostTokenSymbol?: string | undefined;
|
15730
15536
|
boostTokenChainId: number;
|
15731
15537
|
boostTokenThreshold: number;
|
15732
15538
|
boostConfiguration: {
|
@@ -15749,8 +15555,6 @@ declare const eden: {
|
|
15749
15555
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15750
15556
|
eligibilityTokenChainId: number;
|
15751
15557
|
eligibilityTokenAddress: string;
|
15752
|
-
eligibilityTokenSymbol?: string | undefined;
|
15753
|
-
eligibilityTokenDecimals?: number | undefined;
|
15754
15558
|
eligibilityTokenThreshold: number;
|
15755
15559
|
eligibilityDuration: number;
|
15756
15560
|
} | {
|
@@ -15904,15 +15708,12 @@ declare const eden: {
|
|
15904
15708
|
};
|
15905
15709
|
} | undefined;
|
15906
15710
|
}) | ({
|
15907
|
-
campaignType: CampaignType.
|
15711
|
+
campaignType: CampaignType.FRAXLEND_BORROW;
|
15908
15712
|
whitelist: string[];
|
15909
15713
|
blacklist: string[];
|
15910
15714
|
endTimestamp: number;
|
15911
15715
|
url?: string | undefined;
|
15912
15716
|
targetToken: string;
|
15913
|
-
apr: string;
|
15914
|
-
rewardTokenPricing: boolean;
|
15915
|
-
targetTokenPricing: boolean;
|
15916
15717
|
} & {
|
15917
15718
|
rewardToken: string;
|
15918
15719
|
amount: string;
|
@@ -15935,14 +15736,10 @@ declare const eden: {
|
|
15935
15736
|
hookType: import("@package/resources/enums").BOOST;
|
15936
15737
|
boostTokenChainId: number;
|
15937
15738
|
boostTokenAddress: string;
|
15938
|
-
boostTokenSymbol?: string | undefined;
|
15939
|
-
boostTokenDecimals?: number | undefined;
|
15940
15739
|
boostMultiplicator: number;
|
15941
15740
|
} | {
|
15942
15741
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15943
15742
|
boostTokenAddress: string;
|
15944
|
-
boostTokenDecimals?: number | undefined;
|
15945
|
-
boostTokenSymbol?: string | undefined;
|
15946
15743
|
boostTokenChainId: number;
|
15947
15744
|
boostTokenThreshold: number;
|
15948
15745
|
boostConfiguration: {
|
@@ -15965,8 +15762,6 @@ declare const eden: {
|
|
15965
15762
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15966
15763
|
eligibilityTokenChainId: number;
|
15967
15764
|
eligibilityTokenAddress: string;
|
15968
|
-
eligibilityTokenSymbol?: string | undefined;
|
15969
|
-
eligibilityTokenDecimals?: number | undefined;
|
15970
15765
|
eligibilityTokenThreshold: number;
|
15971
15766
|
eligibilityDuration: number;
|
15972
15767
|
} | {
|
@@ -16120,12 +15915,15 @@ declare const eden: {
|
|
16120
15915
|
};
|
16121
15916
|
} | undefined;
|
16122
15917
|
}) | ({
|
16123
|
-
campaignType: CampaignType.
|
15918
|
+
campaignType: CampaignType.FRAXLEND_BORROW_FIXAPR;
|
16124
15919
|
whitelist: string[];
|
16125
15920
|
blacklist: string[];
|
16126
15921
|
endTimestamp: number;
|
16127
15922
|
url?: string | undefined;
|
16128
15923
|
targetToken: string;
|
15924
|
+
apr: string;
|
15925
|
+
rewardTokenPricing: boolean;
|
15926
|
+
targetTokenPricing: boolean;
|
16129
15927
|
} & {
|
16130
15928
|
rewardToken: string;
|
16131
15929
|
amount: string;
|
@@ -16148,14 +15946,10 @@ declare const eden: {
|
|
16148
15946
|
hookType: import("@package/resources/enums").BOOST;
|
16149
15947
|
boostTokenChainId: number;
|
16150
15948
|
boostTokenAddress: string;
|
16151
|
-
boostTokenSymbol?: string | undefined;
|
16152
|
-
boostTokenDecimals?: number | undefined;
|
16153
15949
|
boostMultiplicator: number;
|
16154
15950
|
} | {
|
16155
15951
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
16156
15952
|
boostTokenAddress: string;
|
16157
|
-
boostTokenDecimals?: number | undefined;
|
16158
|
-
boostTokenSymbol?: string | undefined;
|
16159
15953
|
boostTokenChainId: number;
|
16160
15954
|
boostTokenThreshold: number;
|
16161
15955
|
boostConfiguration: {
|
@@ -16178,8 +15972,6 @@ declare const eden: {
|
|
16178
15972
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
16179
15973
|
eligibilityTokenChainId: number;
|
16180
15974
|
eligibilityTokenAddress: string;
|
16181
|
-
eligibilityTokenSymbol?: string | undefined;
|
16182
|
-
eligibilityTokenDecimals?: number | undefined;
|
16183
15975
|
eligibilityTokenThreshold: number;
|
16184
15976
|
eligibilityDuration: number;
|
16185
15977
|
} | {
|
@@ -16333,15 +16125,12 @@ declare const eden: {
|
|
16333
16125
|
};
|
16334
16126
|
} | undefined;
|
16335
16127
|
}) | ({
|
16336
|
-
campaignType: CampaignType.
|
16128
|
+
campaignType: CampaignType.FRAXLEND_COLLATERAL;
|
16337
16129
|
whitelist: string[];
|
16338
16130
|
blacklist: string[];
|
16339
16131
|
endTimestamp: number;
|
16340
16132
|
url?: string | undefined;
|
16341
16133
|
targetToken: string;
|
16342
|
-
apr: string;
|
16343
|
-
rewardTokenPricing: boolean;
|
16344
|
-
targetTokenPricing: boolean;
|
16345
16134
|
} & {
|
16346
16135
|
rewardToken: string;
|
16347
16136
|
amount: string;
|
@@ -16364,14 +16153,10 @@ declare const eden: {
|
|
16364
16153
|
hookType: import("@package/resources/enums").BOOST;
|
16365
16154
|
boostTokenChainId: number;
|
16366
16155
|
boostTokenAddress: string;
|
16367
|
-
boostTokenSymbol?: string | undefined;
|
16368
|
-
boostTokenDecimals?: number | undefined;
|
16369
16156
|
boostMultiplicator: number;
|
16370
16157
|
} | {
|
16371
16158
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
16372
16159
|
boostTokenAddress: string;
|
16373
|
-
boostTokenDecimals?: number | undefined;
|
16374
|
-
boostTokenSymbol?: string | undefined;
|
16375
16160
|
boostTokenChainId: number;
|
16376
16161
|
boostTokenThreshold: number;
|
16377
16162
|
boostConfiguration: {
|
@@ -16394,8 +16179,6 @@ declare const eden: {
|
|
16394
16179
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
16395
16180
|
eligibilityTokenChainId: number;
|
16396
16181
|
eligibilityTokenAddress: string;
|
16397
|
-
eligibilityTokenSymbol?: string | undefined;
|
16398
|
-
eligibilityTokenDecimals?: number | undefined;
|
16399
16182
|
eligibilityTokenThreshold: number;
|
16400
16183
|
eligibilityDuration: number;
|
16401
16184
|
} | {
|
@@ -16549,20 +16332,15 @@ declare const eden: {
|
|
16549
16332
|
};
|
16550
16333
|
} | undefined;
|
16551
16334
|
}) | ({
|
16552
|
-
campaignType: CampaignType.
|
16335
|
+
campaignType: CampaignType.FRAXLEND_COLLATERAL_FIXAPR;
|
16553
16336
|
whitelist: string[];
|
16554
16337
|
blacklist: string[];
|
16555
16338
|
endTimestamp: number;
|
16556
16339
|
url?: string | undefined;
|
16557
|
-
|
16558
|
-
|
16559
|
-
|
16560
|
-
|
16561
|
-
weightToken1: number;
|
16562
|
-
lowerPriceBond?: number | undefined;
|
16563
|
-
upperPriceBond?: number | undefined;
|
16564
|
-
lowerPriceTolerance?: number | undefined;
|
16565
|
-
upperPriceTolerance?: number | undefined;
|
16340
|
+
targetToken: string;
|
16341
|
+
apr: string;
|
16342
|
+
rewardTokenPricing: boolean;
|
16343
|
+
targetTokenPricing: boolean;
|
16566
16344
|
} & {
|
16567
16345
|
rewardToken: string;
|
16568
16346
|
amount: string;
|
@@ -16585,14 +16363,10 @@ declare const eden: {
|
|
16585
16363
|
hookType: import("@package/resources/enums").BOOST;
|
16586
16364
|
boostTokenChainId: number;
|
16587
16365
|
boostTokenAddress: string;
|
16588
|
-
boostTokenSymbol?: string | undefined;
|
16589
|
-
boostTokenDecimals?: number | undefined;
|
16590
16366
|
boostMultiplicator: number;
|
16591
16367
|
} | {
|
16592
16368
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
16593
16369
|
boostTokenAddress: string;
|
16594
|
-
boostTokenDecimals?: number | undefined;
|
16595
|
-
boostTokenSymbol?: string | undefined;
|
16596
16370
|
boostTokenChainId: number;
|
16597
16371
|
boostTokenThreshold: number;
|
16598
16372
|
boostConfiguration: {
|
@@ -16615,8 +16389,6 @@ declare const eden: {
|
|
16615
16389
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
16616
16390
|
eligibilityTokenChainId: number;
|
16617
16391
|
eligibilityTokenAddress: string;
|
16618
|
-
eligibilityTokenSymbol?: string | undefined;
|
16619
|
-
eligibilityTokenDecimals?: number | undefined;
|
16620
16392
|
eligibilityTokenThreshold: number;
|
16621
16393
|
eligibilityDuration: number;
|
16622
16394
|
} | {
|
@@ -16770,15 +16542,20 @@ declare const eden: {
|
|
16770
16542
|
};
|
16771
16543
|
} | undefined;
|
16772
16544
|
}) | ({
|
16773
|
-
campaignType: CampaignType.
|
16545
|
+
campaignType: CampaignType.HYBRA;
|
16774
16546
|
whitelist: string[];
|
16775
16547
|
blacklist: string[];
|
16776
16548
|
endTimestamp: number;
|
16777
16549
|
url?: string | undefined;
|
16778
|
-
|
16779
|
-
|
16780
|
-
|
16781
|
-
|
16550
|
+
poolId: string;
|
16551
|
+
isOutOfRangeIncentivized: boolean;
|
16552
|
+
weightFees: number;
|
16553
|
+
weightToken0: number;
|
16554
|
+
weightToken1: number;
|
16555
|
+
lowerPriceBond?: number | undefined;
|
16556
|
+
upperPriceBond?: number | undefined;
|
16557
|
+
lowerPriceTolerance?: number | undefined;
|
16558
|
+
upperPriceTolerance?: number | undefined;
|
16782
16559
|
} & {
|
16783
16560
|
rewardToken: string;
|
16784
16561
|
amount: string;
|
@@ -16801,14 +16578,10 @@ declare const eden: {
|
|
16801
16578
|
hookType: import("@package/resources/enums").BOOST;
|
16802
16579
|
boostTokenChainId: number;
|
16803
16580
|
boostTokenAddress: string;
|
16804
|
-
boostTokenSymbol?: string | undefined;
|
16805
|
-
boostTokenDecimals?: number | undefined;
|
16806
16581
|
boostMultiplicator: number;
|
16807
16582
|
} | {
|
16808
16583
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
16809
16584
|
boostTokenAddress: string;
|
16810
|
-
boostTokenDecimals?: number | undefined;
|
16811
|
-
boostTokenSymbol?: string | undefined;
|
16812
16585
|
boostTokenChainId: number;
|
16813
16586
|
boostTokenThreshold: number;
|
16814
16587
|
boostConfiguration: {
|
@@ -16831,8 +16604,6 @@ declare const eden: {
|
|
16831
16604
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
16832
16605
|
eligibilityTokenChainId: number;
|
16833
16606
|
eligibilityTokenAddress: string;
|
16834
|
-
eligibilityTokenSymbol?: string | undefined;
|
16835
|
-
eligibilityTokenDecimals?: number | undefined;
|
16836
16607
|
eligibilityTokenThreshold: number;
|
16837
16608
|
eligibilityDuration: number;
|
16838
16609
|
} | {
|
@@ -16986,7 +16757,7 @@ declare const eden: {
|
|
16986
16757
|
};
|
16987
16758
|
} | undefined;
|
16988
16759
|
}) | ({
|
16989
|
-
campaignType: CampaignType.
|
16760
|
+
campaignType: CampaignType.HYPERDRIVELOGPROCESSOR;
|
16990
16761
|
whitelist: string[];
|
16991
16762
|
blacklist: string[];
|
16992
16763
|
endTimestamp: number;
|
@@ -16995,9 +16766,6 @@ declare const eden: {
|
|
16995
16766
|
tokenId: string;
|
16996
16767
|
targetToken: string;
|
16997
16768
|
forwarders: string[];
|
16998
|
-
apr: string;
|
16999
|
-
rewardTokenPricing: boolean;
|
17000
|
-
targetTokenPricing: boolean;
|
17001
16769
|
} & {
|
17002
16770
|
rewardToken: string;
|
17003
16771
|
amount: string;
|
@@ -17020,14 +16788,10 @@ declare const eden: {
|
|
17020
16788
|
hookType: import("@package/resources/enums").BOOST;
|
17021
16789
|
boostTokenChainId: number;
|
17022
16790
|
boostTokenAddress: string;
|
17023
|
-
boostTokenSymbol?: string | undefined;
|
17024
|
-
boostTokenDecimals?: number | undefined;
|
17025
16791
|
boostMultiplicator: number;
|
17026
16792
|
} | {
|
17027
16793
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17028
16794
|
boostTokenAddress: string;
|
17029
|
-
boostTokenDecimals?: number | undefined;
|
17030
|
-
boostTokenSymbol?: string | undefined;
|
17031
16795
|
boostTokenChainId: number;
|
17032
16796
|
boostTokenThreshold: number;
|
17033
16797
|
boostConfiguration: {
|
@@ -17050,8 +16814,6 @@ declare const eden: {
|
|
17050
16814
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17051
16815
|
eligibilityTokenChainId: number;
|
17052
16816
|
eligibilityTokenAddress: string;
|
17053
|
-
eligibilityTokenSymbol?: string | undefined;
|
17054
|
-
eligibilityTokenDecimals?: number | undefined;
|
17055
16817
|
eligibilityTokenThreshold: number;
|
17056
16818
|
eligibilityDuration: number;
|
17057
16819
|
} | {
|
@@ -17205,9 +16967,18 @@ declare const eden: {
|
|
17205
16967
|
};
|
17206
16968
|
} | undefined;
|
17207
16969
|
}) | ({
|
17208
|
-
campaignType: CampaignType.
|
17209
|
-
|
16970
|
+
campaignType: CampaignType.HYPERDRIVELOGFIXPROCESSOR;
|
16971
|
+
whitelist: string[];
|
16972
|
+
blacklist: string[];
|
16973
|
+
endTimestamp: number;
|
17210
16974
|
url?: string | undefined;
|
16975
|
+
subCampaignType: import("@package/resources/enums").HyperDriveSubCampaignType;
|
16976
|
+
tokenId: string;
|
16977
|
+
targetToken: string;
|
16978
|
+
forwarders: string[];
|
16979
|
+
apr: string;
|
16980
|
+
rewardTokenPricing: boolean;
|
16981
|
+
targetTokenPricing: boolean;
|
17211
16982
|
} & {
|
17212
16983
|
rewardToken: string;
|
17213
16984
|
amount: string;
|
@@ -17230,14 +17001,10 @@ declare const eden: {
|
|
17230
17001
|
hookType: import("@package/resources/enums").BOOST;
|
17231
17002
|
boostTokenChainId: number;
|
17232
17003
|
boostTokenAddress: string;
|
17233
|
-
boostTokenSymbol?: string | undefined;
|
17234
|
-
boostTokenDecimals?: number | undefined;
|
17235
17004
|
boostMultiplicator: number;
|
17236
17005
|
} | {
|
17237
17006
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17238
17007
|
boostTokenAddress: string;
|
17239
|
-
boostTokenDecimals?: number | undefined;
|
17240
|
-
boostTokenSymbol?: string | undefined;
|
17241
17008
|
boostTokenChainId: number;
|
17242
17009
|
boostTokenThreshold: number;
|
17243
17010
|
boostConfiguration: {
|
@@ -17260,8 +17027,6 @@ declare const eden: {
|
|
17260
17027
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17261
17028
|
eligibilityTokenChainId: number;
|
17262
17029
|
eligibilityTokenAddress: string;
|
17263
|
-
eligibilityTokenSymbol?: string | undefined;
|
17264
|
-
eligibilityTokenDecimals?: number | undefined;
|
17265
17030
|
eligibilityTokenThreshold: number;
|
17266
17031
|
eligibilityDuration: number;
|
17267
17032
|
} | {
|
@@ -17415,18 +17180,9 @@ declare const eden: {
|
|
17415
17180
|
};
|
17416
17181
|
} | undefined;
|
17417
17182
|
}) | ({
|
17418
|
-
campaignType: CampaignType.
|
17419
|
-
|
17420
|
-
blacklist: string[];
|
17421
|
-
endTimestamp: number;
|
17183
|
+
campaignType: CampaignType.JSON_AIRDROP;
|
17184
|
+
jsonUrl: string;
|
17422
17185
|
url?: string | undefined;
|
17423
|
-
hasSlots: boolean;
|
17424
|
-
lockEvent: any;
|
17425
|
-
extendLockEvent?: any;
|
17426
|
-
unlockEvent: any;
|
17427
|
-
curveParameters: any;
|
17428
|
-
lockerContract: string;
|
17429
|
-
forwarders: string[];
|
17430
17186
|
} & {
|
17431
17187
|
rewardToken: string;
|
17432
17188
|
amount: string;
|
@@ -17449,14 +17205,10 @@ declare const eden: {
|
|
17449
17205
|
hookType: import("@package/resources/enums").BOOST;
|
17450
17206
|
boostTokenChainId: number;
|
17451
17207
|
boostTokenAddress: string;
|
17452
|
-
boostTokenSymbol?: string | undefined;
|
17453
|
-
boostTokenDecimals?: number | undefined;
|
17454
17208
|
boostMultiplicator: number;
|
17455
17209
|
} | {
|
17456
17210
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17457
17211
|
boostTokenAddress: string;
|
17458
|
-
boostTokenDecimals?: number | undefined;
|
17459
|
-
boostTokenSymbol?: string | undefined;
|
17460
17212
|
boostTokenChainId: number;
|
17461
17213
|
boostTokenThreshold: number;
|
17462
17214
|
boostConfiguration: {
|
@@ -17479,8 +17231,6 @@ declare const eden: {
|
|
17479
17231
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17480
17232
|
eligibilityTokenChainId: number;
|
17481
17233
|
eligibilityTokenAddress: string;
|
17482
|
-
eligibilityTokenSymbol?: string | undefined;
|
17483
|
-
eligibilityTokenDecimals?: number | undefined;
|
17484
17234
|
eligibilityTokenThreshold: number;
|
17485
17235
|
eligibilityDuration: number;
|
17486
17236
|
} | {
|
@@ -17634,12 +17384,18 @@ declare const eden: {
|
|
17634
17384
|
};
|
17635
17385
|
} | undefined;
|
17636
17386
|
}) | ({
|
17637
|
-
campaignType: CampaignType.
|
17387
|
+
campaignType: CampaignType.LOCKER;
|
17388
|
+
whitelist: string[];
|
17389
|
+
blacklist: string[];
|
17638
17390
|
endTimestamp: number;
|
17639
17391
|
url?: string | undefined;
|
17640
|
-
|
17641
|
-
|
17642
|
-
|
17392
|
+
hasSlots: boolean;
|
17393
|
+
lockEvent: any;
|
17394
|
+
extendLockEvent?: any;
|
17395
|
+
unlockEvent: any;
|
17396
|
+
curveParameters: any;
|
17397
|
+
lockerContract: string;
|
17398
|
+
forwarders: string[];
|
17643
17399
|
} & {
|
17644
17400
|
rewardToken: string;
|
17645
17401
|
amount: string;
|
@@ -17662,14 +17418,10 @@ declare const eden: {
|
|
17662
17418
|
hookType: import("@package/resources/enums").BOOST;
|
17663
17419
|
boostTokenChainId: number;
|
17664
17420
|
boostTokenAddress: string;
|
17665
|
-
boostTokenSymbol?: string | undefined;
|
17666
|
-
boostTokenDecimals?: number | undefined;
|
17667
17421
|
boostMultiplicator: number;
|
17668
17422
|
} | {
|
17669
17423
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17670
17424
|
boostTokenAddress: string;
|
17671
|
-
boostTokenDecimals?: number | undefined;
|
17672
|
-
boostTokenSymbol?: string | undefined;
|
17673
17425
|
boostTokenChainId: number;
|
17674
17426
|
boostTokenThreshold: number;
|
17675
17427
|
boostConfiguration: {
|
@@ -17692,8 +17444,6 @@ declare const eden: {
|
|
17692
17444
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17693
17445
|
eligibilityTokenChainId: number;
|
17694
17446
|
eligibilityTokenAddress: string;
|
17695
|
-
eligibilityTokenSymbol?: string | undefined;
|
17696
|
-
eligibilityTokenDecimals?: number | undefined;
|
17697
17447
|
eligibilityTokenThreshold: number;
|
17698
17448
|
eligibilityDuration: number;
|
17699
17449
|
} | {
|
@@ -17847,13 +17597,12 @@ declare const eden: {
|
|
17847
17597
|
};
|
17848
17598
|
} | undefined;
|
17849
17599
|
}) | ({
|
17850
|
-
campaignType: CampaignType.
|
17851
|
-
whitelist: string[];
|
17852
|
-
blacklist: string[];
|
17600
|
+
campaignType: CampaignType.MAPPING;
|
17853
17601
|
endTimestamp: number;
|
17854
17602
|
url?: string | undefined;
|
17855
|
-
|
17856
|
-
|
17603
|
+
protocol: any;
|
17604
|
+
fromAddress: string;
|
17605
|
+
toAddress: string;
|
17857
17606
|
} & {
|
17858
17607
|
rewardToken: string;
|
17859
17608
|
amount: string;
|
@@ -17876,14 +17625,10 @@ declare const eden: {
|
|
17876
17625
|
hookType: import("@package/resources/enums").BOOST;
|
17877
17626
|
boostTokenChainId: number;
|
17878
17627
|
boostTokenAddress: string;
|
17879
|
-
boostTokenSymbol?: string | undefined;
|
17880
|
-
boostTokenDecimals?: number | undefined;
|
17881
17628
|
boostMultiplicator: number;
|
17882
17629
|
} | {
|
17883
17630
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17884
17631
|
boostTokenAddress: string;
|
17885
|
-
boostTokenDecimals?: number | undefined;
|
17886
|
-
boostTokenSymbol?: string | undefined;
|
17887
17632
|
boostTokenChainId: number;
|
17888
17633
|
boostTokenThreshold: number;
|
17889
17634
|
boostConfiguration: {
|
@@ -17906,8 +17651,6 @@ declare const eden: {
|
|
17906
17651
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17907
17652
|
eligibilityTokenChainId: number;
|
17908
17653
|
eligibilityTokenAddress: string;
|
17909
|
-
eligibilityTokenSymbol?: string | undefined;
|
17910
|
-
eligibilityTokenDecimals?: number | undefined;
|
17911
17654
|
eligibilityTokenThreshold: number;
|
17912
17655
|
eligibilityDuration: number;
|
17913
17656
|
} | {
|
@@ -18061,15 +17804,13 @@ declare const eden: {
|
|
18061
17804
|
};
|
18062
17805
|
} | undefined;
|
18063
17806
|
}) | ({
|
18064
|
-
campaignType: CampaignType.
|
17807
|
+
campaignType: CampaignType.MAVERICK_BP;
|
18065
17808
|
whitelist: string[];
|
18066
17809
|
blacklist: string[];
|
18067
17810
|
endTimestamp: number;
|
18068
17811
|
url?: string | undefined;
|
18069
|
-
|
18070
|
-
|
18071
|
-
targetToken?: string | undefined;
|
18072
|
-
marketId?: string | undefined;
|
17812
|
+
sender: string;
|
17813
|
+
receiver: string;
|
18073
17814
|
} & {
|
18074
17815
|
rewardToken: string;
|
18075
17816
|
amount: string;
|
@@ -18092,14 +17833,10 @@ declare const eden: {
|
|
18092
17833
|
hookType: import("@package/resources/enums").BOOST;
|
18093
17834
|
boostTokenChainId: number;
|
18094
17835
|
boostTokenAddress: string;
|
18095
|
-
boostTokenSymbol?: string | undefined;
|
18096
|
-
boostTokenDecimals?: number | undefined;
|
18097
17836
|
boostMultiplicator: number;
|
18098
17837
|
} | {
|
18099
17838
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18100
17839
|
boostTokenAddress: string;
|
18101
|
-
boostTokenDecimals?: number | undefined;
|
18102
|
-
boostTokenSymbol?: string | undefined;
|
18103
17840
|
boostTokenChainId: number;
|
18104
17841
|
boostTokenThreshold: number;
|
18105
17842
|
boostConfiguration: {
|
@@ -18122,8 +17859,6 @@ declare const eden: {
|
|
18122
17859
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18123
17860
|
eligibilityTokenChainId: number;
|
18124
17861
|
eligibilityTokenAddress: string;
|
18125
|
-
eligibilityTokenSymbol?: string | undefined;
|
18126
|
-
eligibilityTokenDecimals?: number | undefined;
|
18127
17862
|
eligibilityTokenThreshold: number;
|
18128
17863
|
eligibilityDuration: number;
|
18129
17864
|
} | {
|
@@ -18277,12 +18012,15 @@ declare const eden: {
|
|
18277
18012
|
};
|
18278
18013
|
} | undefined;
|
18279
18014
|
}) | ({
|
18280
|
-
campaignType: CampaignType.
|
18015
|
+
campaignType: CampaignType.MORPHO;
|
18281
18016
|
whitelist: string[];
|
18282
18017
|
blacklist: string[];
|
18283
18018
|
endTimestamp: number;
|
18284
18019
|
url?: string | undefined;
|
18285
|
-
|
18020
|
+
forwarders: string[];
|
18021
|
+
subCampaignType: import("@package/resources/enums").MorphoSubCampaignType;
|
18022
|
+
targetToken?: string | undefined;
|
18023
|
+
marketId?: string | undefined;
|
18286
18024
|
} & {
|
18287
18025
|
rewardToken: string;
|
18288
18026
|
amount: string;
|
@@ -18305,14 +18043,10 @@ declare const eden: {
|
|
18305
18043
|
hookType: import("@package/resources/enums").BOOST;
|
18306
18044
|
boostTokenChainId: number;
|
18307
18045
|
boostTokenAddress: string;
|
18308
|
-
boostTokenSymbol?: string | undefined;
|
18309
|
-
boostTokenDecimals?: number | undefined;
|
18310
18046
|
boostMultiplicator: number;
|
18311
18047
|
} | {
|
18312
18048
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18313
18049
|
boostTokenAddress: string;
|
18314
|
-
boostTokenDecimals?: number | undefined;
|
18315
|
-
boostTokenSymbol?: string | undefined;
|
18316
18050
|
boostTokenChainId: number;
|
18317
18051
|
boostTokenThreshold: number;
|
18318
18052
|
boostConfiguration: {
|
@@ -18335,8 +18069,6 @@ declare const eden: {
|
|
18335
18069
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18336
18070
|
eligibilityTokenChainId: number;
|
18337
18071
|
eligibilityTokenAddress: string;
|
18338
|
-
eligibilityTokenSymbol?: string | undefined;
|
18339
|
-
eligibilityTokenDecimals?: number | undefined;
|
18340
18072
|
eligibilityTokenThreshold: number;
|
18341
18073
|
eligibilityDuration: number;
|
18342
18074
|
} | {
|
@@ -18490,15 +18222,12 @@ declare const eden: {
|
|
18490
18222
|
};
|
18491
18223
|
} | undefined;
|
18492
18224
|
}) | ({
|
18493
|
-
campaignType: CampaignType.
|
18225
|
+
campaignType: CampaignType.MORPHOBORROW;
|
18494
18226
|
whitelist: string[];
|
18495
18227
|
blacklist: string[];
|
18496
18228
|
endTimestamp: number;
|
18497
18229
|
url?: string | undefined;
|
18498
18230
|
market: string;
|
18499
|
-
apr: string;
|
18500
|
-
rewardTokenPricing: boolean;
|
18501
|
-
targetTokenPricing: boolean;
|
18502
18231
|
} & {
|
18503
18232
|
rewardToken: string;
|
18504
18233
|
amount: string;
|
@@ -18521,14 +18250,10 @@ declare const eden: {
|
|
18521
18250
|
hookType: import("@package/resources/enums").BOOST;
|
18522
18251
|
boostTokenChainId: number;
|
18523
18252
|
boostTokenAddress: string;
|
18524
|
-
boostTokenSymbol?: string | undefined;
|
18525
|
-
boostTokenDecimals?: number | undefined;
|
18526
18253
|
boostMultiplicator: number;
|
18527
18254
|
} | {
|
18528
18255
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18529
18256
|
boostTokenAddress: string;
|
18530
|
-
boostTokenDecimals?: number | undefined;
|
18531
|
-
boostTokenSymbol?: string | undefined;
|
18532
18257
|
boostTokenChainId: number;
|
18533
18258
|
boostTokenThreshold: number;
|
18534
18259
|
boostConfiguration: {
|
@@ -18551,8 +18276,6 @@ declare const eden: {
|
|
18551
18276
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18552
18277
|
eligibilityTokenChainId: number;
|
18553
18278
|
eligibilityTokenAddress: string;
|
18554
|
-
eligibilityTokenSymbol?: string | undefined;
|
18555
|
-
eligibilityTokenDecimals?: number | undefined;
|
18556
18279
|
eligibilityTokenThreshold: number;
|
18557
18280
|
eligibilityDuration: number;
|
18558
18281
|
} | {
|
@@ -18706,12 +18429,15 @@ declare const eden: {
|
|
18706
18429
|
};
|
18707
18430
|
} | undefined;
|
18708
18431
|
}) | ({
|
18709
|
-
campaignType: CampaignType.
|
18432
|
+
campaignType: CampaignType.MORPHOBORROW_FIXAPR;
|
18710
18433
|
whitelist: string[];
|
18711
18434
|
blacklist: string[];
|
18712
18435
|
endTimestamp: number;
|
18713
18436
|
url?: string | undefined;
|
18714
|
-
|
18437
|
+
market: string;
|
18438
|
+
apr: string;
|
18439
|
+
rewardTokenPricing: boolean;
|
18440
|
+
targetTokenPricing: boolean;
|
18715
18441
|
} & {
|
18716
18442
|
rewardToken: string;
|
18717
18443
|
amount: string;
|
@@ -18734,14 +18460,10 @@ declare const eden: {
|
|
18734
18460
|
hookType: import("@package/resources/enums").BOOST;
|
18735
18461
|
boostTokenChainId: number;
|
18736
18462
|
boostTokenAddress: string;
|
18737
|
-
boostTokenSymbol?: string | undefined;
|
18738
|
-
boostTokenDecimals?: number | undefined;
|
18739
18463
|
boostMultiplicator: number;
|
18740
18464
|
} | {
|
18741
18465
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18742
18466
|
boostTokenAddress: string;
|
18743
|
-
boostTokenDecimals?: number | undefined;
|
18744
|
-
boostTokenSymbol?: string | undefined;
|
18745
18467
|
boostTokenChainId: number;
|
18746
18468
|
boostTokenThreshold: number;
|
18747
18469
|
boostConfiguration: {
|
@@ -18764,8 +18486,6 @@ declare const eden: {
|
|
18764
18486
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18765
18487
|
eligibilityTokenChainId: number;
|
18766
18488
|
eligibilityTokenAddress: string;
|
18767
|
-
eligibilityTokenSymbol?: string | undefined;
|
18768
|
-
eligibilityTokenDecimals?: number | undefined;
|
18769
18489
|
eligibilityTokenThreshold: number;
|
18770
18490
|
eligibilityDuration: number;
|
18771
18491
|
} | {
|
@@ -18919,12 +18639,12 @@ declare const eden: {
|
|
18919
18639
|
};
|
18920
18640
|
} | undefined;
|
18921
18641
|
}) | ({
|
18922
|
-
campaignType: CampaignType.
|
18642
|
+
campaignType: CampaignType.MORPHOBORROW_SINGLETOKEN;
|
18923
18643
|
whitelist: string[];
|
18924
18644
|
blacklist: string[];
|
18925
18645
|
endTimestamp: number;
|
18926
18646
|
url?: string | undefined;
|
18927
|
-
|
18647
|
+
targetToken: string;
|
18928
18648
|
} & {
|
18929
18649
|
rewardToken: string;
|
18930
18650
|
amount: string;
|
@@ -18947,14 +18667,10 @@ declare const eden: {
|
|
18947
18667
|
hookType: import("@package/resources/enums").BOOST;
|
18948
18668
|
boostTokenChainId: number;
|
18949
18669
|
boostTokenAddress: string;
|
18950
|
-
boostTokenSymbol?: string | undefined;
|
18951
|
-
boostTokenDecimals?: number | undefined;
|
18952
18670
|
boostMultiplicator: number;
|
18953
18671
|
} | {
|
18954
18672
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18955
18673
|
boostTokenAddress: string;
|
18956
|
-
boostTokenDecimals?: number | undefined;
|
18957
|
-
boostTokenSymbol?: string | undefined;
|
18958
18674
|
boostTokenChainId: number;
|
18959
18675
|
boostTokenThreshold: number;
|
18960
18676
|
boostConfiguration: {
|
@@ -18977,8 +18693,6 @@ declare const eden: {
|
|
18977
18693
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18978
18694
|
eligibilityTokenChainId: number;
|
18979
18695
|
eligibilityTokenAddress: string;
|
18980
|
-
eligibilityTokenSymbol?: string | undefined;
|
18981
|
-
eligibilityTokenDecimals?: number | undefined;
|
18982
18696
|
eligibilityTokenThreshold: number;
|
18983
18697
|
eligibilityDuration: number;
|
18984
18698
|
} | {
|
@@ -19132,15 +18846,12 @@ declare const eden: {
|
|
19132
18846
|
};
|
19133
18847
|
} | undefined;
|
19134
18848
|
}) | ({
|
19135
|
-
campaignType: CampaignType.
|
18849
|
+
campaignType: CampaignType.MORPHOCOLLATERAL;
|
19136
18850
|
whitelist: string[];
|
19137
18851
|
blacklist: string[];
|
19138
18852
|
endTimestamp: number;
|
19139
18853
|
url?: string | undefined;
|
19140
18854
|
market: string;
|
19141
|
-
apr: string;
|
19142
|
-
rewardTokenPricing: boolean;
|
19143
|
-
targetTokenPricing: boolean;
|
19144
18855
|
} & {
|
19145
18856
|
rewardToken: string;
|
19146
18857
|
amount: string;
|
@@ -19163,14 +18874,10 @@ declare const eden: {
|
|
19163
18874
|
hookType: import("@package/resources/enums").BOOST;
|
19164
18875
|
boostTokenChainId: number;
|
19165
18876
|
boostTokenAddress: string;
|
19166
|
-
boostTokenSymbol?: string | undefined;
|
19167
|
-
boostTokenDecimals?: number | undefined;
|
19168
18877
|
boostMultiplicator: number;
|
19169
18878
|
} | {
|
19170
18879
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
19171
18880
|
boostTokenAddress: string;
|
19172
|
-
boostTokenDecimals?: number | undefined;
|
19173
|
-
boostTokenSymbol?: string | undefined;
|
19174
18881
|
boostTokenChainId: number;
|
19175
18882
|
boostTokenThreshold: number;
|
19176
18883
|
boostConfiguration: {
|
@@ -19193,8 +18900,6 @@ declare const eden: {
|
|
19193
18900
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19194
18901
|
eligibilityTokenChainId: number;
|
19195
18902
|
eligibilityTokenAddress: string;
|
19196
|
-
eligibilityTokenSymbol?: string | undefined;
|
19197
|
-
eligibilityTokenDecimals?: number | undefined;
|
19198
18903
|
eligibilityTokenThreshold: number;
|
19199
18904
|
eligibilityDuration: number;
|
19200
18905
|
} | {
|
@@ -19348,12 +19053,15 @@ declare const eden: {
|
|
19348
19053
|
};
|
19349
19054
|
} | undefined;
|
19350
19055
|
}) | ({
|
19351
|
-
campaignType: CampaignType.
|
19056
|
+
campaignType: CampaignType.MORPHOCOLLATERAL_FIXAPR;
|
19352
19057
|
whitelist: string[];
|
19353
19058
|
blacklist: string[];
|
19354
19059
|
endTimestamp: number;
|
19355
19060
|
url?: string | undefined;
|
19356
|
-
|
19061
|
+
market: string;
|
19062
|
+
apr: string;
|
19063
|
+
rewardTokenPricing: boolean;
|
19064
|
+
targetTokenPricing: boolean;
|
19357
19065
|
} & {
|
19358
19066
|
rewardToken: string;
|
19359
19067
|
amount: string;
|
@@ -19376,14 +19084,10 @@ declare const eden: {
|
|
19376
19084
|
hookType: import("@package/resources/enums").BOOST;
|
19377
19085
|
boostTokenChainId: number;
|
19378
19086
|
boostTokenAddress: string;
|
19379
|
-
boostTokenSymbol?: string | undefined;
|
19380
|
-
boostTokenDecimals?: number | undefined;
|
19381
19087
|
boostMultiplicator: number;
|
19382
19088
|
} | {
|
19383
19089
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
19384
19090
|
boostTokenAddress: string;
|
19385
|
-
boostTokenDecimals?: number | undefined;
|
19386
|
-
boostTokenSymbol?: string | undefined;
|
19387
19091
|
boostTokenChainId: number;
|
19388
19092
|
boostTokenThreshold: number;
|
19389
19093
|
boostConfiguration: {
|
@@ -19406,8 +19110,6 @@ declare const eden: {
|
|
19406
19110
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19407
19111
|
eligibilityTokenChainId: number;
|
19408
19112
|
eligibilityTokenAddress: string;
|
19409
|
-
eligibilityTokenSymbol?: string | undefined;
|
19410
|
-
eligibilityTokenDecimals?: number | undefined;
|
19411
19113
|
eligibilityTokenThreshold: number;
|
19412
19114
|
eligibilityDuration: number;
|
19413
19115
|
} | {
|
@@ -19561,12 +19263,12 @@ declare const eden: {
|
|
19561
19263
|
};
|
19562
19264
|
} | undefined;
|
19563
19265
|
}) | ({
|
19564
|
-
campaignType: CampaignType.
|
19266
|
+
campaignType: CampaignType.MORPHOCOLLATERAL_SINGLETOKEN;
|
19565
19267
|
whitelist: string[];
|
19566
19268
|
blacklist: string[];
|
19567
19269
|
endTimestamp: number;
|
19568
19270
|
url?: string | undefined;
|
19569
|
-
|
19271
|
+
targetToken: string;
|
19570
19272
|
} & {
|
19571
19273
|
rewardToken: string;
|
19572
19274
|
amount: string;
|
@@ -19589,14 +19291,10 @@ declare const eden: {
|
|
19589
19291
|
hookType: import("@package/resources/enums").BOOST;
|
19590
19292
|
boostTokenChainId: number;
|
19591
19293
|
boostTokenAddress: string;
|
19592
|
-
boostTokenSymbol?: string | undefined;
|
19593
|
-
boostTokenDecimals?: number | undefined;
|
19594
19294
|
boostMultiplicator: number;
|
19595
19295
|
} | {
|
19596
19296
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
19597
19297
|
boostTokenAddress: string;
|
19598
|
-
boostTokenDecimals?: number | undefined;
|
19599
|
-
boostTokenSymbol?: string | undefined;
|
19600
19298
|
boostTokenChainId: number;
|
19601
19299
|
boostTokenThreshold: number;
|
19602
19300
|
boostConfiguration: {
|
@@ -19619,8 +19317,6 @@ declare const eden: {
|
|
19619
19317
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19620
19318
|
eligibilityTokenChainId: number;
|
19621
19319
|
eligibilityTokenAddress: string;
|
19622
|
-
eligibilityTokenSymbol?: string | undefined;
|
19623
|
-
eligibilityTokenDecimals?: number | undefined;
|
19624
19320
|
eligibilityTokenThreshold: number;
|
19625
19321
|
eligibilityDuration: number;
|
19626
19322
|
} | {
|
@@ -19774,15 +19470,12 @@ declare const eden: {
|
|
19774
19470
|
};
|
19775
19471
|
} | undefined;
|
19776
19472
|
}) | ({
|
19777
|
-
campaignType: CampaignType.
|
19473
|
+
campaignType: CampaignType.MORPHOSUPPLY;
|
19778
19474
|
whitelist: string[];
|
19779
19475
|
blacklist: string[];
|
19780
19476
|
endTimestamp: number;
|
19781
19477
|
url?: string | undefined;
|
19782
19478
|
market: string;
|
19783
|
-
apr: string;
|
19784
|
-
rewardTokenPricing: boolean;
|
19785
|
-
targetTokenPricing: boolean;
|
19786
19479
|
} & {
|
19787
19480
|
rewardToken: string;
|
19788
19481
|
amount: string;
|
@@ -19805,14 +19498,10 @@ declare const eden: {
|
|
19805
19498
|
hookType: import("@package/resources/enums").BOOST;
|
19806
19499
|
boostTokenChainId: number;
|
19807
19500
|
boostTokenAddress: string;
|
19808
|
-
boostTokenSymbol?: string | undefined;
|
19809
|
-
boostTokenDecimals?: number | undefined;
|
19810
19501
|
boostMultiplicator: number;
|
19811
19502
|
} | {
|
19812
19503
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
19813
19504
|
boostTokenAddress: string;
|
19814
|
-
boostTokenDecimals?: number | undefined;
|
19815
|
-
boostTokenSymbol?: string | undefined;
|
19816
19505
|
boostTokenChainId: number;
|
19817
19506
|
boostTokenThreshold: number;
|
19818
19507
|
boostConfiguration: {
|
@@ -19835,8 +19524,6 @@ declare const eden: {
|
|
19835
19524
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19836
19525
|
eligibilityTokenChainId: number;
|
19837
19526
|
eligibilityTokenAddress: string;
|
19838
|
-
eligibilityTokenSymbol?: string | undefined;
|
19839
|
-
eligibilityTokenDecimals?: number | undefined;
|
19840
19527
|
eligibilityTokenThreshold: number;
|
19841
19528
|
eligibilityDuration: number;
|
19842
19529
|
} | {
|
@@ -19990,12 +19677,15 @@ declare const eden: {
|
|
19990
19677
|
};
|
19991
19678
|
} | undefined;
|
19992
19679
|
}) | ({
|
19993
|
-
campaignType: CampaignType.
|
19680
|
+
campaignType: CampaignType.MORPHOSUPPLY_FIXAPR;
|
19994
19681
|
whitelist: string[];
|
19995
19682
|
blacklist: string[];
|
19996
19683
|
endTimestamp: number;
|
19997
19684
|
url?: string | undefined;
|
19998
|
-
|
19685
|
+
market: string;
|
19686
|
+
apr: string;
|
19687
|
+
rewardTokenPricing: boolean;
|
19688
|
+
targetTokenPricing: boolean;
|
19999
19689
|
} & {
|
20000
19690
|
rewardToken: string;
|
20001
19691
|
amount: string;
|
@@ -20018,14 +19708,10 @@ declare const eden: {
|
|
20018
19708
|
hookType: import("@package/resources/enums").BOOST;
|
20019
19709
|
boostTokenChainId: number;
|
20020
19710
|
boostTokenAddress: string;
|
20021
|
-
boostTokenSymbol?: string | undefined;
|
20022
|
-
boostTokenDecimals?: number | undefined;
|
20023
19711
|
boostMultiplicator: number;
|
20024
19712
|
} | {
|
20025
19713
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20026
19714
|
boostTokenAddress: string;
|
20027
|
-
boostTokenDecimals?: number | undefined;
|
20028
|
-
boostTokenSymbol?: string | undefined;
|
20029
19715
|
boostTokenChainId: number;
|
20030
19716
|
boostTokenThreshold: number;
|
20031
19717
|
boostConfiguration: {
|
@@ -20048,8 +19734,6 @@ declare const eden: {
|
|
20048
19734
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20049
19735
|
eligibilityTokenChainId: number;
|
20050
19736
|
eligibilityTokenAddress: string;
|
20051
|
-
eligibilityTokenSymbol?: string | undefined;
|
20052
|
-
eligibilityTokenDecimals?: number | undefined;
|
20053
19737
|
eligibilityTokenThreshold: number;
|
20054
19738
|
eligibilityDuration: number;
|
20055
19739
|
} | {
|
@@ -20203,12 +19887,12 @@ declare const eden: {
|
|
20203
19887
|
};
|
20204
19888
|
} | undefined;
|
20205
19889
|
}) | ({
|
20206
|
-
campaignType: CampaignType.
|
19890
|
+
campaignType: CampaignType.MORPHOVAULT;
|
20207
19891
|
whitelist: string[];
|
20208
19892
|
blacklist: string[];
|
20209
19893
|
endTimestamp: number;
|
20210
19894
|
url?: string | undefined;
|
20211
|
-
|
19895
|
+
targetToken: string;
|
20212
19896
|
} & {
|
20213
19897
|
rewardToken: string;
|
20214
19898
|
amount: string;
|
@@ -20231,14 +19915,10 @@ declare const eden: {
|
|
20231
19915
|
hookType: import("@package/resources/enums").BOOST;
|
20232
19916
|
boostTokenChainId: number;
|
20233
19917
|
boostTokenAddress: string;
|
20234
|
-
boostTokenSymbol?: string | undefined;
|
20235
|
-
boostTokenDecimals?: number | undefined;
|
20236
19918
|
boostMultiplicator: number;
|
20237
19919
|
} | {
|
20238
19920
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20239
19921
|
boostTokenAddress: string;
|
20240
|
-
boostTokenDecimals?: number | undefined;
|
20241
|
-
boostTokenSymbol?: string | undefined;
|
20242
19922
|
boostTokenChainId: number;
|
20243
19923
|
boostTokenThreshold: number;
|
20244
19924
|
boostConfiguration: {
|
@@ -20261,8 +19941,6 @@ declare const eden: {
|
|
20261
19941
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20262
19942
|
eligibilityTokenChainId: number;
|
20263
19943
|
eligibilityTokenAddress: string;
|
20264
|
-
eligibilityTokenSymbol?: string | undefined;
|
20265
|
-
eligibilityTokenDecimals?: number | undefined;
|
20266
19944
|
eligibilityTokenThreshold: number;
|
20267
19945
|
eligibilityDuration: number;
|
20268
19946
|
} | {
|
@@ -20416,13 +20094,12 @@ declare const eden: {
|
|
20416
20094
|
};
|
20417
20095
|
} | undefined;
|
20418
20096
|
}) | ({
|
20419
|
-
campaignType: CampaignType.
|
20097
|
+
campaignType: CampaignType.MULTILENDBORROW;
|
20420
20098
|
whitelist: string[];
|
20421
20099
|
blacklist: string[];
|
20422
20100
|
endTimestamp: number;
|
20423
20101
|
url?: string | undefined;
|
20424
|
-
|
20425
|
-
composedCampaignsCompute: string;
|
20102
|
+
markets: any[];
|
20426
20103
|
} & {
|
20427
20104
|
rewardToken: string;
|
20428
20105
|
amount: string;
|
@@ -20445,14 +20122,10 @@ declare const eden: {
|
|
20445
20122
|
hookType: import("@package/resources/enums").BOOST;
|
20446
20123
|
boostTokenChainId: number;
|
20447
20124
|
boostTokenAddress: string;
|
20448
|
-
boostTokenSymbol?: string | undefined;
|
20449
|
-
boostTokenDecimals?: number | undefined;
|
20450
20125
|
boostMultiplicator: number;
|
20451
20126
|
} | {
|
20452
20127
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20453
20128
|
boostTokenAddress: string;
|
20454
|
-
boostTokenDecimals?: number | undefined;
|
20455
|
-
boostTokenSymbol?: string | undefined;
|
20456
20129
|
boostTokenChainId: number;
|
20457
20130
|
boostTokenThreshold: number;
|
20458
20131
|
boostConfiguration: {
|
@@ -20475,8 +20148,6 @@ declare const eden: {
|
|
20475
20148
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20476
20149
|
eligibilityTokenChainId: number;
|
20477
20150
|
eligibilityTokenAddress: string;
|
20478
|
-
eligibilityTokenSymbol?: string | undefined;
|
20479
|
-
eligibilityTokenDecimals?: number | undefined;
|
20480
20151
|
eligibilityTokenThreshold: number;
|
20481
20152
|
eligibilityDuration: number;
|
20482
20153
|
} | {
|
@@ -20630,7 +20301,7 @@ declare const eden: {
|
|
20630
20301
|
};
|
20631
20302
|
} | undefined;
|
20632
20303
|
}) | ({
|
20633
|
-
campaignType: CampaignType.
|
20304
|
+
campaignType: CampaignType.MULTILOG;
|
20634
20305
|
whitelist: string[];
|
20635
20306
|
blacklist: string[];
|
20636
20307
|
endTimestamp: number;
|
@@ -20659,14 +20330,10 @@ declare const eden: {
|
|
20659
20330
|
hookType: import("@package/resources/enums").BOOST;
|
20660
20331
|
boostTokenChainId: number;
|
20661
20332
|
boostTokenAddress: string;
|
20662
|
-
boostTokenSymbol?: string | undefined;
|
20663
|
-
boostTokenDecimals?: number | undefined;
|
20664
20333
|
boostMultiplicator: number;
|
20665
20334
|
} | {
|
20666
20335
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20667
20336
|
boostTokenAddress: string;
|
20668
|
-
boostTokenDecimals?: number | undefined;
|
20669
|
-
boostTokenSymbol?: string | undefined;
|
20670
20337
|
boostTokenChainId: number;
|
20671
20338
|
boostTokenThreshold: number;
|
20672
20339
|
boostConfiguration: {
|
@@ -20689,8 +20356,6 @@ declare const eden: {
|
|
20689
20356
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20690
20357
|
eligibilityTokenChainId: number;
|
20691
20358
|
eligibilityTokenAddress: string;
|
20692
|
-
eligibilityTokenSymbol?: string | undefined;
|
20693
|
-
eligibilityTokenDecimals?: number | undefined;
|
20694
20359
|
eligibilityTokenThreshold: number;
|
20695
20360
|
eligibilityDuration: number;
|
20696
20361
|
} | {
|
@@ -20844,13 +20509,13 @@ declare const eden: {
|
|
20844
20509
|
};
|
20845
20510
|
} | undefined;
|
20846
20511
|
}) | ({
|
20847
|
-
campaignType: CampaignType.
|
20512
|
+
campaignType: CampaignType.MULTILOG_DUTCH;
|
20848
20513
|
whitelist: string[];
|
20849
20514
|
blacklist: string[];
|
20850
20515
|
endTimestamp: number;
|
20851
|
-
|
20852
|
-
|
20853
|
-
|
20516
|
+
url?: string | undefined;
|
20517
|
+
composedCampaigns: any[];
|
20518
|
+
composedCampaignsCompute: string;
|
20854
20519
|
} & {
|
20855
20520
|
rewardToken: string;
|
20856
20521
|
amount: string;
|
@@ -20873,14 +20538,10 @@ declare const eden: {
|
|
20873
20538
|
hookType: import("@package/resources/enums").BOOST;
|
20874
20539
|
boostTokenChainId: number;
|
20875
20540
|
boostTokenAddress: string;
|
20876
|
-
boostTokenSymbol?: string | undefined;
|
20877
|
-
boostTokenDecimals?: number | undefined;
|
20878
20541
|
boostMultiplicator: number;
|
20879
20542
|
} | {
|
20880
20543
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20881
20544
|
boostTokenAddress: string;
|
20882
|
-
boostTokenDecimals?: number | undefined;
|
20883
|
-
boostTokenSymbol?: string | undefined;
|
20884
20545
|
boostTokenChainId: number;
|
20885
20546
|
boostTokenThreshold: number;
|
20886
20547
|
boostConfiguration: {
|
@@ -20903,8 +20564,6 @@ declare const eden: {
|
|
20903
20564
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20904
20565
|
eligibilityTokenChainId: number;
|
20905
20566
|
eligibilityTokenAddress: string;
|
20906
|
-
eligibilityTokenSymbol?: string | undefined;
|
20907
|
-
eligibilityTokenDecimals?: number | undefined;
|
20908
20567
|
eligibilityTokenThreshold: number;
|
20909
20568
|
eligibilityDuration: number;
|
20910
20569
|
} | {
|
@@ -21058,12 +20717,13 @@ declare const eden: {
|
|
21058
20717
|
};
|
21059
20718
|
} | undefined;
|
21060
20719
|
}) | ({
|
21061
|
-
campaignType: CampaignType.
|
20720
|
+
campaignType: CampaignType.RADIANT;
|
21062
20721
|
whitelist: string[];
|
21063
20722
|
blacklist: string[];
|
21064
20723
|
endTimestamp: number;
|
21065
|
-
|
21066
|
-
|
20724
|
+
targetToken: string;
|
20725
|
+
forwarders: string[];
|
20726
|
+
capInUSD?: string | undefined;
|
21067
20727
|
} & {
|
21068
20728
|
rewardToken: string;
|
21069
20729
|
amount: string;
|
@@ -21086,14 +20746,10 @@ declare const eden: {
|
|
21086
20746
|
hookType: import("@package/resources/enums").BOOST;
|
21087
20747
|
boostTokenChainId: number;
|
21088
20748
|
boostTokenAddress: string;
|
21089
|
-
boostTokenSymbol?: string | undefined;
|
21090
|
-
boostTokenDecimals?: number | undefined;
|
21091
20749
|
boostMultiplicator: number;
|
21092
20750
|
} | {
|
21093
20751
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21094
20752
|
boostTokenAddress: string;
|
21095
|
-
boostTokenDecimals?: number | undefined;
|
21096
|
-
boostTokenSymbol?: string | undefined;
|
21097
20753
|
boostTokenChainId: number;
|
21098
20754
|
boostTokenThreshold: number;
|
21099
20755
|
boostConfiguration: {
|
@@ -21116,8 +20772,6 @@ declare const eden: {
|
|
21116
20772
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21117
20773
|
eligibilityTokenChainId: number;
|
21118
20774
|
eligibilityTokenAddress: string;
|
21119
|
-
eligibilityTokenSymbol?: string | undefined;
|
21120
|
-
eligibilityTokenDecimals?: number | undefined;
|
21121
20775
|
eligibilityTokenThreshold: number;
|
21122
20776
|
eligibilityDuration: number;
|
21123
20777
|
} | {
|
@@ -21271,14 +20925,12 @@ declare const eden: {
|
|
21271
20925
|
};
|
21272
20926
|
} | undefined;
|
21273
20927
|
}) | ({
|
21274
|
-
campaignType: CampaignType.
|
20928
|
+
campaignType: CampaignType.SATOSHI_VAULT;
|
21275
20929
|
whitelist: string[];
|
21276
20930
|
blacklist: string[];
|
21277
|
-
subCampaignType: import("@package/resources/enums").SILOSubCampaignType;
|
21278
20931
|
endTimestamp: number;
|
21279
|
-
|
21280
|
-
|
21281
|
-
forwarders: string[];
|
20932
|
+
url?: string | undefined;
|
20933
|
+
vaultAddress: string;
|
21282
20934
|
} & {
|
21283
20935
|
rewardToken: string;
|
21284
20936
|
amount: string;
|
@@ -21301,14 +20953,10 @@ declare const eden: {
|
|
21301
20953
|
hookType: import("@package/resources/enums").BOOST;
|
21302
20954
|
boostTokenChainId: number;
|
21303
20955
|
boostTokenAddress: string;
|
21304
|
-
boostTokenSymbol?: string | undefined;
|
21305
|
-
boostTokenDecimals?: number | undefined;
|
21306
20956
|
boostMultiplicator: number;
|
21307
20957
|
} | {
|
21308
20958
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21309
20959
|
boostTokenAddress: string;
|
21310
|
-
boostTokenDecimals?: number | undefined;
|
21311
|
-
boostTokenSymbol?: string | undefined;
|
21312
20960
|
boostTokenChainId: number;
|
21313
20961
|
boostTokenThreshold: number;
|
21314
20962
|
boostConfiguration: {
|
@@ -21331,8 +20979,6 @@ declare const eden: {
|
|
21331
20979
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21332
20980
|
eligibilityTokenChainId: number;
|
21333
20981
|
eligibilityTokenAddress: string;
|
21334
|
-
eligibilityTokenSymbol?: string | undefined;
|
21335
|
-
eligibilityTokenDecimals?: number | undefined;
|
21336
20982
|
eligibilityTokenThreshold: number;
|
21337
20983
|
eligibilityDuration: number;
|
21338
20984
|
} | {
|
@@ -21486,12 +21132,14 @@ declare const eden: {
|
|
21486
21132
|
};
|
21487
21133
|
} | undefined;
|
21488
21134
|
}) | ({
|
21489
|
-
campaignType: CampaignType.
|
21135
|
+
campaignType: CampaignType.SILO;
|
21490
21136
|
whitelist: string[];
|
21491
21137
|
blacklist: string[];
|
21138
|
+
subCampaignType: import("@package/resources/enums").SILOSubCampaignType;
|
21492
21139
|
endTimestamp: number;
|
21493
|
-
url?: string | undefined;
|
21494
21140
|
targetToken: string;
|
21141
|
+
repository: string;
|
21142
|
+
forwarders: string[];
|
21495
21143
|
} & {
|
21496
21144
|
rewardToken: string;
|
21497
21145
|
amount: string;
|
@@ -21514,14 +21162,10 @@ declare const eden: {
|
|
21514
21162
|
hookType: import("@package/resources/enums").BOOST;
|
21515
21163
|
boostTokenChainId: number;
|
21516
21164
|
boostTokenAddress: string;
|
21517
|
-
boostTokenSymbol?: string | undefined;
|
21518
|
-
boostTokenDecimals?: number | undefined;
|
21519
21165
|
boostMultiplicator: number;
|
21520
21166
|
} | {
|
21521
21167
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21522
21168
|
boostTokenAddress: string;
|
21523
|
-
boostTokenDecimals?: number | undefined;
|
21524
|
-
boostTokenSymbol?: string | undefined;
|
21525
21169
|
boostTokenChainId: number;
|
21526
21170
|
boostTokenThreshold: number;
|
21527
21171
|
boostConfiguration: {
|
@@ -21544,8 +21188,6 @@ declare const eden: {
|
|
21544
21188
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21545
21189
|
eligibilityTokenChainId: number;
|
21546
21190
|
eligibilityTokenAddress: string;
|
21547
|
-
eligibilityTokenSymbol?: string | undefined;
|
21548
|
-
eligibilityTokenDecimals?: number | undefined;
|
21549
21191
|
eligibilityTokenThreshold: number;
|
21550
21192
|
eligibilityDuration: number;
|
21551
21193
|
} | {
|
@@ -21699,7 +21341,7 @@ declare const eden: {
|
|
21699
21341
|
};
|
21700
21342
|
} | undefined;
|
21701
21343
|
}) | ({
|
21702
|
-
campaignType: CampaignType.
|
21344
|
+
campaignType: CampaignType.STABULLSTAKING;
|
21703
21345
|
whitelist: string[];
|
21704
21346
|
blacklist: string[];
|
21705
21347
|
endTimestamp: number;
|
@@ -21727,14 +21369,10 @@ declare const eden: {
|
|
21727
21369
|
hookType: import("@package/resources/enums").BOOST;
|
21728
21370
|
boostTokenChainId: number;
|
21729
21371
|
boostTokenAddress: string;
|
21730
|
-
boostTokenSymbol?: string | undefined;
|
21731
|
-
boostTokenDecimals?: number | undefined;
|
21732
21372
|
boostMultiplicator: number;
|
21733
21373
|
} | {
|
21734
21374
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21735
21375
|
boostTokenAddress: string;
|
21736
|
-
boostTokenDecimals?: number | undefined;
|
21737
|
-
boostTokenSymbol?: string | undefined;
|
21738
21376
|
boostTokenChainId: number;
|
21739
21377
|
boostTokenThreshold: number;
|
21740
21378
|
boostConfiguration: {
|
@@ -21757,8 +21395,6 @@ declare const eden: {
|
|
21757
21395
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21758
21396
|
eligibilityTokenChainId: number;
|
21759
21397
|
eligibilityTokenAddress: string;
|
21760
|
-
eligibilityTokenSymbol?: string | undefined;
|
21761
|
-
eligibilityTokenDecimals?: number | undefined;
|
21762
21398
|
eligibilityTokenThreshold: number;
|
21763
21399
|
eligibilityDuration: number;
|
21764
21400
|
} | {
|
@@ -21912,7 +21548,7 @@ declare const eden: {
|
|
21912
21548
|
};
|
21913
21549
|
} | undefined;
|
21914
21550
|
}) | ({
|
21915
|
-
campaignType: CampaignType.
|
21551
|
+
campaignType: CampaignType.STAKEDAO_CURVEVAULT;
|
21916
21552
|
whitelist: string[];
|
21917
21553
|
blacklist: string[];
|
21918
21554
|
endTimestamp: number;
|
@@ -21940,14 +21576,10 @@ declare const eden: {
|
|
21940
21576
|
hookType: import("@package/resources/enums").BOOST;
|
21941
21577
|
boostTokenChainId: number;
|
21942
21578
|
boostTokenAddress: string;
|
21943
|
-
boostTokenSymbol?: string | undefined;
|
21944
|
-
boostTokenDecimals?: number | undefined;
|
21945
21579
|
boostMultiplicator: number;
|
21946
21580
|
} | {
|
21947
21581
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21948
21582
|
boostTokenAddress: string;
|
21949
|
-
boostTokenDecimals?: number | undefined;
|
21950
|
-
boostTokenSymbol?: string | undefined;
|
21951
21583
|
boostTokenChainId: number;
|
21952
21584
|
boostTokenThreshold: number;
|
21953
21585
|
boostConfiguration: {
|
@@ -21970,8 +21602,6 @@ declare const eden: {
|
|
21970
21602
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21971
21603
|
eligibilityTokenChainId: number;
|
21972
21604
|
eligibilityTokenAddress: string;
|
21973
|
-
eligibilityTokenSymbol?: string | undefined;
|
21974
|
-
eligibilityTokenDecimals?: number | undefined;
|
21975
21605
|
eligibilityTokenThreshold: number;
|
21976
21606
|
eligibilityDuration: number;
|
21977
21607
|
} | {
|
@@ -22125,12 +21755,12 @@ declare const eden: {
|
|
22125
21755
|
};
|
22126
21756
|
} | undefined;
|
22127
21757
|
}) | ({
|
22128
|
-
campaignType: CampaignType.
|
21758
|
+
campaignType: CampaignType.STAKEDAO_VAULT;
|
22129
21759
|
whitelist: string[];
|
22130
21760
|
blacklist: string[];
|
22131
21761
|
endTimestamp: number;
|
22132
21762
|
url?: string | undefined;
|
22133
|
-
|
21763
|
+
targetToken: string;
|
22134
21764
|
} & {
|
22135
21765
|
rewardToken: string;
|
22136
21766
|
amount: string;
|
@@ -22153,14 +21783,10 @@ declare const eden: {
|
|
22153
21783
|
hookType: import("@package/resources/enums").BOOST;
|
22154
21784
|
boostTokenChainId: number;
|
22155
21785
|
boostTokenAddress: string;
|
22156
|
-
boostTokenSymbol?: string | undefined;
|
22157
|
-
boostTokenDecimals?: number | undefined;
|
22158
21786
|
boostMultiplicator: number;
|
22159
21787
|
} | {
|
22160
21788
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
22161
21789
|
boostTokenAddress: string;
|
22162
|
-
boostTokenDecimals?: number | undefined;
|
22163
|
-
boostTokenSymbol?: string | undefined;
|
22164
21790
|
boostTokenChainId: number;
|
22165
21791
|
boostTokenThreshold: number;
|
22166
21792
|
boostConfiguration: {
|
@@ -22183,8 +21809,6 @@ declare const eden: {
|
|
22183
21809
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22184
21810
|
eligibilityTokenChainId: number;
|
22185
21811
|
eligibilityTokenAddress: string;
|
22186
|
-
eligibilityTokenSymbol?: string | undefined;
|
22187
|
-
eligibilityTokenDecimals?: number | undefined;
|
22188
21812
|
eligibilityTokenThreshold: number;
|
22189
21813
|
eligibilityDuration: number;
|
22190
21814
|
} | {
|
@@ -22338,12 +21962,12 @@ declare const eden: {
|
|
22338
21962
|
};
|
22339
21963
|
} | undefined;
|
22340
21964
|
}) | ({
|
22341
|
-
campaignType: CampaignType.
|
21965
|
+
campaignType: CampaignType.SUMMERFINANCE_VAULT;
|
22342
21966
|
whitelist: string[];
|
22343
21967
|
blacklist: string[];
|
22344
21968
|
endTimestamp: number;
|
22345
21969
|
url?: string | undefined;
|
22346
|
-
|
21970
|
+
vaultAddress: string;
|
22347
21971
|
} & {
|
22348
21972
|
rewardToken: string;
|
22349
21973
|
amount: string;
|
@@ -22366,14 +21990,10 @@ declare const eden: {
|
|
22366
21990
|
hookType: import("@package/resources/enums").BOOST;
|
22367
21991
|
boostTokenChainId: number;
|
22368
21992
|
boostTokenAddress: string;
|
22369
|
-
boostTokenSymbol?: string | undefined;
|
22370
|
-
boostTokenDecimals?: number | undefined;
|
22371
21993
|
boostMultiplicator: number;
|
22372
21994
|
} | {
|
22373
21995
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
22374
21996
|
boostTokenAddress: string;
|
22375
|
-
boostTokenDecimals?: number | undefined;
|
22376
|
-
boostTokenSymbol?: string | undefined;
|
22377
21997
|
boostTokenChainId: number;
|
22378
21998
|
boostTokenThreshold: number;
|
22379
21999
|
boostConfiguration: {
|
@@ -22396,8 +22016,6 @@ declare const eden: {
|
|
22396
22016
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22397
22017
|
eligibilityTokenChainId: number;
|
22398
22018
|
eligibilityTokenAddress: string;
|
22399
|
-
eligibilityTokenSymbol?: string | undefined;
|
22400
|
-
eligibilityTokenDecimals?: number | undefined;
|
22401
22019
|
eligibilityTokenThreshold: number;
|
22402
22020
|
eligibilityDuration: number;
|
22403
22021
|
} | {
|
@@ -22551,12 +22169,12 @@ declare const eden: {
|
|
22551
22169
|
};
|
22552
22170
|
} | undefined;
|
22553
22171
|
}) | ({
|
22554
|
-
campaignType: CampaignType.
|
22172
|
+
campaignType: CampaignType.SYMBIOTIC_VAULT;
|
22555
22173
|
whitelist: string[];
|
22556
22174
|
blacklist: string[];
|
22557
22175
|
endTimestamp: number;
|
22558
22176
|
url?: string | undefined;
|
22559
|
-
|
22177
|
+
vaultContract: string;
|
22560
22178
|
} & {
|
22561
22179
|
rewardToken: string;
|
22562
22180
|
amount: string;
|
@@ -22579,14 +22197,10 @@ declare const eden: {
|
|
22579
22197
|
hookType: import("@package/resources/enums").BOOST;
|
22580
22198
|
boostTokenChainId: number;
|
22581
22199
|
boostTokenAddress: string;
|
22582
|
-
boostTokenSymbol?: string | undefined;
|
22583
|
-
boostTokenDecimals?: number | undefined;
|
22584
22200
|
boostMultiplicator: number;
|
22585
22201
|
} | {
|
22586
22202
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
22587
22203
|
boostTokenAddress: string;
|
22588
|
-
boostTokenDecimals?: number | undefined;
|
22589
|
-
boostTokenSymbol?: string | undefined;
|
22590
22204
|
boostTokenChainId: number;
|
22591
22205
|
boostTokenThreshold: number;
|
22592
22206
|
boostConfiguration: {
|
@@ -22609,8 +22223,6 @@ declare const eden: {
|
|
22609
22223
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22610
22224
|
eligibilityTokenChainId: number;
|
22611
22225
|
eligibilityTokenAddress: string;
|
22612
|
-
eligibilityTokenSymbol?: string | undefined;
|
22613
|
-
eligibilityTokenDecimals?: number | undefined;
|
22614
22226
|
eligibilityTokenThreshold: number;
|
22615
22227
|
eligibilityDuration: number;
|
22616
22228
|
} | {
|
@@ -22764,12 +22376,12 @@ declare const eden: {
|
|
22764
22376
|
};
|
22765
22377
|
} | undefined;
|
22766
22378
|
}) | ({
|
22767
|
-
campaignType: CampaignType.
|
22379
|
+
campaignType: CampaignType.SYNCSWAP_VAULT;
|
22768
22380
|
whitelist: string[];
|
22769
22381
|
blacklist: string[];
|
22770
22382
|
endTimestamp: number;
|
22771
22383
|
url?: string | undefined;
|
22772
|
-
|
22384
|
+
vaultAddress: string;
|
22773
22385
|
} & {
|
22774
22386
|
rewardToken: string;
|
22775
22387
|
amount: string;
|
@@ -22792,14 +22404,10 @@ declare const eden: {
|
|
22792
22404
|
hookType: import("@package/resources/enums").BOOST;
|
22793
22405
|
boostTokenChainId: number;
|
22794
22406
|
boostTokenAddress: string;
|
22795
|
-
boostTokenSymbol?: string | undefined;
|
22796
|
-
boostTokenDecimals?: number | undefined;
|
22797
22407
|
boostMultiplicator: number;
|
22798
22408
|
} | {
|
22799
22409
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
22800
22410
|
boostTokenAddress: string;
|
22801
|
-
boostTokenDecimals?: number | undefined;
|
22802
|
-
boostTokenSymbol?: string | undefined;
|
22803
22411
|
boostTokenChainId: number;
|
22804
22412
|
boostTokenThreshold: number;
|
22805
22413
|
boostConfiguration: {
|
@@ -22822,8 +22430,6 @@ declare const eden: {
|
|
22822
22430
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22823
22431
|
eligibilityTokenChainId: number;
|
22824
22432
|
eligibilityTokenAddress: string;
|
22825
|
-
eligibilityTokenSymbol?: string | undefined;
|
22826
|
-
eligibilityTokenDecimals?: number | undefined;
|
22827
22433
|
eligibilityTokenThreshold: number;
|
22828
22434
|
eligibilityDuration: number;
|
22829
22435
|
} | {
|
@@ -22977,12 +22583,12 @@ declare const eden: {
|
|
22977
22583
|
};
|
22978
22584
|
} | undefined;
|
22979
22585
|
}) | ({
|
22980
|
-
campaignType: CampaignType.
|
22586
|
+
campaignType: CampaignType.MORPHOSUPPLY_SINGLETOKEN;
|
22981
22587
|
whitelist: string[];
|
22982
22588
|
blacklist: string[];
|
22983
22589
|
endTimestamp: number;
|
22984
22590
|
url?: string | undefined;
|
22985
|
-
|
22591
|
+
targetToken: string;
|
22986
22592
|
} & {
|
22987
22593
|
rewardToken: string;
|
22988
22594
|
amount: string;
|
@@ -23005,14 +22611,10 @@ declare const eden: {
|
|
23005
22611
|
hookType: import("@package/resources/enums").BOOST;
|
23006
22612
|
boostTokenChainId: number;
|
23007
22613
|
boostTokenAddress: string;
|
23008
|
-
boostTokenSymbol?: string | undefined;
|
23009
|
-
boostTokenDecimals?: number | undefined;
|
23010
22614
|
boostMultiplicator: number;
|
23011
22615
|
} | {
|
23012
22616
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23013
22617
|
boostTokenAddress: string;
|
23014
|
-
boostTokenDecimals?: number | undefined;
|
23015
|
-
boostTokenSymbol?: string | undefined;
|
23016
22618
|
boostTokenChainId: number;
|
23017
22619
|
boostTokenThreshold: number;
|
23018
22620
|
boostConfiguration: {
|
@@ -23035,8 +22637,6 @@ declare const eden: {
|
|
23035
22637
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23036
22638
|
eligibilityTokenChainId: number;
|
23037
22639
|
eligibilityTokenAddress: string;
|
23038
|
-
eligibilityTokenSymbol?: string | undefined;
|
23039
|
-
eligibilityTokenDecimals?: number | undefined;
|
23040
22640
|
eligibilityTokenThreshold: number;
|
23041
22641
|
eligibilityDuration: number;
|
23042
22642
|
} | {
|
@@ -23190,20 +22790,12 @@ declare const eden: {
|
|
23190
22790
|
};
|
23191
22791
|
} | undefined;
|
23192
22792
|
}) | ({
|
23193
|
-
campaignType: CampaignType.
|
22793
|
+
campaignType: CampaignType.TERM_FINANCE;
|
23194
22794
|
whitelist: string[];
|
23195
22795
|
blacklist: string[];
|
23196
22796
|
endTimestamp: number;
|
23197
22797
|
url?: string | undefined;
|
23198
|
-
|
23199
|
-
isOutOfRangeIncentivized: boolean;
|
23200
|
-
weightFees: number;
|
23201
|
-
weightToken0: number;
|
23202
|
-
weightToken1: number;
|
23203
|
-
lowerPriceBond?: number | undefined;
|
23204
|
-
upperPriceBond?: number | undefined;
|
23205
|
-
lowerPriceTolerance?: number | undefined;
|
23206
|
-
upperPriceTolerance?: number | undefined;
|
22798
|
+
collateral: string;
|
23207
22799
|
} & {
|
23208
22800
|
rewardToken: string;
|
23209
22801
|
amount: string;
|
@@ -23226,14 +22818,10 @@ declare const eden: {
|
|
23226
22818
|
hookType: import("@package/resources/enums").BOOST;
|
23227
22819
|
boostTokenChainId: number;
|
23228
22820
|
boostTokenAddress: string;
|
23229
|
-
boostTokenSymbol?: string | undefined;
|
23230
|
-
boostTokenDecimals?: number | undefined;
|
23231
22821
|
boostMultiplicator: number;
|
23232
22822
|
} | {
|
23233
22823
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23234
22824
|
boostTokenAddress: string;
|
23235
|
-
boostTokenDecimals?: number | undefined;
|
23236
|
-
boostTokenSymbol?: string | undefined;
|
23237
22825
|
boostTokenChainId: number;
|
23238
22826
|
boostTokenThreshold: number;
|
23239
22827
|
boostConfiguration: {
|
@@ -23256,8 +22844,6 @@ declare const eden: {
|
|
23256
22844
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23257
22845
|
eligibilityTokenChainId: number;
|
23258
22846
|
eligibilityTokenAddress: string;
|
23259
|
-
eligibilityTokenSymbol?: string | undefined;
|
23260
|
-
eligibilityTokenDecimals?: number | undefined;
|
23261
22847
|
eligibilityTokenThreshold: number;
|
23262
22848
|
eligibilityDuration: number;
|
23263
22849
|
} | {
|
@@ -23411,7 +22997,7 @@ declare const eden: {
|
|
23411
22997
|
};
|
23412
22998
|
} | undefined;
|
23413
22999
|
}) | ({
|
23414
|
-
campaignType: CampaignType.
|
23000
|
+
campaignType: CampaignType.UNISWAP_V3;
|
23415
23001
|
whitelist: string[];
|
23416
23002
|
blacklist: string[];
|
23417
23003
|
endTimestamp: number;
|
@@ -23447,14 +23033,10 @@ declare const eden: {
|
|
23447
23033
|
hookType: import("@package/resources/enums").BOOST;
|
23448
23034
|
boostTokenChainId: number;
|
23449
23035
|
boostTokenAddress: string;
|
23450
|
-
boostTokenSymbol?: string | undefined;
|
23451
|
-
boostTokenDecimals?: number | undefined;
|
23452
23036
|
boostMultiplicator: number;
|
23453
23037
|
} | {
|
23454
23038
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23455
23039
|
boostTokenAddress: string;
|
23456
|
-
boostTokenDecimals?: number | undefined;
|
23457
|
-
boostTokenSymbol?: string | undefined;
|
23458
23040
|
boostTokenChainId: number;
|
23459
23041
|
boostTokenThreshold: number;
|
23460
23042
|
boostConfiguration: {
|
@@ -23477,8 +23059,6 @@ declare const eden: {
|
|
23477
23059
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23478
23060
|
eligibilityTokenChainId: number;
|
23479
23061
|
eligibilityTokenAddress: string;
|
23480
|
-
eligibilityTokenSymbol?: string | undefined;
|
23481
|
-
eligibilityTokenDecimals?: number | undefined;
|
23482
23062
|
eligibilityTokenThreshold: number;
|
23483
23063
|
eligibilityDuration: number;
|
23484
23064
|
} | {
|
@@ -23659,14 +23239,10 @@ declare const eden: {
|
|
23659
23239
|
hookType: import("@package/resources/enums").BOOST;
|
23660
23240
|
boostTokenChainId: number;
|
23661
23241
|
boostTokenAddress: string;
|
23662
|
-
boostTokenSymbol?: string | undefined;
|
23663
|
-
boostTokenDecimals?: number | undefined;
|
23664
23242
|
boostMultiplicator: number;
|
23665
23243
|
} | {
|
23666
23244
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23667
23245
|
boostTokenAddress: string;
|
23668
|
-
boostTokenDecimals?: number | undefined;
|
23669
|
-
boostTokenSymbol?: string | undefined;
|
23670
23246
|
boostTokenChainId: number;
|
23671
23247
|
boostTokenThreshold: number;
|
23672
23248
|
boostConfiguration: {
|
@@ -23689,8 +23265,6 @@ declare const eden: {
|
|
23689
23265
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23690
23266
|
eligibilityTokenChainId: number;
|
23691
23267
|
eligibilityTokenAddress: string;
|
23692
|
-
eligibilityTokenSymbol?: string | undefined;
|
23693
|
-
eligibilityTokenDecimals?: number | undefined;
|
23694
23268
|
eligibilityTokenThreshold: number;
|
23695
23269
|
eligibilityDuration: number;
|
23696
23270
|
} | {
|
@@ -23873,14 +23447,10 @@ declare const eden: {
|
|
23873
23447
|
hookType: import("@package/resources/enums").BOOST;
|
23874
23448
|
boostTokenChainId: number;
|
23875
23449
|
boostTokenAddress: string;
|
23876
|
-
boostTokenSymbol?: string | undefined;
|
23877
|
-
boostTokenDecimals?: number | undefined;
|
23878
23450
|
boostMultiplicator: number;
|
23879
23451
|
} | {
|
23880
23452
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23881
23453
|
boostTokenAddress: string;
|
23882
|
-
boostTokenDecimals?: number | undefined;
|
23883
|
-
boostTokenSymbol?: string | undefined;
|
23884
23454
|
boostTokenChainId: number;
|
23885
23455
|
boostTokenThreshold: number;
|
23886
23456
|
boostConfiguration: {
|
@@ -23903,8 +23473,6 @@ declare const eden: {
|
|
23903
23473
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23904
23474
|
eligibilityTokenChainId: number;
|
23905
23475
|
eligibilityTokenAddress: string;
|
23906
|
-
eligibilityTokenSymbol?: string | undefined;
|
23907
|
-
eligibilityTokenDecimals?: number | undefined;
|
23908
23476
|
eligibilityTokenThreshold: number;
|
23909
23477
|
eligibilityDuration: number;
|
23910
23478
|
} | {
|