Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mainnet deploy #435

Merged
merged 21 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion contracts/script/EigenDADeployer.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,9 @@ contract EigenDADeployer is DeployOpenEigenLayer {
stakeRegistry
);

address[] memory confirmers = new address[](1);
confirmers[0] = addressConfig.eigenDACommunityMultisig;

// Third, upgrade the proxy contracts to use the correct implementation contracts and initialize them.
eigenDAProxyAdmin.upgradeAndCall(
TransparentUpgradeableProxy(payable(address(eigenDAServiceManager))),
Expand All @@ -200,7 +203,7 @@ contract EigenDADeployer is DeployOpenEigenLayer {
eigenDAPauserReg,
0,
addressConfig.eigenDACommunityMultisig,
addressConfig.eigenDACommunityMultisig
confirmers
)
);

Expand Down
4 changes: 3 additions & 1 deletion contracts/script/deploy/holesky/Holesky_Deploy.s.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
/*
pragma solidity =0.8.12;
import {PauserRegistry} from "eigenlayer-core/contracts/permissions/PauserRegistry.sol";
Expand Down Expand Up @@ -89,7 +90,7 @@ contract Deployer_Holesky is ExistingDeploymentParser {
/**
* First, deploy upgradeable proxy contracts that **will point** to the implementations. Since the implementation contracts are
* not yet deployed, we give these proxies an empty contract as the initial implementation, to act as if they have no code.
*/
*//*
eigenDAServiceManager = EigenDAServiceManager(
address(new TransparentUpgradeableProxy(address(emptyContract), address(eigenDAProxyAdmin), ""))
);
Expand Down Expand Up @@ -377,3 +378,4 @@ contract Deployer_Holesky is ExistingDeploymentParser {
ejector = stdJson.readAddress(config_data, ".permissions.ejector");
}
}
*/
Loading
Loading