Skip to content

Commit

Permalink
remove unused eigenlayer dependencies from deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
danoctavian committed Aug 16, 2024
1 parent 12eadd5 commit a347543
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions script/DeployYnLSDe.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ pragma solidity ^0.8.24;
import {TimelockController} from "@openzeppelin/contracts/governance/TimelockController.sol";
import {TransparentUpgradeableProxy} from "lib/openzeppelin-contracts/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";
import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol";
import {IEigenPodManager} from "lib/eigenlayer-contracts/src/contracts/interfaces/IEigenPodManager.sol";
import {IDelegationManager} from "lib/eigenlayer-contracts/src/contracts/interfaces/IDelegationManager.sol";
import {IDelayedWithdrawalRouter} from "lib/eigenlayer-contracts/src/contracts/interfaces/IDelayedWithdrawalRouter.sol";
import {IStrategyManager} from "lib/eigenlayer-contracts/src/contracts/interfaces/IStrategyManager.sol";
import {IStrategy} from "lib/eigenlayer-contracts/src/contracts/interfaces/IStrategy.sol";
import {IDepositContract} from "src/external/ethereum/IDepositContract.sol";
Expand Down Expand Up @@ -43,9 +41,7 @@ import {console} from "lib/forge-std/src/console.sol";
contract DeployYnLSDe is BaseYnEigenScript {

IDelegationManager public delegationManager;
IDelayedWithdrawalRouter public delayedWithdrawalRouter;
IStrategyManager public strategyManager;
IEigenPodManager public eigenPodManager;

ynEigen ynLSDe;
LSDRateProvider lsdRateProvider;
Expand Down Expand Up @@ -81,7 +77,6 @@ contract DeployYnLSDe is BaseYnEigenScript {

ContractAddresses contractAddresses = new ContractAddresses();
ContractAddresses.ChainAddresses memory chainAddresses = contractAddresses.getChainAddresses(block.chainid);
eigenPodManager = IEigenPodManager(chainAddresses.eigenlayer.EIGENPOD_MANAGER_ADDRESS);
delegationManager = IDelegationManager(chainAddresses.eigenlayer.DELEGATION_MANAGER_ADDRESS);
strategyManager = IStrategyManager(chainAddresses.eigenlayer.STRATEGY_MANAGER_ADDRESS);

Expand Down

0 comments on commit a347543

Please sign in to comment.