Skip to content

Commit

Permalink
chore: remove ISlasher references
Browse files Browse the repository at this point in the history
  • Loading branch information
MegaRedHand committed Jan 3, 2025
1 parent 06fc0d4 commit 38ae8d1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 10 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ lint: ## runs all linters

___BINDINGS___: ##

core_default := "DelegationManager IRewardsCoordinator ISlasher StrategyManager EigenPod EigenPodManager IStrategy IAVSDirectory"
core_default := "DelegationManager IRewardsCoordinator StrategyManager EigenPod EigenPodManager IStrategy IAVSDirectory"
core_location := "./lib/eigenlayer-middleware/lib/eigenlayer-contracts"
core_bindings_location := "../../../../bindings"

Expand Down
1 change: 0 additions & 1 deletion contracts/script/DeployMockAvsRegistries.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import "eigenlayer-contracts/src/contracts/permissions/PauserRegistry.sol";

import {IDelegationManager} from "eigenlayer-contracts/src/contracts/interfaces/IDelegationManager.sol";
import {IStrategyManager, IStrategy} from "eigenlayer-contracts/src/contracts/interfaces/IStrategyManager.sol";
import {ISlasher} from "eigenlayer-contracts/src/contracts/interfaces/ISlasher.sol";
import "eigenlayer-contracts/src/test/mocks/EmptyContract.sol";

import "eigenlayer-middleware/src/RegistryCoordinator.sol" as blsregcoord;
Expand Down
8 changes: 0 additions & 8 deletions contracts/script/parsers/EigenlayerContractsParser.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import "eigenlayer-contracts/src/contracts/permissions/PauserRegistry.sol";
import {IAVSDirectory} from "eigenlayer-contracts/src/contracts/interfaces/IAVSDirectory.sol";
import {IDelegationManager} from "eigenlayer-contracts/src/contracts/interfaces/IDelegationManager.sol";
import {IStrategyManager, IStrategy} from "eigenlayer-contracts/src/contracts/interfaces/IStrategyManager.sol";
import {ISlasher} from "eigenlayer-contracts/src/contracts/interfaces/ISlasher.sol";
import {StrategyBaseTVLLimits} from "eigenlayer-contracts/src/contracts/strategies/StrategyBaseTVLLimits.sol";
import {IRewardsCoordinator} from "eigenlayer-contracts/src/contracts/interfaces/IRewardsCoordinator.sol";

Expand All @@ -19,7 +18,6 @@ struct EigenlayerContracts {
PauserRegistry eigenlayerPauserReg;
IStrategyManager strategyManager;
IDelegationManager delegationManager;
ISlasher slasher;
IAVSDirectory avsDirectory;
IRewardsCoordinator rewardsCoordinator;
StrategyBaseTVLLimits baseStrategyImplementation;
Expand Down Expand Up @@ -65,12 +63,6 @@ contract EigenlayerContractsParser is ConfigsReadWriter {
".addresses.avsDirectory"
)
);
ISlasher slasher = ISlasher(
stdJson.readAddress(
eigenlayerDeployedContracts,
".addresses.slasher"
)
);
StrategyBaseTVLLimits baseStrategyImplementation = StrategyBaseTVLLimits(
stdJson.readAddress(
eigenlayerDeployedContracts,
Expand Down

0 comments on commit 38ae8d1

Please sign in to comment.