@merkl/api 1.4.7 → 1.4.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/eden/index.d.ts +2 -432
- package/dist/src/engine/deprecated/erc20SubTypeProcessors/helpers/ownerFinder.js.map +1 -1
- package/dist/src/engine/deprecated/erc20SubTypeProcessors/subtypesRound1.js.map +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/factories.js.map +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/ERC4626/tvl.js.map +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/eulerEarn/metadata.js.map +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/index.d.ts +0 -1
- package/dist/src/engine/implementations/Erc20/subTypes/index.js.map +1 -1
- package/dist/src/index.d.ts +260 -694
- package/dist/src/libs/computeFee.d.ts +12 -17
- package/dist/src/modules/v4/campaign/campaign.service.js.map +1 -1
- package/dist/src/modules/v4/config/config.controller.d.ts +4 -8
- package/dist/src/modules/v4/payload/payload.model.d.ts +13 -12
- package/dist/src/modules/v4/payload/payload.model.js.map +1 -1
- package/dist/src/modules/v4/payload/payload.service.js.map +1 -1
- package/dist/src/modules/v4/priceSource/priceFetchers/implementations/erc4626Service.d.ts +0 -1
- package/dist/src/modules/v4/priceSource/priceFetchers/implementations/erc4626Service.js.map +1 -1
- package/dist/src/modules/v4/priceSource/priceSource.controller.d.ts +2 -0
- package/dist/src/modules/v4/priceSource/priceSource.controller.js.map +1 -1
- package/dist/src/modules/v4/priceSource/priceSource.model.d.ts +2 -0
- package/dist/src/modules/v4/priceSource/priceSource.model.js.map +1 -1
- package/dist/src/modules/v4/priceSource/priceSource.service.js.map +1 -1
- package/dist/src/modules/v4/programPayload/programPayload.controller.d.ts +254 -686
- package/dist/src/modules/v4/programPayload/programPayload.model.d.ts +20 -18
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +7 -1
- package/dist/src/modules/v4/programPayload/programPayload.repository.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/aave.d.ts +3 -1
- package/dist/src/modules/v4/programPayload/subPayloads/aave.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/drip.d.ts +45 -3
- package/dist/src/modules/v4/programPayload/subPayloads/drip.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/ethena.d.ts +4 -1
- package/dist/src/modules/v4/programPayload/subPayloads/ethena.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/hypurrFi.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/nibiru.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/redbelly.d.ts +4 -1
- package/dist/src/modules/v4/programPayload/subPayloads/redbelly.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/rezerve.d.ts +2 -1
- package/dist/src/modules/v4/programPayload/subPayloads/rezerve.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/tac.d.ts +2 -1
- package/dist/src/modules/v4/programPayload/subPayloads/tac.js.map +1 -1
- package/dist/src/modules/v4/router.d.ts +15 -449
- package/dist/src/utils/models.d.ts +4 -8
- package/package.json +1 -1
package/dist/src/eden/index.d.ts
CHANGED
@@ -8342,6 +8342,7 @@ declare const eden: {
|
|
8342
8342
|
}>>;
|
8343
8343
|
patch: (body: {
|
8344
8344
|
addressOrSymbol?: string | undefined;
|
8345
|
+
chainId?: number | undefined;
|
8345
8346
|
method?: "COINGECKO" | "CONSTANT" | "DEFILLAMA" | "DEXSCREENER" | "EQUAL_TO" | "ERC4626" | "INDEXCOOP" | "ONCHAIN_CALL" | "UNISWAP_V2" | undefined;
|
8346
8347
|
args?: {} | undefined;
|
8347
8348
|
protected?: boolean | undefined;
|
@@ -8427,6 +8428,7 @@ declare const eden: {
|
|
8427
8428
|
}>>;
|
8428
8429
|
post: (body: {
|
8429
8430
|
addressOrSymbol: string;
|
8431
|
+
chainId?: number | undefined;
|
8430
8432
|
method: "COINGECKO" | "CONSTANT" | "DEFILLAMA" | "DEXSCREENER" | "EQUAL_TO" | "ERC4626" | "INDEXCOOP" | "ONCHAIN_CALL" | "UNISWAP_V2";
|
8431
8433
|
args: {};
|
8432
8434
|
protected?: boolean | undefined;
|
@@ -8634,14 +8636,10 @@ declare const eden: {
|
|
8634
8636
|
hookType: import("@package/resources/enums").BOOST;
|
8635
8637
|
boostTokenChainId: number;
|
8636
8638
|
boostTokenAddress: string;
|
8637
|
-
boostTokenSymbol?: string | undefined;
|
8638
|
-
boostTokenDecimals?: number | undefined;
|
8639
8639
|
boostMultiplicator: number;
|
8640
8640
|
} | {
|
8641
8641
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
8642
8642
|
boostTokenAddress: string;
|
8643
|
-
boostTokenDecimals?: number | undefined;
|
8644
|
-
boostTokenSymbol?: string | undefined;
|
8645
8643
|
boostTokenChainId: number;
|
8646
8644
|
boostTokenThreshold: number;
|
8647
8645
|
boostConfiguration: {
|
@@ -8664,8 +8662,6 @@ declare const eden: {
|
|
8664
8662
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
8665
8663
|
eligibilityTokenChainId: number;
|
8666
8664
|
eligibilityTokenAddress: string;
|
8667
|
-
eligibilityTokenSymbol?: string | undefined;
|
8668
|
-
eligibilityTokenDecimals?: number | undefined;
|
8669
8665
|
eligibilityTokenThreshold: number;
|
8670
8666
|
eligibilityDuration: number;
|
8671
8667
|
} | {
|
@@ -8847,14 +8843,10 @@ declare const eden: {
|
|
8847
8843
|
hookType: import("@package/resources/enums").BOOST;
|
8848
8844
|
boostTokenChainId: number;
|
8849
8845
|
boostTokenAddress: string;
|
8850
|
-
boostTokenSymbol?: string | undefined;
|
8851
|
-
boostTokenDecimals?: number | undefined;
|
8852
8846
|
boostMultiplicator: number;
|
8853
8847
|
} | {
|
8854
8848
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
8855
8849
|
boostTokenAddress: string;
|
8856
|
-
boostTokenDecimals?: number | undefined;
|
8857
|
-
boostTokenSymbol?: string | undefined;
|
8858
8850
|
boostTokenChainId: number;
|
8859
8851
|
boostTokenThreshold: number;
|
8860
8852
|
boostConfiguration: {
|
@@ -8877,8 +8869,6 @@ declare const eden: {
|
|
8877
8869
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
8878
8870
|
eligibilityTokenChainId: number;
|
8879
8871
|
eligibilityTokenAddress: string;
|
8880
|
-
eligibilityTokenSymbol?: string | undefined;
|
8881
|
-
eligibilityTokenDecimals?: number | undefined;
|
8882
8872
|
eligibilityTokenThreshold: number;
|
8883
8873
|
eligibilityDuration: number;
|
8884
8874
|
} | {
|
@@ -9060,14 +9050,10 @@ declare const eden: {
|
|
9060
9050
|
hookType: import("@package/resources/enums").BOOST;
|
9061
9051
|
boostTokenChainId: number;
|
9062
9052
|
boostTokenAddress: string;
|
9063
|
-
boostTokenSymbol?: string | undefined;
|
9064
|
-
boostTokenDecimals?: number | undefined;
|
9065
9053
|
boostMultiplicator: number;
|
9066
9054
|
} | {
|
9067
9055
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
9068
9056
|
boostTokenAddress: string;
|
9069
|
-
boostTokenDecimals?: number | undefined;
|
9070
|
-
boostTokenSymbol?: string | undefined;
|
9071
9057
|
boostTokenChainId: number;
|
9072
9058
|
boostTokenThreshold: number;
|
9073
9059
|
boostConfiguration: {
|
@@ -9090,8 +9076,6 @@ declare const eden: {
|
|
9090
9076
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
9091
9077
|
eligibilityTokenChainId: number;
|
9092
9078
|
eligibilityTokenAddress: string;
|
9093
|
-
eligibilityTokenSymbol?: string | undefined;
|
9094
|
-
eligibilityTokenDecimals?: number | undefined;
|
9095
9079
|
eligibilityTokenThreshold: number;
|
9096
9080
|
eligibilityDuration: number;
|
9097
9081
|
} | {
|
@@ -9275,14 +9259,10 @@ declare const eden: {
|
|
9275
9259
|
hookType: import("@package/resources/enums").BOOST;
|
9276
9260
|
boostTokenChainId: number;
|
9277
9261
|
boostTokenAddress: string;
|
9278
|
-
boostTokenSymbol?: string | undefined;
|
9279
|
-
boostTokenDecimals?: number | undefined;
|
9280
9262
|
boostMultiplicator: number;
|
9281
9263
|
} | {
|
9282
9264
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
9283
9265
|
boostTokenAddress: string;
|
9284
|
-
boostTokenDecimals?: number | undefined;
|
9285
|
-
boostTokenSymbol?: string | undefined;
|
9286
9266
|
boostTokenChainId: number;
|
9287
9267
|
boostTokenThreshold: number;
|
9288
9268
|
boostConfiguration: {
|
@@ -9305,8 +9285,6 @@ declare const eden: {
|
|
9305
9285
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
9306
9286
|
eligibilityTokenChainId: number;
|
9307
9287
|
eligibilityTokenAddress: string;
|
9308
|
-
eligibilityTokenSymbol?: string | undefined;
|
9309
|
-
eligibilityTokenDecimals?: number | undefined;
|
9310
9288
|
eligibilityTokenThreshold: number;
|
9311
9289
|
eligibilityDuration: number;
|
9312
9290
|
} | {
|
@@ -9496,14 +9474,10 @@ declare const eden: {
|
|
9496
9474
|
hookType: import("@package/resources/enums").BOOST;
|
9497
9475
|
boostTokenChainId: number;
|
9498
9476
|
boostTokenAddress: string;
|
9499
|
-
boostTokenSymbol?: string | undefined;
|
9500
|
-
boostTokenDecimals?: number | undefined;
|
9501
9477
|
boostMultiplicator: number;
|
9502
9478
|
} | {
|
9503
9479
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
9504
9480
|
boostTokenAddress: string;
|
9505
|
-
boostTokenDecimals?: number | undefined;
|
9506
|
-
boostTokenSymbol?: string | undefined;
|
9507
9481
|
boostTokenChainId: number;
|
9508
9482
|
boostTokenThreshold: number;
|
9509
9483
|
boostConfiguration: {
|
@@ -9526,8 +9500,6 @@ declare const eden: {
|
|
9526
9500
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
9527
9501
|
eligibilityTokenChainId: number;
|
9528
9502
|
eligibilityTokenAddress: string;
|
9529
|
-
eligibilityTokenSymbol?: string | undefined;
|
9530
|
-
eligibilityTokenDecimals?: number | undefined;
|
9531
9503
|
eligibilityTokenThreshold: number;
|
9532
9504
|
eligibilityDuration: number;
|
9533
9505
|
} | {
|
@@ -9710,14 +9682,10 @@ declare const eden: {
|
|
9710
9682
|
hookType: import("@package/resources/enums").BOOST;
|
9711
9683
|
boostTokenChainId: number;
|
9712
9684
|
boostTokenAddress: string;
|
9713
|
-
boostTokenSymbol?: string | undefined;
|
9714
|
-
boostTokenDecimals?: number | undefined;
|
9715
9685
|
boostMultiplicator: number;
|
9716
9686
|
} | {
|
9717
9687
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
9718
9688
|
boostTokenAddress: string;
|
9719
|
-
boostTokenDecimals?: number | undefined;
|
9720
|
-
boostTokenSymbol?: string | undefined;
|
9721
9689
|
boostTokenChainId: number;
|
9722
9690
|
boostTokenThreshold: number;
|
9723
9691
|
boostConfiguration: {
|
@@ -9740,8 +9708,6 @@ declare const eden: {
|
|
9740
9708
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
9741
9709
|
eligibilityTokenChainId: number;
|
9742
9710
|
eligibilityTokenAddress: string;
|
9743
|
-
eligibilityTokenSymbol?: string | undefined;
|
9744
|
-
eligibilityTokenDecimals?: number | undefined;
|
9745
9711
|
eligibilityTokenThreshold: number;
|
9746
9712
|
eligibilityDuration: number;
|
9747
9713
|
} | {
|
@@ -9923,14 +9889,10 @@ declare const eden: {
|
|
9923
9889
|
hookType: import("@package/resources/enums").BOOST;
|
9924
9890
|
boostTokenChainId: number;
|
9925
9891
|
boostTokenAddress: string;
|
9926
|
-
boostTokenSymbol?: string | undefined;
|
9927
|
-
boostTokenDecimals?: number | undefined;
|
9928
9892
|
boostMultiplicator: number;
|
9929
9893
|
} | {
|
9930
9894
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
9931
9895
|
boostTokenAddress: string;
|
9932
|
-
boostTokenDecimals?: number | undefined;
|
9933
|
-
boostTokenSymbol?: string | undefined;
|
9934
9896
|
boostTokenChainId: number;
|
9935
9897
|
boostTokenThreshold: number;
|
9936
9898
|
boostConfiguration: {
|
@@ -9953,8 +9915,6 @@ declare const eden: {
|
|
9953
9915
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
9954
9916
|
eligibilityTokenChainId: number;
|
9955
9917
|
eligibilityTokenAddress: string;
|
9956
|
-
eligibilityTokenSymbol?: string | undefined;
|
9957
|
-
eligibilityTokenDecimals?: number | undefined;
|
9958
9918
|
eligibilityTokenThreshold: number;
|
9959
9919
|
eligibilityDuration: number;
|
9960
9920
|
} | {
|
@@ -10136,14 +10096,10 @@ declare const eden: {
|
|
10136
10096
|
hookType: import("@package/resources/enums").BOOST;
|
10137
10097
|
boostTokenChainId: number;
|
10138
10098
|
boostTokenAddress: string;
|
10139
|
-
boostTokenSymbol?: string | undefined;
|
10140
|
-
boostTokenDecimals?: number | undefined;
|
10141
10099
|
boostMultiplicator: number;
|
10142
10100
|
} | {
|
10143
10101
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
10144
10102
|
boostTokenAddress: string;
|
10145
|
-
boostTokenDecimals?: number | undefined;
|
10146
|
-
boostTokenSymbol?: string | undefined;
|
10147
10103
|
boostTokenChainId: number;
|
10148
10104
|
boostTokenThreshold: number;
|
10149
10105
|
boostConfiguration: {
|
@@ -10166,8 +10122,6 @@ declare const eden: {
|
|
10166
10122
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
10167
10123
|
eligibilityTokenChainId: number;
|
10168
10124
|
eligibilityTokenAddress: string;
|
10169
|
-
eligibilityTokenSymbol?: string | undefined;
|
10170
|
-
eligibilityTokenDecimals?: number | undefined;
|
10171
10125
|
eligibilityTokenThreshold: number;
|
10172
10126
|
eligibilityDuration: number;
|
10173
10127
|
} | {
|
@@ -10352,14 +10306,10 @@ declare const eden: {
|
|
10352
10306
|
hookType: import("@package/resources/enums").BOOST;
|
10353
10307
|
boostTokenChainId: number;
|
10354
10308
|
boostTokenAddress: string;
|
10355
|
-
boostTokenSymbol?: string | undefined;
|
10356
|
-
boostTokenDecimals?: number | undefined;
|
10357
10309
|
boostMultiplicator: number;
|
10358
10310
|
} | {
|
10359
10311
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
10360
10312
|
boostTokenAddress: string;
|
10361
|
-
boostTokenDecimals?: number | undefined;
|
10362
|
-
boostTokenSymbol?: string | undefined;
|
10363
10313
|
boostTokenChainId: number;
|
10364
10314
|
boostTokenThreshold: number;
|
10365
10315
|
boostConfiguration: {
|
@@ -10382,8 +10332,6 @@ declare const eden: {
|
|
10382
10332
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
10383
10333
|
eligibilityTokenChainId: number;
|
10384
10334
|
eligibilityTokenAddress: string;
|
10385
|
-
eligibilityTokenSymbol?: string | undefined;
|
10386
|
-
eligibilityTokenDecimals?: number | undefined;
|
10387
10335
|
eligibilityTokenThreshold: number;
|
10388
10336
|
eligibilityDuration: number;
|
10389
10337
|
} | {
|
@@ -10566,14 +10514,10 @@ declare const eden: {
|
|
10566
10514
|
hookType: import("@package/resources/enums").BOOST;
|
10567
10515
|
boostTokenChainId: number;
|
10568
10516
|
boostTokenAddress: string;
|
10569
|
-
boostTokenSymbol?: string | undefined;
|
10570
|
-
boostTokenDecimals?: number | undefined;
|
10571
10517
|
boostMultiplicator: number;
|
10572
10518
|
} | {
|
10573
10519
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
10574
10520
|
boostTokenAddress: string;
|
10575
|
-
boostTokenDecimals?: number | undefined;
|
10576
|
-
boostTokenSymbol?: string | undefined;
|
10577
10521
|
boostTokenChainId: number;
|
10578
10522
|
boostTokenThreshold: number;
|
10579
10523
|
boostConfiguration: {
|
@@ -10596,8 +10540,6 @@ declare const eden: {
|
|
10596
10540
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
10597
10541
|
eligibilityTokenChainId: number;
|
10598
10542
|
eligibilityTokenAddress: string;
|
10599
|
-
eligibilityTokenSymbol?: string | undefined;
|
10600
|
-
eligibilityTokenDecimals?: number | undefined;
|
10601
10543
|
eligibilityTokenThreshold: number;
|
10602
10544
|
eligibilityDuration: number;
|
10603
10545
|
} | {
|
@@ -10779,14 +10721,10 @@ declare const eden: {
|
|
10779
10721
|
hookType: import("@package/resources/enums").BOOST;
|
10780
10722
|
boostTokenChainId: number;
|
10781
10723
|
boostTokenAddress: string;
|
10782
|
-
boostTokenSymbol?: string | undefined;
|
10783
|
-
boostTokenDecimals?: number | undefined;
|
10784
10724
|
boostMultiplicator: number;
|
10785
10725
|
} | {
|
10786
10726
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
10787
10727
|
boostTokenAddress: string;
|
10788
|
-
boostTokenDecimals?: number | undefined;
|
10789
|
-
boostTokenSymbol?: string | undefined;
|
10790
10728
|
boostTokenChainId: number;
|
10791
10729
|
boostTokenThreshold: number;
|
10792
10730
|
boostConfiguration: {
|
@@ -10809,8 +10747,6 @@ declare const eden: {
|
|
10809
10747
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
10810
10748
|
eligibilityTokenChainId: number;
|
10811
10749
|
eligibilityTokenAddress: string;
|
10812
|
-
eligibilityTokenSymbol?: string | undefined;
|
10813
|
-
eligibilityTokenDecimals?: number | undefined;
|
10814
10750
|
eligibilityTokenThreshold: number;
|
10815
10751
|
eligibilityDuration: number;
|
10816
10752
|
} | {
|
@@ -10996,14 +10932,10 @@ declare const eden: {
|
|
10996
10932
|
hookType: import("@package/resources/enums").BOOST;
|
10997
10933
|
boostTokenChainId: number;
|
10998
10934
|
boostTokenAddress: string;
|
10999
|
-
boostTokenSymbol?: string | undefined;
|
11000
|
-
boostTokenDecimals?: number | undefined;
|
11001
10935
|
boostMultiplicator: number;
|
11002
10936
|
} | {
|
11003
10937
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11004
10938
|
boostTokenAddress: string;
|
11005
|
-
boostTokenDecimals?: number | undefined;
|
11006
|
-
boostTokenSymbol?: string | undefined;
|
11007
10939
|
boostTokenChainId: number;
|
11008
10940
|
boostTokenThreshold: number;
|
11009
10941
|
boostConfiguration: {
|
@@ -11026,8 +10958,6 @@ declare const eden: {
|
|
11026
10958
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11027
10959
|
eligibilityTokenChainId: number;
|
11028
10960
|
eligibilityTokenAddress: string;
|
11029
|
-
eligibilityTokenSymbol?: string | undefined;
|
11030
|
-
eligibilityTokenDecimals?: number | undefined;
|
11031
10961
|
eligibilityTokenThreshold: number;
|
11032
10962
|
eligibilityDuration: number;
|
11033
10963
|
} | {
|
@@ -11210,14 +11140,10 @@ declare const eden: {
|
|
11210
11140
|
hookType: import("@package/resources/enums").BOOST;
|
11211
11141
|
boostTokenChainId: number;
|
11212
11142
|
boostTokenAddress: string;
|
11213
|
-
boostTokenSymbol?: string | undefined;
|
11214
|
-
boostTokenDecimals?: number | undefined;
|
11215
11143
|
boostMultiplicator: number;
|
11216
11144
|
} | {
|
11217
11145
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11218
11146
|
boostTokenAddress: string;
|
11219
|
-
boostTokenDecimals?: number | undefined;
|
11220
|
-
boostTokenSymbol?: string | undefined;
|
11221
11147
|
boostTokenChainId: number;
|
11222
11148
|
boostTokenThreshold: number;
|
11223
11149
|
boostConfiguration: {
|
@@ -11240,8 +11166,6 @@ declare const eden: {
|
|
11240
11166
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11241
11167
|
eligibilityTokenChainId: number;
|
11242
11168
|
eligibilityTokenAddress: string;
|
11243
|
-
eligibilityTokenSymbol?: string | undefined;
|
11244
|
-
eligibilityTokenDecimals?: number | undefined;
|
11245
11169
|
eligibilityTokenThreshold: number;
|
11246
11170
|
eligibilityDuration: number;
|
11247
11171
|
} | {
|
@@ -11424,14 +11348,10 @@ declare const eden: {
|
|
11424
11348
|
hookType: import("@package/resources/enums").BOOST;
|
11425
11349
|
boostTokenChainId: number;
|
11426
11350
|
boostTokenAddress: string;
|
11427
|
-
boostTokenSymbol?: string | undefined;
|
11428
|
-
boostTokenDecimals?: number | undefined;
|
11429
11351
|
boostMultiplicator: number;
|
11430
11352
|
} | {
|
11431
11353
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11432
11354
|
boostTokenAddress: string;
|
11433
|
-
boostTokenDecimals?: number | undefined;
|
11434
|
-
boostTokenSymbol?: string | undefined;
|
11435
11355
|
boostTokenChainId: number;
|
11436
11356
|
boostTokenThreshold: number;
|
11437
11357
|
boostConfiguration: {
|
@@ -11454,8 +11374,6 @@ declare const eden: {
|
|
11454
11374
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11455
11375
|
eligibilityTokenChainId: number;
|
11456
11376
|
eligibilityTokenAddress: string;
|
11457
|
-
eligibilityTokenSymbol?: string | undefined;
|
11458
|
-
eligibilityTokenDecimals?: number | undefined;
|
11459
11377
|
eligibilityTokenThreshold: number;
|
11460
11378
|
eligibilityDuration: number;
|
11461
11379
|
} | {
|
@@ -11645,14 +11563,10 @@ declare const eden: {
|
|
11645
11563
|
hookType: import("@package/resources/enums").BOOST;
|
11646
11564
|
boostTokenChainId: number;
|
11647
11565
|
boostTokenAddress: string;
|
11648
|
-
boostTokenSymbol?: string | undefined;
|
11649
|
-
boostTokenDecimals?: number | undefined;
|
11650
11566
|
boostMultiplicator: number;
|
11651
11567
|
} | {
|
11652
11568
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11653
11569
|
boostTokenAddress: string;
|
11654
|
-
boostTokenDecimals?: number | undefined;
|
11655
|
-
boostTokenSymbol?: string | undefined;
|
11656
11570
|
boostTokenChainId: number;
|
11657
11571
|
boostTokenThreshold: number;
|
11658
11572
|
boostConfiguration: {
|
@@ -11675,8 +11589,6 @@ declare const eden: {
|
|
11675
11589
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11676
11590
|
eligibilityTokenChainId: number;
|
11677
11591
|
eligibilityTokenAddress: string;
|
11678
|
-
eligibilityTokenSymbol?: string | undefined;
|
11679
|
-
eligibilityTokenDecimals?: number | undefined;
|
11680
11592
|
eligibilityTokenThreshold: number;
|
11681
11593
|
eligibilityDuration: number;
|
11682
11594
|
} | {
|
@@ -11859,14 +11771,10 @@ declare const eden: {
|
|
11859
11771
|
hookType: import("@package/resources/enums").BOOST;
|
11860
11772
|
boostTokenChainId: number;
|
11861
11773
|
boostTokenAddress: string;
|
11862
|
-
boostTokenSymbol?: string | undefined;
|
11863
|
-
boostTokenDecimals?: number | undefined;
|
11864
11774
|
boostMultiplicator: number;
|
11865
11775
|
} | {
|
11866
11776
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
11867
11777
|
boostTokenAddress: string;
|
11868
|
-
boostTokenDecimals?: number | undefined;
|
11869
|
-
boostTokenSymbol?: string | undefined;
|
11870
11778
|
boostTokenChainId: number;
|
11871
11779
|
boostTokenThreshold: number;
|
11872
11780
|
boostConfiguration: {
|
@@ -11889,8 +11797,6 @@ declare const eden: {
|
|
11889
11797
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
11890
11798
|
eligibilityTokenChainId: number;
|
11891
11799
|
eligibilityTokenAddress: string;
|
11892
|
-
eligibilityTokenSymbol?: string | undefined;
|
11893
|
-
eligibilityTokenDecimals?: number | undefined;
|
11894
11800
|
eligibilityTokenThreshold: number;
|
11895
11801
|
eligibilityDuration: number;
|
11896
11802
|
} | {
|
@@ -12070,14 +11976,10 @@ declare const eden: {
|
|
12070
11976
|
hookType: import("@package/resources/enums").BOOST;
|
12071
11977
|
boostTokenChainId: number;
|
12072
11978
|
boostTokenAddress: string;
|
12073
|
-
boostTokenSymbol?: string | undefined;
|
12074
|
-
boostTokenDecimals?: number | undefined;
|
12075
11979
|
boostMultiplicator: number;
|
12076
11980
|
} | {
|
12077
11981
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12078
11982
|
boostTokenAddress: string;
|
12079
|
-
boostTokenDecimals?: number | undefined;
|
12080
|
-
boostTokenSymbol?: string | undefined;
|
12081
11983
|
boostTokenChainId: number;
|
12082
11984
|
boostTokenThreshold: number;
|
12083
11985
|
boostConfiguration: {
|
@@ -12100,8 +12002,6 @@ declare const eden: {
|
|
12100
12002
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12101
12003
|
eligibilityTokenChainId: number;
|
12102
12004
|
eligibilityTokenAddress: string;
|
12103
|
-
eligibilityTokenSymbol?: string | undefined;
|
12104
|
-
eligibilityTokenDecimals?: number | undefined;
|
12105
12005
|
eligibilityTokenThreshold: number;
|
12106
12006
|
eligibilityDuration: number;
|
12107
12007
|
} | {
|
@@ -12283,14 +12183,10 @@ declare const eden: {
|
|
12283
12183
|
hookType: import("@package/resources/enums").BOOST;
|
12284
12184
|
boostTokenChainId: number;
|
12285
12185
|
boostTokenAddress: string;
|
12286
|
-
boostTokenSymbol?: string | undefined;
|
12287
|
-
boostTokenDecimals?: number | undefined;
|
12288
12186
|
boostMultiplicator: number;
|
12289
12187
|
} | {
|
12290
12188
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12291
12189
|
boostTokenAddress: string;
|
12292
|
-
boostTokenDecimals?: number | undefined;
|
12293
|
-
boostTokenSymbol?: string | undefined;
|
12294
12190
|
boostTokenChainId: number;
|
12295
12191
|
boostTokenThreshold: number;
|
12296
12192
|
boostConfiguration: {
|
@@ -12313,8 +12209,6 @@ declare const eden: {
|
|
12313
12209
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12314
12210
|
eligibilityTokenChainId: number;
|
12315
12211
|
eligibilityTokenAddress: string;
|
12316
|
-
eligibilityTokenSymbol?: string | undefined;
|
12317
|
-
eligibilityTokenDecimals?: number | undefined;
|
12318
12212
|
eligibilityTokenThreshold: number;
|
12319
12213
|
eligibilityDuration: number;
|
12320
12214
|
} | {
|
@@ -12497,14 +12391,10 @@ declare const eden: {
|
|
12497
12391
|
hookType: import("@package/resources/enums").BOOST;
|
12498
12392
|
boostTokenChainId: number;
|
12499
12393
|
boostTokenAddress: string;
|
12500
|
-
boostTokenSymbol?: string | undefined;
|
12501
|
-
boostTokenDecimals?: number | undefined;
|
12502
12394
|
boostMultiplicator: number;
|
12503
12395
|
} | {
|
12504
12396
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12505
12397
|
boostTokenAddress: string;
|
12506
|
-
boostTokenDecimals?: number | undefined;
|
12507
|
-
boostTokenSymbol?: string | undefined;
|
12508
12398
|
boostTokenChainId: number;
|
12509
12399
|
boostTokenThreshold: number;
|
12510
12400
|
boostConfiguration: {
|
@@ -12527,8 +12417,6 @@ declare const eden: {
|
|
12527
12417
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12528
12418
|
eligibilityTokenChainId: number;
|
12529
12419
|
eligibilityTokenAddress: string;
|
12530
|
-
eligibilityTokenSymbol?: string | undefined;
|
12531
|
-
eligibilityTokenDecimals?: number | undefined;
|
12532
12420
|
eligibilityTokenThreshold: number;
|
12533
12421
|
eligibilityDuration: number;
|
12534
12422
|
} | {
|
@@ -12714,14 +12602,10 @@ declare const eden: {
|
|
12714
12602
|
hookType: import("@package/resources/enums").BOOST;
|
12715
12603
|
boostTokenChainId: number;
|
12716
12604
|
boostTokenAddress: string;
|
12717
|
-
boostTokenSymbol?: string | undefined;
|
12718
|
-
boostTokenDecimals?: number | undefined;
|
12719
12605
|
boostMultiplicator: number;
|
12720
12606
|
} | {
|
12721
12607
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12722
12608
|
boostTokenAddress: string;
|
12723
|
-
boostTokenDecimals?: number | undefined;
|
12724
|
-
boostTokenSymbol?: string | undefined;
|
12725
12609
|
boostTokenChainId: number;
|
12726
12610
|
boostTokenThreshold: number;
|
12727
12611
|
boostConfiguration: {
|
@@ -12744,8 +12628,6 @@ declare const eden: {
|
|
12744
12628
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12745
12629
|
eligibilityTokenChainId: number;
|
12746
12630
|
eligibilityTokenAddress: string;
|
12747
|
-
eligibilityTokenSymbol?: string | undefined;
|
12748
|
-
eligibilityTokenDecimals?: number | undefined;
|
12749
12631
|
eligibilityTokenThreshold: number;
|
12750
12632
|
eligibilityDuration: number;
|
12751
12633
|
} | {
|
@@ -12929,14 +12811,10 @@ declare const eden: {
|
|
12929
12811
|
hookType: import("@package/resources/enums").BOOST;
|
12930
12812
|
boostTokenChainId: number;
|
12931
12813
|
boostTokenAddress: string;
|
12932
|
-
boostTokenSymbol?: string | undefined;
|
12933
|
-
boostTokenDecimals?: number | undefined;
|
12934
12814
|
boostMultiplicator: number;
|
12935
12815
|
} | {
|
12936
12816
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
12937
12817
|
boostTokenAddress: string;
|
12938
|
-
boostTokenDecimals?: number | undefined;
|
12939
|
-
boostTokenSymbol?: string | undefined;
|
12940
12818
|
boostTokenChainId: number;
|
12941
12819
|
boostTokenThreshold: number;
|
12942
12820
|
boostConfiguration: {
|
@@ -12959,8 +12837,6 @@ declare const eden: {
|
|
12959
12837
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
12960
12838
|
eligibilityTokenChainId: number;
|
12961
12839
|
eligibilityTokenAddress: string;
|
12962
|
-
eligibilityTokenSymbol?: string | undefined;
|
12963
|
-
eligibilityTokenDecimals?: number | undefined;
|
12964
12840
|
eligibilityTokenThreshold: number;
|
12965
12841
|
eligibilityDuration: number;
|
12966
12842
|
} | {
|
@@ -13143,14 +13019,10 @@ declare const eden: {
|
|
13143
13019
|
hookType: import("@package/resources/enums").BOOST;
|
13144
13020
|
boostTokenChainId: number;
|
13145
13021
|
boostTokenAddress: string;
|
13146
|
-
boostTokenSymbol?: string | undefined;
|
13147
|
-
boostTokenDecimals?: number | undefined;
|
13148
13022
|
boostMultiplicator: number;
|
13149
13023
|
} | {
|
13150
13024
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
13151
13025
|
boostTokenAddress: string;
|
13152
|
-
boostTokenDecimals?: number | undefined;
|
13153
|
-
boostTokenSymbol?: string | undefined;
|
13154
13026
|
boostTokenChainId: number;
|
13155
13027
|
boostTokenThreshold: number;
|
13156
13028
|
boostConfiguration: {
|
@@ -13173,8 +13045,6 @@ declare const eden: {
|
|
13173
13045
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
13174
13046
|
eligibilityTokenChainId: number;
|
13175
13047
|
eligibilityTokenAddress: string;
|
13176
|
-
eligibilityTokenSymbol?: string | undefined;
|
13177
|
-
eligibilityTokenDecimals?: number | undefined;
|
13178
13048
|
eligibilityTokenThreshold: number;
|
13179
13049
|
eligibilityDuration: number;
|
13180
13050
|
} | {
|
@@ -13360,14 +13230,10 @@ declare const eden: {
|
|
13360
13230
|
hookType: import("@package/resources/enums").BOOST;
|
13361
13231
|
boostTokenChainId: number;
|
13362
13232
|
boostTokenAddress: string;
|
13363
|
-
boostTokenSymbol?: string | undefined;
|
13364
|
-
boostTokenDecimals?: number | undefined;
|
13365
13233
|
boostMultiplicator: number;
|
13366
13234
|
} | {
|
13367
13235
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
13368
13236
|
boostTokenAddress: string;
|
13369
|
-
boostTokenDecimals?: number | undefined;
|
13370
|
-
boostTokenSymbol?: string | undefined;
|
13371
13237
|
boostTokenChainId: number;
|
13372
13238
|
boostTokenThreshold: number;
|
13373
13239
|
boostConfiguration: {
|
@@ -13390,8 +13256,6 @@ declare const eden: {
|
|
13390
13256
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
13391
13257
|
eligibilityTokenChainId: number;
|
13392
13258
|
eligibilityTokenAddress: string;
|
13393
|
-
eligibilityTokenSymbol?: string | undefined;
|
13394
|
-
eligibilityTokenDecimals?: number | undefined;
|
13395
13259
|
eligibilityTokenThreshold: number;
|
13396
13260
|
eligibilityDuration: number;
|
13397
13261
|
} | {
|
@@ -13574,14 +13438,10 @@ declare const eden: {
|
|
13574
13438
|
hookType: import("@package/resources/enums").BOOST;
|
13575
13439
|
boostTokenChainId: number;
|
13576
13440
|
boostTokenAddress: string;
|
13577
|
-
boostTokenSymbol?: string | undefined;
|
13578
|
-
boostTokenDecimals?: number | undefined;
|
13579
13441
|
boostMultiplicator: number;
|
13580
13442
|
} | {
|
13581
13443
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
13582
13444
|
boostTokenAddress: string;
|
13583
|
-
boostTokenDecimals?: number | undefined;
|
13584
|
-
boostTokenSymbol?: string | undefined;
|
13585
13445
|
boostTokenChainId: number;
|
13586
13446
|
boostTokenThreshold: number;
|
13587
13447
|
boostConfiguration: {
|
@@ -13604,8 +13464,6 @@ declare const eden: {
|
|
13604
13464
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
13605
13465
|
eligibilityTokenChainId: number;
|
13606
13466
|
eligibilityTokenAddress: string;
|
13607
|
-
eligibilityTokenSymbol?: string | undefined;
|
13608
|
-
eligibilityTokenDecimals?: number | undefined;
|
13609
13467
|
eligibilityTokenThreshold: number;
|
13610
13468
|
eligibilityDuration: number;
|
13611
13469
|
} | {
|
@@ -13790,14 +13648,10 @@ declare const eden: {
|
|
13790
13648
|
hookType: import("@package/resources/enums").BOOST;
|
13791
13649
|
boostTokenChainId: number;
|
13792
13650
|
boostTokenAddress: string;
|
13793
|
-
boostTokenSymbol?: string | undefined;
|
13794
|
-
boostTokenDecimals?: number | undefined;
|
13795
13651
|
boostMultiplicator: number;
|
13796
13652
|
} | {
|
13797
13653
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
13798
13654
|
boostTokenAddress: string;
|
13799
|
-
boostTokenDecimals?: number | undefined;
|
13800
|
-
boostTokenSymbol?: string | undefined;
|
13801
13655
|
boostTokenChainId: number;
|
13802
13656
|
boostTokenThreshold: number;
|
13803
13657
|
boostConfiguration: {
|
@@ -13820,8 +13674,6 @@ declare const eden: {
|
|
13820
13674
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
13821
13675
|
eligibilityTokenChainId: number;
|
13822
13676
|
eligibilityTokenAddress: string;
|
13823
|
-
eligibilityTokenSymbol?: string | undefined;
|
13824
|
-
eligibilityTokenDecimals?: number | undefined;
|
13825
13677
|
eligibilityTokenThreshold: number;
|
13826
13678
|
eligibilityDuration: number;
|
13827
13679
|
} | {
|
@@ -14005,14 +13857,10 @@ declare const eden: {
|
|
14005
13857
|
hookType: import("@package/resources/enums").BOOST;
|
14006
13858
|
boostTokenChainId: number;
|
14007
13859
|
boostTokenAddress: string;
|
14008
|
-
boostTokenSymbol?: string | undefined;
|
14009
|
-
boostTokenDecimals?: number | undefined;
|
14010
13860
|
boostMultiplicator: number;
|
14011
13861
|
} | {
|
14012
13862
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14013
13863
|
boostTokenAddress: string;
|
14014
|
-
boostTokenDecimals?: number | undefined;
|
14015
|
-
boostTokenSymbol?: string | undefined;
|
14016
13864
|
boostTokenChainId: number;
|
14017
13865
|
boostTokenThreshold: number;
|
14018
13866
|
boostConfiguration: {
|
@@ -14035,8 +13883,6 @@ declare const eden: {
|
|
14035
13883
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14036
13884
|
eligibilityTokenChainId: number;
|
14037
13885
|
eligibilityTokenAddress: string;
|
14038
|
-
eligibilityTokenSymbol?: string | undefined;
|
14039
|
-
eligibilityTokenDecimals?: number | undefined;
|
14040
13886
|
eligibilityTokenThreshold: number;
|
14041
13887
|
eligibilityDuration: number;
|
14042
13888
|
} | {
|
@@ -14219,14 +14065,10 @@ declare const eden: {
|
|
14219
14065
|
hookType: import("@package/resources/enums").BOOST;
|
14220
14066
|
boostTokenChainId: number;
|
14221
14067
|
boostTokenAddress: string;
|
14222
|
-
boostTokenSymbol?: string | undefined;
|
14223
|
-
boostTokenDecimals?: number | undefined;
|
14224
14068
|
boostMultiplicator: number;
|
14225
14069
|
} | {
|
14226
14070
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14227
14071
|
boostTokenAddress: string;
|
14228
|
-
boostTokenDecimals?: number | undefined;
|
14229
|
-
boostTokenSymbol?: string | undefined;
|
14230
14072
|
boostTokenChainId: number;
|
14231
14073
|
boostTokenThreshold: number;
|
14232
14074
|
boostConfiguration: {
|
@@ -14249,8 +14091,6 @@ declare const eden: {
|
|
14249
14091
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14250
14092
|
eligibilityTokenChainId: number;
|
14251
14093
|
eligibilityTokenAddress: string;
|
14252
|
-
eligibilityTokenSymbol?: string | undefined;
|
14253
|
-
eligibilityTokenDecimals?: number | undefined;
|
14254
14094
|
eligibilityTokenThreshold: number;
|
14255
14095
|
eligibilityDuration: number;
|
14256
14096
|
} | {
|
@@ -14433,14 +14273,10 @@ declare const eden: {
|
|
14433
14273
|
hookType: import("@package/resources/enums").BOOST;
|
14434
14274
|
boostTokenChainId: number;
|
14435
14275
|
boostTokenAddress: string;
|
14436
|
-
boostTokenSymbol?: string | undefined;
|
14437
|
-
boostTokenDecimals?: number | undefined;
|
14438
14276
|
boostMultiplicator: number;
|
14439
14277
|
} | {
|
14440
14278
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14441
14279
|
boostTokenAddress: string;
|
14442
|
-
boostTokenDecimals?: number | undefined;
|
14443
|
-
boostTokenSymbol?: string | undefined;
|
14444
14280
|
boostTokenChainId: number;
|
14445
14281
|
boostTokenThreshold: number;
|
14446
14282
|
boostConfiguration: {
|
@@ -14463,8 +14299,6 @@ declare const eden: {
|
|
14463
14299
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14464
14300
|
eligibilityTokenChainId: number;
|
14465
14301
|
eligibilityTokenAddress: string;
|
14466
|
-
eligibilityTokenSymbol?: string | undefined;
|
14467
|
-
eligibilityTokenDecimals?: number | undefined;
|
14468
14302
|
eligibilityTokenThreshold: number;
|
14469
14303
|
eligibilityDuration: number;
|
14470
14304
|
} | {
|
@@ -14647,14 +14481,10 @@ declare const eden: {
|
|
14647
14481
|
hookType: import("@package/resources/enums").BOOST;
|
14648
14482
|
boostTokenChainId: number;
|
14649
14483
|
boostTokenAddress: string;
|
14650
|
-
boostTokenSymbol?: string | undefined;
|
14651
|
-
boostTokenDecimals?: number | undefined;
|
14652
14484
|
boostMultiplicator: number;
|
14653
14485
|
} | {
|
14654
14486
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14655
14487
|
boostTokenAddress: string;
|
14656
|
-
boostTokenDecimals?: number | undefined;
|
14657
|
-
boostTokenSymbol?: string | undefined;
|
14658
14488
|
boostTokenChainId: number;
|
14659
14489
|
boostTokenThreshold: number;
|
14660
14490
|
boostConfiguration: {
|
@@ -14677,8 +14507,6 @@ declare const eden: {
|
|
14677
14507
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14678
14508
|
eligibilityTokenChainId: number;
|
14679
14509
|
eligibilityTokenAddress: string;
|
14680
|
-
eligibilityTokenSymbol?: string | undefined;
|
14681
|
-
eligibilityTokenDecimals?: number | undefined;
|
14682
14510
|
eligibilityTokenThreshold: number;
|
14683
14511
|
eligibilityDuration: number;
|
14684
14512
|
} | {
|
@@ -14862,14 +14690,10 @@ declare const eden: {
|
|
14862
14690
|
hookType: import("@package/resources/enums").BOOST;
|
14863
14691
|
boostTokenChainId: number;
|
14864
14692
|
boostTokenAddress: string;
|
14865
|
-
boostTokenSymbol?: string | undefined;
|
14866
|
-
boostTokenDecimals?: number | undefined;
|
14867
14693
|
boostMultiplicator: number;
|
14868
14694
|
} | {
|
14869
14695
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
14870
14696
|
boostTokenAddress: string;
|
14871
|
-
boostTokenDecimals?: number | undefined;
|
14872
|
-
boostTokenSymbol?: string | undefined;
|
14873
14697
|
boostTokenChainId: number;
|
14874
14698
|
boostTokenThreshold: number;
|
14875
14699
|
boostConfiguration: {
|
@@ -14892,8 +14716,6 @@ declare const eden: {
|
|
14892
14716
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
14893
14717
|
eligibilityTokenChainId: number;
|
14894
14718
|
eligibilityTokenAddress: string;
|
14895
|
-
eligibilityTokenSymbol?: string | undefined;
|
14896
|
-
eligibilityTokenDecimals?: number | undefined;
|
14897
14719
|
eligibilityTokenThreshold: number;
|
14898
14720
|
eligibilityDuration: number;
|
14899
14721
|
} | {
|
@@ -15080,14 +14902,10 @@ declare const eden: {
|
|
15080
14902
|
hookType: import("@package/resources/enums").BOOST;
|
15081
14903
|
boostTokenChainId: number;
|
15082
14904
|
boostTokenAddress: string;
|
15083
|
-
boostTokenSymbol?: string | undefined;
|
15084
|
-
boostTokenDecimals?: number | undefined;
|
15085
14905
|
boostMultiplicator: number;
|
15086
14906
|
} | {
|
15087
14907
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15088
14908
|
boostTokenAddress: string;
|
15089
|
-
boostTokenDecimals?: number | undefined;
|
15090
|
-
boostTokenSymbol?: string | undefined;
|
15091
14909
|
boostTokenChainId: number;
|
15092
14910
|
boostTokenThreshold: number;
|
15093
14911
|
boostConfiguration: {
|
@@ -15110,8 +14928,6 @@ declare const eden: {
|
|
15110
14928
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15111
14929
|
eligibilityTokenChainId: number;
|
15112
14930
|
eligibilityTokenAddress: string;
|
15113
|
-
eligibilityTokenSymbol?: string | undefined;
|
15114
|
-
eligibilityTokenDecimals?: number | undefined;
|
15115
14931
|
eligibilityTokenThreshold: number;
|
15116
14932
|
eligibilityDuration: number;
|
15117
14933
|
} | {
|
@@ -15293,14 +15109,10 @@ declare const eden: {
|
|
15293
15109
|
hookType: import("@package/resources/enums").BOOST;
|
15294
15110
|
boostTokenChainId: number;
|
15295
15111
|
boostTokenAddress: string;
|
15296
|
-
boostTokenSymbol?: string | undefined;
|
15297
|
-
boostTokenDecimals?: number | undefined;
|
15298
15112
|
boostMultiplicator: number;
|
15299
15113
|
} | {
|
15300
15114
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15301
15115
|
boostTokenAddress: string;
|
15302
|
-
boostTokenDecimals?: number | undefined;
|
15303
|
-
boostTokenSymbol?: string | undefined;
|
15304
15116
|
boostTokenChainId: number;
|
15305
15117
|
boostTokenThreshold: number;
|
15306
15118
|
boostConfiguration: {
|
@@ -15323,8 +15135,6 @@ declare const eden: {
|
|
15323
15135
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15324
15136
|
eligibilityTokenChainId: number;
|
15325
15137
|
eligibilityTokenAddress: string;
|
15326
|
-
eligibilityTokenSymbol?: string | undefined;
|
15327
|
-
eligibilityTokenDecimals?: number | undefined;
|
15328
15138
|
eligibilityTokenThreshold: number;
|
15329
15139
|
eligibilityDuration: number;
|
15330
15140
|
} | {
|
@@ -15506,14 +15316,10 @@ declare const eden: {
|
|
15506
15316
|
hookType: import("@package/resources/enums").BOOST;
|
15507
15317
|
boostTokenChainId: number;
|
15508
15318
|
boostTokenAddress: string;
|
15509
|
-
boostTokenSymbol?: string | undefined;
|
15510
|
-
boostTokenDecimals?: number | undefined;
|
15511
15319
|
boostMultiplicator: number;
|
15512
15320
|
} | {
|
15513
15321
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15514
15322
|
boostTokenAddress: string;
|
15515
|
-
boostTokenDecimals?: number | undefined;
|
15516
|
-
boostTokenSymbol?: string | undefined;
|
15517
15323
|
boostTokenChainId: number;
|
15518
15324
|
boostTokenThreshold: number;
|
15519
15325
|
boostConfiguration: {
|
@@ -15536,8 +15342,6 @@ declare const eden: {
|
|
15536
15342
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15537
15343
|
eligibilityTokenChainId: number;
|
15538
15344
|
eligibilityTokenAddress: string;
|
15539
|
-
eligibilityTokenSymbol?: string | undefined;
|
15540
|
-
eligibilityTokenDecimals?: number | undefined;
|
15541
15345
|
eligibilityTokenThreshold: number;
|
15542
15346
|
eligibilityDuration: number;
|
15543
15347
|
} | {
|
@@ -15719,14 +15523,10 @@ declare const eden: {
|
|
15719
15523
|
hookType: import("@package/resources/enums").BOOST;
|
15720
15524
|
boostTokenChainId: number;
|
15721
15525
|
boostTokenAddress: string;
|
15722
|
-
boostTokenSymbol?: string | undefined;
|
15723
|
-
boostTokenDecimals?: number | undefined;
|
15724
15526
|
boostMultiplicator: number;
|
15725
15527
|
} | {
|
15726
15528
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15727
15529
|
boostTokenAddress: string;
|
15728
|
-
boostTokenDecimals?: number | undefined;
|
15729
|
-
boostTokenSymbol?: string | undefined;
|
15730
15530
|
boostTokenChainId: number;
|
15731
15531
|
boostTokenThreshold: number;
|
15732
15532
|
boostConfiguration: {
|
@@ -15749,8 +15549,6 @@ declare const eden: {
|
|
15749
15549
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15750
15550
|
eligibilityTokenChainId: number;
|
15751
15551
|
eligibilityTokenAddress: string;
|
15752
|
-
eligibilityTokenSymbol?: string | undefined;
|
15753
|
-
eligibilityTokenDecimals?: number | undefined;
|
15754
15552
|
eligibilityTokenThreshold: number;
|
15755
15553
|
eligibilityDuration: number;
|
15756
15554
|
} | {
|
@@ -15935,14 +15733,10 @@ declare const eden: {
|
|
15935
15733
|
hookType: import("@package/resources/enums").BOOST;
|
15936
15734
|
boostTokenChainId: number;
|
15937
15735
|
boostTokenAddress: string;
|
15938
|
-
boostTokenSymbol?: string | undefined;
|
15939
|
-
boostTokenDecimals?: number | undefined;
|
15940
15736
|
boostMultiplicator: number;
|
15941
15737
|
} | {
|
15942
15738
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
15943
15739
|
boostTokenAddress: string;
|
15944
|
-
boostTokenDecimals?: number | undefined;
|
15945
|
-
boostTokenSymbol?: string | undefined;
|
15946
15740
|
boostTokenChainId: number;
|
15947
15741
|
boostTokenThreshold: number;
|
15948
15742
|
boostConfiguration: {
|
@@ -15965,8 +15759,6 @@ declare const eden: {
|
|
15965
15759
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
15966
15760
|
eligibilityTokenChainId: number;
|
15967
15761
|
eligibilityTokenAddress: string;
|
15968
|
-
eligibilityTokenSymbol?: string | undefined;
|
15969
|
-
eligibilityTokenDecimals?: number | undefined;
|
15970
15762
|
eligibilityTokenThreshold: number;
|
15971
15763
|
eligibilityDuration: number;
|
15972
15764
|
} | {
|
@@ -16148,14 +15940,10 @@ declare const eden: {
|
|
16148
15940
|
hookType: import("@package/resources/enums").BOOST;
|
16149
15941
|
boostTokenChainId: number;
|
16150
15942
|
boostTokenAddress: string;
|
16151
|
-
boostTokenSymbol?: string | undefined;
|
16152
|
-
boostTokenDecimals?: number | undefined;
|
16153
15943
|
boostMultiplicator: number;
|
16154
15944
|
} | {
|
16155
15945
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
16156
15946
|
boostTokenAddress: string;
|
16157
|
-
boostTokenDecimals?: number | undefined;
|
16158
|
-
boostTokenSymbol?: string | undefined;
|
16159
15947
|
boostTokenChainId: number;
|
16160
15948
|
boostTokenThreshold: number;
|
16161
15949
|
boostConfiguration: {
|
@@ -16178,8 +15966,6 @@ declare const eden: {
|
|
16178
15966
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
16179
15967
|
eligibilityTokenChainId: number;
|
16180
15968
|
eligibilityTokenAddress: string;
|
16181
|
-
eligibilityTokenSymbol?: string | undefined;
|
16182
|
-
eligibilityTokenDecimals?: number | undefined;
|
16183
15969
|
eligibilityTokenThreshold: number;
|
16184
15970
|
eligibilityDuration: number;
|
16185
15971
|
} | {
|
@@ -16364,14 +16150,10 @@ declare const eden: {
|
|
16364
16150
|
hookType: import("@package/resources/enums").BOOST;
|
16365
16151
|
boostTokenChainId: number;
|
16366
16152
|
boostTokenAddress: string;
|
16367
|
-
boostTokenSymbol?: string | undefined;
|
16368
|
-
boostTokenDecimals?: number | undefined;
|
16369
16153
|
boostMultiplicator: number;
|
16370
16154
|
} | {
|
16371
16155
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
16372
16156
|
boostTokenAddress: string;
|
16373
|
-
boostTokenDecimals?: number | undefined;
|
16374
|
-
boostTokenSymbol?: string | undefined;
|
16375
16157
|
boostTokenChainId: number;
|
16376
16158
|
boostTokenThreshold: number;
|
16377
16159
|
boostConfiguration: {
|
@@ -16394,8 +16176,6 @@ declare const eden: {
|
|
16394
16176
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
16395
16177
|
eligibilityTokenChainId: number;
|
16396
16178
|
eligibilityTokenAddress: string;
|
16397
|
-
eligibilityTokenSymbol?: string | undefined;
|
16398
|
-
eligibilityTokenDecimals?: number | undefined;
|
16399
16179
|
eligibilityTokenThreshold: number;
|
16400
16180
|
eligibilityDuration: number;
|
16401
16181
|
} | {
|
@@ -16585,14 +16365,10 @@ declare const eden: {
|
|
16585
16365
|
hookType: import("@package/resources/enums").BOOST;
|
16586
16366
|
boostTokenChainId: number;
|
16587
16367
|
boostTokenAddress: string;
|
16588
|
-
boostTokenSymbol?: string | undefined;
|
16589
|
-
boostTokenDecimals?: number | undefined;
|
16590
16368
|
boostMultiplicator: number;
|
16591
16369
|
} | {
|
16592
16370
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
16593
16371
|
boostTokenAddress: string;
|
16594
|
-
boostTokenDecimals?: number | undefined;
|
16595
|
-
boostTokenSymbol?: string | undefined;
|
16596
16372
|
boostTokenChainId: number;
|
16597
16373
|
boostTokenThreshold: number;
|
16598
16374
|
boostConfiguration: {
|
@@ -16615,8 +16391,6 @@ declare const eden: {
|
|
16615
16391
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
16616
16392
|
eligibilityTokenChainId: number;
|
16617
16393
|
eligibilityTokenAddress: string;
|
16618
|
-
eligibilityTokenSymbol?: string | undefined;
|
16619
|
-
eligibilityTokenDecimals?: number | undefined;
|
16620
16394
|
eligibilityTokenThreshold: number;
|
16621
16395
|
eligibilityDuration: number;
|
16622
16396
|
} | {
|
@@ -16801,14 +16575,10 @@ declare const eden: {
|
|
16801
16575
|
hookType: import("@package/resources/enums").BOOST;
|
16802
16576
|
boostTokenChainId: number;
|
16803
16577
|
boostTokenAddress: string;
|
16804
|
-
boostTokenSymbol?: string | undefined;
|
16805
|
-
boostTokenDecimals?: number | undefined;
|
16806
16578
|
boostMultiplicator: number;
|
16807
16579
|
} | {
|
16808
16580
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
16809
16581
|
boostTokenAddress: string;
|
16810
|
-
boostTokenDecimals?: number | undefined;
|
16811
|
-
boostTokenSymbol?: string | undefined;
|
16812
16582
|
boostTokenChainId: number;
|
16813
16583
|
boostTokenThreshold: number;
|
16814
16584
|
boostConfiguration: {
|
@@ -16831,8 +16601,6 @@ declare const eden: {
|
|
16831
16601
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
16832
16602
|
eligibilityTokenChainId: number;
|
16833
16603
|
eligibilityTokenAddress: string;
|
16834
|
-
eligibilityTokenSymbol?: string | undefined;
|
16835
|
-
eligibilityTokenDecimals?: number | undefined;
|
16836
16604
|
eligibilityTokenThreshold: number;
|
16837
16605
|
eligibilityDuration: number;
|
16838
16606
|
} | {
|
@@ -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
|
} | {
|
@@ -17230,14 +16992,10 @@ declare const eden: {
|
|
17230
16992
|
hookType: import("@package/resources/enums").BOOST;
|
17231
16993
|
boostTokenChainId: number;
|
17232
16994
|
boostTokenAddress: string;
|
17233
|
-
boostTokenSymbol?: string | undefined;
|
17234
|
-
boostTokenDecimals?: number | undefined;
|
17235
16995
|
boostMultiplicator: number;
|
17236
16996
|
} | {
|
17237
16997
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17238
16998
|
boostTokenAddress: string;
|
17239
|
-
boostTokenDecimals?: number | undefined;
|
17240
|
-
boostTokenSymbol?: string | undefined;
|
17241
16999
|
boostTokenChainId: number;
|
17242
17000
|
boostTokenThreshold: number;
|
17243
17001
|
boostConfiguration: {
|
@@ -17260,8 +17018,6 @@ declare const eden: {
|
|
17260
17018
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17261
17019
|
eligibilityTokenChainId: number;
|
17262
17020
|
eligibilityTokenAddress: string;
|
17263
|
-
eligibilityTokenSymbol?: string | undefined;
|
17264
|
-
eligibilityTokenDecimals?: number | undefined;
|
17265
17021
|
eligibilityTokenThreshold: number;
|
17266
17022
|
eligibilityDuration: number;
|
17267
17023
|
} | {
|
@@ -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
|
} | {
|
@@ -17662,14 +17412,10 @@ declare const eden: {
|
|
17662
17412
|
hookType: import("@package/resources/enums").BOOST;
|
17663
17413
|
boostTokenChainId: number;
|
17664
17414
|
boostTokenAddress: string;
|
17665
|
-
boostTokenSymbol?: string | undefined;
|
17666
|
-
boostTokenDecimals?: number | undefined;
|
17667
17415
|
boostMultiplicator: number;
|
17668
17416
|
} | {
|
17669
17417
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17670
17418
|
boostTokenAddress: string;
|
17671
|
-
boostTokenDecimals?: number | undefined;
|
17672
|
-
boostTokenSymbol?: string | undefined;
|
17673
17419
|
boostTokenChainId: number;
|
17674
17420
|
boostTokenThreshold: number;
|
17675
17421
|
boostConfiguration: {
|
@@ -17692,8 +17438,6 @@ declare const eden: {
|
|
17692
17438
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17693
17439
|
eligibilityTokenChainId: number;
|
17694
17440
|
eligibilityTokenAddress: string;
|
17695
|
-
eligibilityTokenSymbol?: string | undefined;
|
17696
|
-
eligibilityTokenDecimals?: number | undefined;
|
17697
17441
|
eligibilityTokenThreshold: number;
|
17698
17442
|
eligibilityDuration: number;
|
17699
17443
|
} | {
|
@@ -17876,14 +17620,10 @@ declare const eden: {
|
|
17876
17620
|
hookType: import("@package/resources/enums").BOOST;
|
17877
17621
|
boostTokenChainId: number;
|
17878
17622
|
boostTokenAddress: string;
|
17879
|
-
boostTokenSymbol?: string | undefined;
|
17880
|
-
boostTokenDecimals?: number | undefined;
|
17881
17623
|
boostMultiplicator: number;
|
17882
17624
|
} | {
|
17883
17625
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
17884
17626
|
boostTokenAddress: string;
|
17885
|
-
boostTokenDecimals?: number | undefined;
|
17886
|
-
boostTokenSymbol?: string | undefined;
|
17887
17627
|
boostTokenChainId: number;
|
17888
17628
|
boostTokenThreshold: number;
|
17889
17629
|
boostConfiguration: {
|
@@ -17906,8 +17646,6 @@ declare const eden: {
|
|
17906
17646
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
17907
17647
|
eligibilityTokenChainId: number;
|
17908
17648
|
eligibilityTokenAddress: string;
|
17909
|
-
eligibilityTokenSymbol?: string | undefined;
|
17910
|
-
eligibilityTokenDecimals?: number | undefined;
|
17911
17649
|
eligibilityTokenThreshold: number;
|
17912
17650
|
eligibilityDuration: number;
|
17913
17651
|
} | {
|
@@ -18092,14 +17830,10 @@ declare const eden: {
|
|
18092
17830
|
hookType: import("@package/resources/enums").BOOST;
|
18093
17831
|
boostTokenChainId: number;
|
18094
17832
|
boostTokenAddress: string;
|
18095
|
-
boostTokenSymbol?: string | undefined;
|
18096
|
-
boostTokenDecimals?: number | undefined;
|
18097
17833
|
boostMultiplicator: number;
|
18098
17834
|
} | {
|
18099
17835
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18100
17836
|
boostTokenAddress: string;
|
18101
|
-
boostTokenDecimals?: number | undefined;
|
18102
|
-
boostTokenSymbol?: string | undefined;
|
18103
17837
|
boostTokenChainId: number;
|
18104
17838
|
boostTokenThreshold: number;
|
18105
17839
|
boostConfiguration: {
|
@@ -18122,8 +17856,6 @@ declare const eden: {
|
|
18122
17856
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18123
17857
|
eligibilityTokenChainId: number;
|
18124
17858
|
eligibilityTokenAddress: string;
|
18125
|
-
eligibilityTokenSymbol?: string | undefined;
|
18126
|
-
eligibilityTokenDecimals?: number | undefined;
|
18127
17859
|
eligibilityTokenThreshold: number;
|
18128
17860
|
eligibilityDuration: number;
|
18129
17861
|
} | {
|
@@ -18305,14 +18037,10 @@ declare const eden: {
|
|
18305
18037
|
hookType: import("@package/resources/enums").BOOST;
|
18306
18038
|
boostTokenChainId: number;
|
18307
18039
|
boostTokenAddress: string;
|
18308
|
-
boostTokenSymbol?: string | undefined;
|
18309
|
-
boostTokenDecimals?: number | undefined;
|
18310
18040
|
boostMultiplicator: number;
|
18311
18041
|
} | {
|
18312
18042
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18313
18043
|
boostTokenAddress: string;
|
18314
|
-
boostTokenDecimals?: number | undefined;
|
18315
|
-
boostTokenSymbol?: string | undefined;
|
18316
18044
|
boostTokenChainId: number;
|
18317
18045
|
boostTokenThreshold: number;
|
18318
18046
|
boostConfiguration: {
|
@@ -18335,8 +18063,6 @@ declare const eden: {
|
|
18335
18063
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18336
18064
|
eligibilityTokenChainId: number;
|
18337
18065
|
eligibilityTokenAddress: string;
|
18338
|
-
eligibilityTokenSymbol?: string | undefined;
|
18339
|
-
eligibilityTokenDecimals?: number | undefined;
|
18340
18066
|
eligibilityTokenThreshold: number;
|
18341
18067
|
eligibilityDuration: number;
|
18342
18068
|
} | {
|
@@ -18521,14 +18247,10 @@ declare const eden: {
|
|
18521
18247
|
hookType: import("@package/resources/enums").BOOST;
|
18522
18248
|
boostTokenChainId: number;
|
18523
18249
|
boostTokenAddress: string;
|
18524
|
-
boostTokenSymbol?: string | undefined;
|
18525
|
-
boostTokenDecimals?: number | undefined;
|
18526
18250
|
boostMultiplicator: number;
|
18527
18251
|
} | {
|
18528
18252
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18529
18253
|
boostTokenAddress: string;
|
18530
|
-
boostTokenDecimals?: number | undefined;
|
18531
|
-
boostTokenSymbol?: string | undefined;
|
18532
18254
|
boostTokenChainId: number;
|
18533
18255
|
boostTokenThreshold: number;
|
18534
18256
|
boostConfiguration: {
|
@@ -18551,8 +18273,6 @@ declare const eden: {
|
|
18551
18273
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18552
18274
|
eligibilityTokenChainId: number;
|
18553
18275
|
eligibilityTokenAddress: string;
|
18554
|
-
eligibilityTokenSymbol?: string | undefined;
|
18555
|
-
eligibilityTokenDecimals?: number | undefined;
|
18556
18276
|
eligibilityTokenThreshold: number;
|
18557
18277
|
eligibilityDuration: number;
|
18558
18278
|
} | {
|
@@ -18734,14 +18454,10 @@ declare const eden: {
|
|
18734
18454
|
hookType: import("@package/resources/enums").BOOST;
|
18735
18455
|
boostTokenChainId: number;
|
18736
18456
|
boostTokenAddress: string;
|
18737
|
-
boostTokenSymbol?: string | undefined;
|
18738
|
-
boostTokenDecimals?: number | undefined;
|
18739
18457
|
boostMultiplicator: number;
|
18740
18458
|
} | {
|
18741
18459
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18742
18460
|
boostTokenAddress: string;
|
18743
|
-
boostTokenDecimals?: number | undefined;
|
18744
|
-
boostTokenSymbol?: string | undefined;
|
18745
18461
|
boostTokenChainId: number;
|
18746
18462
|
boostTokenThreshold: number;
|
18747
18463
|
boostConfiguration: {
|
@@ -18764,8 +18480,6 @@ declare const eden: {
|
|
18764
18480
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18765
18481
|
eligibilityTokenChainId: number;
|
18766
18482
|
eligibilityTokenAddress: string;
|
18767
|
-
eligibilityTokenSymbol?: string | undefined;
|
18768
|
-
eligibilityTokenDecimals?: number | undefined;
|
18769
18483
|
eligibilityTokenThreshold: number;
|
18770
18484
|
eligibilityDuration: number;
|
18771
18485
|
} | {
|
@@ -18947,14 +18661,10 @@ declare const eden: {
|
|
18947
18661
|
hookType: import("@package/resources/enums").BOOST;
|
18948
18662
|
boostTokenChainId: number;
|
18949
18663
|
boostTokenAddress: string;
|
18950
|
-
boostTokenSymbol?: string | undefined;
|
18951
|
-
boostTokenDecimals?: number | undefined;
|
18952
18664
|
boostMultiplicator: number;
|
18953
18665
|
} | {
|
18954
18666
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
18955
18667
|
boostTokenAddress: string;
|
18956
|
-
boostTokenDecimals?: number | undefined;
|
18957
|
-
boostTokenSymbol?: string | undefined;
|
18958
18668
|
boostTokenChainId: number;
|
18959
18669
|
boostTokenThreshold: number;
|
18960
18670
|
boostConfiguration: {
|
@@ -18977,8 +18687,6 @@ declare const eden: {
|
|
18977
18687
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
18978
18688
|
eligibilityTokenChainId: number;
|
18979
18689
|
eligibilityTokenAddress: string;
|
18980
|
-
eligibilityTokenSymbol?: string | undefined;
|
18981
|
-
eligibilityTokenDecimals?: number | undefined;
|
18982
18690
|
eligibilityTokenThreshold: number;
|
18983
18691
|
eligibilityDuration: number;
|
18984
18692
|
} | {
|
@@ -19163,14 +18871,10 @@ declare const eden: {
|
|
19163
18871
|
hookType: import("@package/resources/enums").BOOST;
|
19164
18872
|
boostTokenChainId: number;
|
19165
18873
|
boostTokenAddress: string;
|
19166
|
-
boostTokenSymbol?: string | undefined;
|
19167
|
-
boostTokenDecimals?: number | undefined;
|
19168
18874
|
boostMultiplicator: number;
|
19169
18875
|
} | {
|
19170
18876
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
19171
18877
|
boostTokenAddress: string;
|
19172
|
-
boostTokenDecimals?: number | undefined;
|
19173
|
-
boostTokenSymbol?: string | undefined;
|
19174
18878
|
boostTokenChainId: number;
|
19175
18879
|
boostTokenThreshold: number;
|
19176
18880
|
boostConfiguration: {
|
@@ -19193,8 +18897,6 @@ declare const eden: {
|
|
19193
18897
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19194
18898
|
eligibilityTokenChainId: number;
|
19195
18899
|
eligibilityTokenAddress: string;
|
19196
|
-
eligibilityTokenSymbol?: string | undefined;
|
19197
|
-
eligibilityTokenDecimals?: number | undefined;
|
19198
18900
|
eligibilityTokenThreshold: number;
|
19199
18901
|
eligibilityDuration: number;
|
19200
18902
|
} | {
|
@@ -19376,14 +19078,10 @@ declare const eden: {
|
|
19376
19078
|
hookType: import("@package/resources/enums").BOOST;
|
19377
19079
|
boostTokenChainId: number;
|
19378
19080
|
boostTokenAddress: string;
|
19379
|
-
boostTokenSymbol?: string | undefined;
|
19380
|
-
boostTokenDecimals?: number | undefined;
|
19381
19081
|
boostMultiplicator: number;
|
19382
19082
|
} | {
|
19383
19083
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
19384
19084
|
boostTokenAddress: string;
|
19385
|
-
boostTokenDecimals?: number | undefined;
|
19386
|
-
boostTokenSymbol?: string | undefined;
|
19387
19085
|
boostTokenChainId: number;
|
19388
19086
|
boostTokenThreshold: number;
|
19389
19087
|
boostConfiguration: {
|
@@ -19406,8 +19104,6 @@ declare const eden: {
|
|
19406
19104
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19407
19105
|
eligibilityTokenChainId: number;
|
19408
19106
|
eligibilityTokenAddress: string;
|
19409
|
-
eligibilityTokenSymbol?: string | undefined;
|
19410
|
-
eligibilityTokenDecimals?: number | undefined;
|
19411
19107
|
eligibilityTokenThreshold: number;
|
19412
19108
|
eligibilityDuration: number;
|
19413
19109
|
} | {
|
@@ -19589,14 +19285,10 @@ declare const eden: {
|
|
19589
19285
|
hookType: import("@package/resources/enums").BOOST;
|
19590
19286
|
boostTokenChainId: number;
|
19591
19287
|
boostTokenAddress: string;
|
19592
|
-
boostTokenSymbol?: string | undefined;
|
19593
|
-
boostTokenDecimals?: number | undefined;
|
19594
19288
|
boostMultiplicator: number;
|
19595
19289
|
} | {
|
19596
19290
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
19597
19291
|
boostTokenAddress: string;
|
19598
|
-
boostTokenDecimals?: number | undefined;
|
19599
|
-
boostTokenSymbol?: string | undefined;
|
19600
19292
|
boostTokenChainId: number;
|
19601
19293
|
boostTokenThreshold: number;
|
19602
19294
|
boostConfiguration: {
|
@@ -19619,8 +19311,6 @@ declare const eden: {
|
|
19619
19311
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19620
19312
|
eligibilityTokenChainId: number;
|
19621
19313
|
eligibilityTokenAddress: string;
|
19622
|
-
eligibilityTokenSymbol?: string | undefined;
|
19623
|
-
eligibilityTokenDecimals?: number | undefined;
|
19624
19314
|
eligibilityTokenThreshold: number;
|
19625
19315
|
eligibilityDuration: number;
|
19626
19316
|
} | {
|
@@ -19805,14 +19495,10 @@ declare const eden: {
|
|
19805
19495
|
hookType: import("@package/resources/enums").BOOST;
|
19806
19496
|
boostTokenChainId: number;
|
19807
19497
|
boostTokenAddress: string;
|
19808
|
-
boostTokenSymbol?: string | undefined;
|
19809
|
-
boostTokenDecimals?: number | undefined;
|
19810
19498
|
boostMultiplicator: number;
|
19811
19499
|
} | {
|
19812
19500
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
19813
19501
|
boostTokenAddress: string;
|
19814
|
-
boostTokenDecimals?: number | undefined;
|
19815
|
-
boostTokenSymbol?: string | undefined;
|
19816
19502
|
boostTokenChainId: number;
|
19817
19503
|
boostTokenThreshold: number;
|
19818
19504
|
boostConfiguration: {
|
@@ -19835,8 +19521,6 @@ declare const eden: {
|
|
19835
19521
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
19836
19522
|
eligibilityTokenChainId: number;
|
19837
19523
|
eligibilityTokenAddress: string;
|
19838
|
-
eligibilityTokenSymbol?: string | undefined;
|
19839
|
-
eligibilityTokenDecimals?: number | undefined;
|
19840
19524
|
eligibilityTokenThreshold: number;
|
19841
19525
|
eligibilityDuration: number;
|
19842
19526
|
} | {
|
@@ -20018,14 +19702,10 @@ declare const eden: {
|
|
20018
19702
|
hookType: import("@package/resources/enums").BOOST;
|
20019
19703
|
boostTokenChainId: number;
|
20020
19704
|
boostTokenAddress: string;
|
20021
|
-
boostTokenSymbol?: string | undefined;
|
20022
|
-
boostTokenDecimals?: number | undefined;
|
20023
19705
|
boostMultiplicator: number;
|
20024
19706
|
} | {
|
20025
19707
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20026
19708
|
boostTokenAddress: string;
|
20027
|
-
boostTokenDecimals?: number | undefined;
|
20028
|
-
boostTokenSymbol?: string | undefined;
|
20029
19709
|
boostTokenChainId: number;
|
20030
19710
|
boostTokenThreshold: number;
|
20031
19711
|
boostConfiguration: {
|
@@ -20048,8 +19728,6 @@ declare const eden: {
|
|
20048
19728
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20049
19729
|
eligibilityTokenChainId: number;
|
20050
19730
|
eligibilityTokenAddress: string;
|
20051
|
-
eligibilityTokenSymbol?: string | undefined;
|
20052
|
-
eligibilityTokenDecimals?: number | undefined;
|
20053
19731
|
eligibilityTokenThreshold: number;
|
20054
19732
|
eligibilityDuration: number;
|
20055
19733
|
} | {
|
@@ -20231,14 +19909,10 @@ declare const eden: {
|
|
20231
19909
|
hookType: import("@package/resources/enums").BOOST;
|
20232
19910
|
boostTokenChainId: number;
|
20233
19911
|
boostTokenAddress: string;
|
20234
|
-
boostTokenSymbol?: string | undefined;
|
20235
|
-
boostTokenDecimals?: number | undefined;
|
20236
19912
|
boostMultiplicator: number;
|
20237
19913
|
} | {
|
20238
19914
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20239
19915
|
boostTokenAddress: string;
|
20240
|
-
boostTokenDecimals?: number | undefined;
|
20241
|
-
boostTokenSymbol?: string | undefined;
|
20242
19916
|
boostTokenChainId: number;
|
20243
19917
|
boostTokenThreshold: number;
|
20244
19918
|
boostConfiguration: {
|
@@ -20261,8 +19935,6 @@ declare const eden: {
|
|
20261
19935
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20262
19936
|
eligibilityTokenChainId: number;
|
20263
19937
|
eligibilityTokenAddress: string;
|
20264
|
-
eligibilityTokenSymbol?: string | undefined;
|
20265
|
-
eligibilityTokenDecimals?: number | undefined;
|
20266
19938
|
eligibilityTokenThreshold: number;
|
20267
19939
|
eligibilityDuration: number;
|
20268
19940
|
} | {
|
@@ -20445,14 +20117,10 @@ declare const eden: {
|
|
20445
20117
|
hookType: import("@package/resources/enums").BOOST;
|
20446
20118
|
boostTokenChainId: number;
|
20447
20119
|
boostTokenAddress: string;
|
20448
|
-
boostTokenSymbol?: string | undefined;
|
20449
|
-
boostTokenDecimals?: number | undefined;
|
20450
20120
|
boostMultiplicator: number;
|
20451
20121
|
} | {
|
20452
20122
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20453
20123
|
boostTokenAddress: string;
|
20454
|
-
boostTokenDecimals?: number | undefined;
|
20455
|
-
boostTokenSymbol?: string | undefined;
|
20456
20124
|
boostTokenChainId: number;
|
20457
20125
|
boostTokenThreshold: number;
|
20458
20126
|
boostConfiguration: {
|
@@ -20475,8 +20143,6 @@ declare const eden: {
|
|
20475
20143
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20476
20144
|
eligibilityTokenChainId: number;
|
20477
20145
|
eligibilityTokenAddress: string;
|
20478
|
-
eligibilityTokenSymbol?: string | undefined;
|
20479
|
-
eligibilityTokenDecimals?: number | undefined;
|
20480
20146
|
eligibilityTokenThreshold: number;
|
20481
20147
|
eligibilityDuration: number;
|
20482
20148
|
} | {
|
@@ -20659,14 +20325,10 @@ declare const eden: {
|
|
20659
20325
|
hookType: import("@package/resources/enums").BOOST;
|
20660
20326
|
boostTokenChainId: number;
|
20661
20327
|
boostTokenAddress: string;
|
20662
|
-
boostTokenSymbol?: string | undefined;
|
20663
|
-
boostTokenDecimals?: number | undefined;
|
20664
20328
|
boostMultiplicator: number;
|
20665
20329
|
} | {
|
20666
20330
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20667
20331
|
boostTokenAddress: string;
|
20668
|
-
boostTokenDecimals?: number | undefined;
|
20669
|
-
boostTokenSymbol?: string | undefined;
|
20670
20332
|
boostTokenChainId: number;
|
20671
20333
|
boostTokenThreshold: number;
|
20672
20334
|
boostConfiguration: {
|
@@ -20689,8 +20351,6 @@ declare const eden: {
|
|
20689
20351
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20690
20352
|
eligibilityTokenChainId: number;
|
20691
20353
|
eligibilityTokenAddress: string;
|
20692
|
-
eligibilityTokenSymbol?: string | undefined;
|
20693
|
-
eligibilityTokenDecimals?: number | undefined;
|
20694
20354
|
eligibilityTokenThreshold: number;
|
20695
20355
|
eligibilityDuration: number;
|
20696
20356
|
} | {
|
@@ -20873,14 +20533,10 @@ declare const eden: {
|
|
20873
20533
|
hookType: import("@package/resources/enums").BOOST;
|
20874
20534
|
boostTokenChainId: number;
|
20875
20535
|
boostTokenAddress: string;
|
20876
|
-
boostTokenSymbol?: string | undefined;
|
20877
|
-
boostTokenDecimals?: number | undefined;
|
20878
20536
|
boostMultiplicator: number;
|
20879
20537
|
} | {
|
20880
20538
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
20881
20539
|
boostTokenAddress: string;
|
20882
|
-
boostTokenDecimals?: number | undefined;
|
20883
|
-
boostTokenSymbol?: string | undefined;
|
20884
20540
|
boostTokenChainId: number;
|
20885
20541
|
boostTokenThreshold: number;
|
20886
20542
|
boostConfiguration: {
|
@@ -20903,8 +20559,6 @@ declare const eden: {
|
|
20903
20559
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
20904
20560
|
eligibilityTokenChainId: number;
|
20905
20561
|
eligibilityTokenAddress: string;
|
20906
|
-
eligibilityTokenSymbol?: string | undefined;
|
20907
|
-
eligibilityTokenDecimals?: number | undefined;
|
20908
20562
|
eligibilityTokenThreshold: number;
|
20909
20563
|
eligibilityDuration: number;
|
20910
20564
|
} | {
|
@@ -21086,14 +20740,10 @@ declare const eden: {
|
|
21086
20740
|
hookType: import("@package/resources/enums").BOOST;
|
21087
20741
|
boostTokenChainId: number;
|
21088
20742
|
boostTokenAddress: string;
|
21089
|
-
boostTokenSymbol?: string | undefined;
|
21090
|
-
boostTokenDecimals?: number | undefined;
|
21091
20743
|
boostMultiplicator: number;
|
21092
20744
|
} | {
|
21093
20745
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21094
20746
|
boostTokenAddress: string;
|
21095
|
-
boostTokenDecimals?: number | undefined;
|
21096
|
-
boostTokenSymbol?: string | undefined;
|
21097
20747
|
boostTokenChainId: number;
|
21098
20748
|
boostTokenThreshold: number;
|
21099
20749
|
boostConfiguration: {
|
@@ -21116,8 +20766,6 @@ declare const eden: {
|
|
21116
20766
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21117
20767
|
eligibilityTokenChainId: number;
|
21118
20768
|
eligibilityTokenAddress: string;
|
21119
|
-
eligibilityTokenSymbol?: string | undefined;
|
21120
|
-
eligibilityTokenDecimals?: number | undefined;
|
21121
20769
|
eligibilityTokenThreshold: number;
|
21122
20770
|
eligibilityDuration: number;
|
21123
20771
|
} | {
|
@@ -21301,14 +20949,10 @@ declare const eden: {
|
|
21301
20949
|
hookType: import("@package/resources/enums").BOOST;
|
21302
20950
|
boostTokenChainId: number;
|
21303
20951
|
boostTokenAddress: string;
|
21304
|
-
boostTokenSymbol?: string | undefined;
|
21305
|
-
boostTokenDecimals?: number | undefined;
|
21306
20952
|
boostMultiplicator: number;
|
21307
20953
|
} | {
|
21308
20954
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21309
20955
|
boostTokenAddress: string;
|
21310
|
-
boostTokenDecimals?: number | undefined;
|
21311
|
-
boostTokenSymbol?: string | undefined;
|
21312
20956
|
boostTokenChainId: number;
|
21313
20957
|
boostTokenThreshold: number;
|
21314
20958
|
boostConfiguration: {
|
@@ -21331,8 +20975,6 @@ declare const eden: {
|
|
21331
20975
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21332
20976
|
eligibilityTokenChainId: number;
|
21333
20977
|
eligibilityTokenAddress: string;
|
21334
|
-
eligibilityTokenSymbol?: string | undefined;
|
21335
|
-
eligibilityTokenDecimals?: number | undefined;
|
21336
20978
|
eligibilityTokenThreshold: number;
|
21337
20979
|
eligibilityDuration: number;
|
21338
20980
|
} | {
|
@@ -21514,14 +21156,10 @@ declare const eden: {
|
|
21514
21156
|
hookType: import("@package/resources/enums").BOOST;
|
21515
21157
|
boostTokenChainId: number;
|
21516
21158
|
boostTokenAddress: string;
|
21517
|
-
boostTokenSymbol?: string | undefined;
|
21518
|
-
boostTokenDecimals?: number | undefined;
|
21519
21159
|
boostMultiplicator: number;
|
21520
21160
|
} | {
|
21521
21161
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21522
21162
|
boostTokenAddress: string;
|
21523
|
-
boostTokenDecimals?: number | undefined;
|
21524
|
-
boostTokenSymbol?: string | undefined;
|
21525
21163
|
boostTokenChainId: number;
|
21526
21164
|
boostTokenThreshold: number;
|
21527
21165
|
boostConfiguration: {
|
@@ -21544,8 +21182,6 @@ declare const eden: {
|
|
21544
21182
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21545
21183
|
eligibilityTokenChainId: number;
|
21546
21184
|
eligibilityTokenAddress: string;
|
21547
|
-
eligibilityTokenSymbol?: string | undefined;
|
21548
|
-
eligibilityTokenDecimals?: number | undefined;
|
21549
21185
|
eligibilityTokenThreshold: number;
|
21550
21186
|
eligibilityDuration: number;
|
21551
21187
|
} | {
|
@@ -21727,14 +21363,10 @@ declare const eden: {
|
|
21727
21363
|
hookType: import("@package/resources/enums").BOOST;
|
21728
21364
|
boostTokenChainId: number;
|
21729
21365
|
boostTokenAddress: string;
|
21730
|
-
boostTokenSymbol?: string | undefined;
|
21731
|
-
boostTokenDecimals?: number | undefined;
|
21732
21366
|
boostMultiplicator: number;
|
21733
21367
|
} | {
|
21734
21368
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21735
21369
|
boostTokenAddress: string;
|
21736
|
-
boostTokenDecimals?: number | undefined;
|
21737
|
-
boostTokenSymbol?: string | undefined;
|
21738
21370
|
boostTokenChainId: number;
|
21739
21371
|
boostTokenThreshold: number;
|
21740
21372
|
boostConfiguration: {
|
@@ -21757,8 +21389,6 @@ declare const eden: {
|
|
21757
21389
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21758
21390
|
eligibilityTokenChainId: number;
|
21759
21391
|
eligibilityTokenAddress: string;
|
21760
|
-
eligibilityTokenSymbol?: string | undefined;
|
21761
|
-
eligibilityTokenDecimals?: number | undefined;
|
21762
21392
|
eligibilityTokenThreshold: number;
|
21763
21393
|
eligibilityDuration: number;
|
21764
21394
|
} | {
|
@@ -21940,14 +21570,10 @@ declare const eden: {
|
|
21940
21570
|
hookType: import("@package/resources/enums").BOOST;
|
21941
21571
|
boostTokenChainId: number;
|
21942
21572
|
boostTokenAddress: string;
|
21943
|
-
boostTokenSymbol?: string | undefined;
|
21944
|
-
boostTokenDecimals?: number | undefined;
|
21945
21573
|
boostMultiplicator: number;
|
21946
21574
|
} | {
|
21947
21575
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
21948
21576
|
boostTokenAddress: string;
|
21949
|
-
boostTokenDecimals?: number | undefined;
|
21950
|
-
boostTokenSymbol?: string | undefined;
|
21951
21577
|
boostTokenChainId: number;
|
21952
21578
|
boostTokenThreshold: number;
|
21953
21579
|
boostConfiguration: {
|
@@ -21970,8 +21596,6 @@ declare const eden: {
|
|
21970
21596
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
21971
21597
|
eligibilityTokenChainId: number;
|
21972
21598
|
eligibilityTokenAddress: string;
|
21973
|
-
eligibilityTokenSymbol?: string | undefined;
|
21974
|
-
eligibilityTokenDecimals?: number | undefined;
|
21975
21599
|
eligibilityTokenThreshold: number;
|
21976
21600
|
eligibilityDuration: number;
|
21977
21601
|
} | {
|
@@ -22153,14 +21777,10 @@ declare const eden: {
|
|
22153
21777
|
hookType: import("@package/resources/enums").BOOST;
|
22154
21778
|
boostTokenChainId: number;
|
22155
21779
|
boostTokenAddress: string;
|
22156
|
-
boostTokenSymbol?: string | undefined;
|
22157
|
-
boostTokenDecimals?: number | undefined;
|
22158
21780
|
boostMultiplicator: number;
|
22159
21781
|
} | {
|
22160
21782
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
22161
21783
|
boostTokenAddress: string;
|
22162
|
-
boostTokenDecimals?: number | undefined;
|
22163
|
-
boostTokenSymbol?: string | undefined;
|
22164
21784
|
boostTokenChainId: number;
|
22165
21785
|
boostTokenThreshold: number;
|
22166
21786
|
boostConfiguration: {
|
@@ -22183,8 +21803,6 @@ declare const eden: {
|
|
22183
21803
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22184
21804
|
eligibilityTokenChainId: number;
|
22185
21805
|
eligibilityTokenAddress: string;
|
22186
|
-
eligibilityTokenSymbol?: string | undefined;
|
22187
|
-
eligibilityTokenDecimals?: number | undefined;
|
22188
21806
|
eligibilityTokenThreshold: number;
|
22189
21807
|
eligibilityDuration: number;
|
22190
21808
|
} | {
|
@@ -22366,14 +21984,10 @@ declare const eden: {
|
|
22366
21984
|
hookType: import("@package/resources/enums").BOOST;
|
22367
21985
|
boostTokenChainId: number;
|
22368
21986
|
boostTokenAddress: string;
|
22369
|
-
boostTokenSymbol?: string | undefined;
|
22370
|
-
boostTokenDecimals?: number | undefined;
|
22371
21987
|
boostMultiplicator: number;
|
22372
21988
|
} | {
|
22373
21989
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
22374
21990
|
boostTokenAddress: string;
|
22375
|
-
boostTokenDecimals?: number | undefined;
|
22376
|
-
boostTokenSymbol?: string | undefined;
|
22377
21991
|
boostTokenChainId: number;
|
22378
21992
|
boostTokenThreshold: number;
|
22379
21993
|
boostConfiguration: {
|
@@ -22396,8 +22010,6 @@ declare const eden: {
|
|
22396
22010
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22397
22011
|
eligibilityTokenChainId: number;
|
22398
22012
|
eligibilityTokenAddress: string;
|
22399
|
-
eligibilityTokenSymbol?: string | undefined;
|
22400
|
-
eligibilityTokenDecimals?: number | undefined;
|
22401
22013
|
eligibilityTokenThreshold: number;
|
22402
22014
|
eligibilityDuration: number;
|
22403
22015
|
} | {
|
@@ -22579,14 +22191,10 @@ declare const eden: {
|
|
22579
22191
|
hookType: import("@package/resources/enums").BOOST;
|
22580
22192
|
boostTokenChainId: number;
|
22581
22193
|
boostTokenAddress: string;
|
22582
|
-
boostTokenSymbol?: string | undefined;
|
22583
|
-
boostTokenDecimals?: number | undefined;
|
22584
22194
|
boostMultiplicator: number;
|
22585
22195
|
} | {
|
22586
22196
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
22587
22197
|
boostTokenAddress: string;
|
22588
|
-
boostTokenDecimals?: number | undefined;
|
22589
|
-
boostTokenSymbol?: string | undefined;
|
22590
22198
|
boostTokenChainId: number;
|
22591
22199
|
boostTokenThreshold: number;
|
22592
22200
|
boostConfiguration: {
|
@@ -22609,8 +22217,6 @@ declare const eden: {
|
|
22609
22217
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22610
22218
|
eligibilityTokenChainId: number;
|
22611
22219
|
eligibilityTokenAddress: string;
|
22612
|
-
eligibilityTokenSymbol?: string | undefined;
|
22613
|
-
eligibilityTokenDecimals?: number | undefined;
|
22614
22220
|
eligibilityTokenThreshold: number;
|
22615
22221
|
eligibilityDuration: number;
|
22616
22222
|
} | {
|
@@ -22792,14 +22398,10 @@ declare const eden: {
|
|
22792
22398
|
hookType: import("@package/resources/enums").BOOST;
|
22793
22399
|
boostTokenChainId: number;
|
22794
22400
|
boostTokenAddress: string;
|
22795
|
-
boostTokenSymbol?: string | undefined;
|
22796
|
-
boostTokenDecimals?: number | undefined;
|
22797
22401
|
boostMultiplicator: number;
|
22798
22402
|
} | {
|
22799
22403
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
22800
22404
|
boostTokenAddress: string;
|
22801
|
-
boostTokenDecimals?: number | undefined;
|
22802
|
-
boostTokenSymbol?: string | undefined;
|
22803
22405
|
boostTokenChainId: number;
|
22804
22406
|
boostTokenThreshold: number;
|
22805
22407
|
boostConfiguration: {
|
@@ -22822,8 +22424,6 @@ declare const eden: {
|
|
22822
22424
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
22823
22425
|
eligibilityTokenChainId: number;
|
22824
22426
|
eligibilityTokenAddress: string;
|
22825
|
-
eligibilityTokenSymbol?: string | undefined;
|
22826
|
-
eligibilityTokenDecimals?: number | undefined;
|
22827
22427
|
eligibilityTokenThreshold: number;
|
22828
22428
|
eligibilityDuration: number;
|
22829
22429
|
} | {
|
@@ -23005,14 +22605,10 @@ declare const eden: {
|
|
23005
22605
|
hookType: import("@package/resources/enums").BOOST;
|
23006
22606
|
boostTokenChainId: number;
|
23007
22607
|
boostTokenAddress: string;
|
23008
|
-
boostTokenSymbol?: string | undefined;
|
23009
|
-
boostTokenDecimals?: number | undefined;
|
23010
22608
|
boostMultiplicator: number;
|
23011
22609
|
} | {
|
23012
22610
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23013
22611
|
boostTokenAddress: string;
|
23014
|
-
boostTokenDecimals?: number | undefined;
|
23015
|
-
boostTokenSymbol?: string | undefined;
|
23016
22612
|
boostTokenChainId: number;
|
23017
22613
|
boostTokenThreshold: number;
|
23018
22614
|
boostConfiguration: {
|
@@ -23035,8 +22631,6 @@ declare const eden: {
|
|
23035
22631
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23036
22632
|
eligibilityTokenChainId: number;
|
23037
22633
|
eligibilityTokenAddress: string;
|
23038
|
-
eligibilityTokenSymbol?: string | undefined;
|
23039
|
-
eligibilityTokenDecimals?: number | undefined;
|
23040
22634
|
eligibilityTokenThreshold: number;
|
23041
22635
|
eligibilityDuration: number;
|
23042
22636
|
} | {
|
@@ -23226,14 +22820,10 @@ declare const eden: {
|
|
23226
22820
|
hookType: import("@package/resources/enums").BOOST;
|
23227
22821
|
boostTokenChainId: number;
|
23228
22822
|
boostTokenAddress: string;
|
23229
|
-
boostTokenSymbol?: string | undefined;
|
23230
|
-
boostTokenDecimals?: number | undefined;
|
23231
22823
|
boostMultiplicator: number;
|
23232
22824
|
} | {
|
23233
22825
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23234
22826
|
boostTokenAddress: string;
|
23235
|
-
boostTokenDecimals?: number | undefined;
|
23236
|
-
boostTokenSymbol?: string | undefined;
|
23237
22827
|
boostTokenChainId: number;
|
23238
22828
|
boostTokenThreshold: number;
|
23239
22829
|
boostConfiguration: {
|
@@ -23256,8 +22846,6 @@ declare const eden: {
|
|
23256
22846
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23257
22847
|
eligibilityTokenChainId: number;
|
23258
22848
|
eligibilityTokenAddress: string;
|
23259
|
-
eligibilityTokenSymbol?: string | undefined;
|
23260
|
-
eligibilityTokenDecimals?: number | undefined;
|
23261
22849
|
eligibilityTokenThreshold: number;
|
23262
22850
|
eligibilityDuration: number;
|
23263
22851
|
} | {
|
@@ -23447,14 +23035,10 @@ declare const eden: {
|
|
23447
23035
|
hookType: import("@package/resources/enums").BOOST;
|
23448
23036
|
boostTokenChainId: number;
|
23449
23037
|
boostTokenAddress: string;
|
23450
|
-
boostTokenSymbol?: string | undefined;
|
23451
|
-
boostTokenDecimals?: number | undefined;
|
23452
23038
|
boostMultiplicator: number;
|
23453
23039
|
} | {
|
23454
23040
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23455
23041
|
boostTokenAddress: string;
|
23456
|
-
boostTokenDecimals?: number | undefined;
|
23457
|
-
boostTokenSymbol?: string | undefined;
|
23458
23042
|
boostTokenChainId: number;
|
23459
23043
|
boostTokenThreshold: number;
|
23460
23044
|
boostConfiguration: {
|
@@ -23477,8 +23061,6 @@ declare const eden: {
|
|
23477
23061
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23478
23062
|
eligibilityTokenChainId: number;
|
23479
23063
|
eligibilityTokenAddress: string;
|
23480
|
-
eligibilityTokenSymbol?: string | undefined;
|
23481
|
-
eligibilityTokenDecimals?: number | undefined;
|
23482
23064
|
eligibilityTokenThreshold: number;
|
23483
23065
|
eligibilityDuration: number;
|
23484
23066
|
} | {
|
@@ -23659,14 +23241,10 @@ declare const eden: {
|
|
23659
23241
|
hookType: import("@package/resources/enums").BOOST;
|
23660
23242
|
boostTokenChainId: number;
|
23661
23243
|
boostTokenAddress: string;
|
23662
|
-
boostTokenSymbol?: string | undefined;
|
23663
|
-
boostTokenDecimals?: number | undefined;
|
23664
23244
|
boostMultiplicator: number;
|
23665
23245
|
} | {
|
23666
23246
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23667
23247
|
boostTokenAddress: string;
|
23668
|
-
boostTokenDecimals?: number | undefined;
|
23669
|
-
boostTokenSymbol?: string | undefined;
|
23670
23248
|
boostTokenChainId: number;
|
23671
23249
|
boostTokenThreshold: number;
|
23672
23250
|
boostConfiguration: {
|
@@ -23689,8 +23267,6 @@ declare const eden: {
|
|
23689
23267
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23690
23268
|
eligibilityTokenChainId: number;
|
23691
23269
|
eligibilityTokenAddress: string;
|
23692
|
-
eligibilityTokenSymbol?: string | undefined;
|
23693
|
-
eligibilityTokenDecimals?: number | undefined;
|
23694
23270
|
eligibilityTokenThreshold: number;
|
23695
23271
|
eligibilityDuration: number;
|
23696
23272
|
} | {
|
@@ -23873,14 +23449,10 @@ declare const eden: {
|
|
23873
23449
|
hookType: import("@package/resources/enums").BOOST;
|
23874
23450
|
boostTokenChainId: number;
|
23875
23451
|
boostTokenAddress: string;
|
23876
|
-
boostTokenSymbol?: string | undefined;
|
23877
|
-
boostTokenDecimals?: number | undefined;
|
23878
23452
|
boostMultiplicator: number;
|
23879
23453
|
} | {
|
23880
23454
|
hookType: import("@package/resources/enums").BOOSTERC20;
|
23881
23455
|
boostTokenAddress: string;
|
23882
|
-
boostTokenDecimals?: number | undefined;
|
23883
|
-
boostTokenSymbol?: string | undefined;
|
23884
23456
|
boostTokenChainId: number;
|
23885
23457
|
boostTokenThreshold: number;
|
23886
23458
|
boostConfiguration: {
|
@@ -23903,8 +23475,6 @@ declare const eden: {
|
|
23903
23475
|
hookType: import("@package/resources/enums").ELIGIBILITY;
|
23904
23476
|
eligibilityTokenChainId: number;
|
23905
23477
|
eligibilityTokenAddress: string;
|
23906
|
-
eligibilityTokenSymbol?: string | undefined;
|
23907
|
-
eligibilityTokenDecimals?: number | undefined;
|
23908
23478
|
eligibilityTokenThreshold: number;
|
23909
23479
|
eligibilityDuration: number;
|
23910
23480
|
} | {
|