Skip to content

Commit

Permalink
Merge branch 'feat/wind-down-upgrade' of github-defi:defi-wonderland/…
Browse files Browse the repository at this point in the history
…wind-down into fix/prod-deploy-gas-opt

Signed-off-by: 0xRaccoon <[email protected]>
  • Loading branch information
0xRaccoon committed Dec 11, 2024
2 parents 838f89e + 477806e commit 9ba322d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ contract WinddownUpgrade is Script {
bytes32 storageData = vm.load(address(optimismPortalProxy), OWNER_KEY);
address adminAddress = address(uint160(uint256(storageData)));

console.log("OptimismPortal admin address: ", adminAddress);

vm.startBroadcast(adminAddress);

// Deploy OptimismPortal implementation
Expand Down Expand Up @@ -86,6 +88,8 @@ contract WinddownUpgrade is Script {

vm.startBroadcast(adminAddress);

console.log("L1StandardBridge admin address: ", adminAddress);

// Deploy L1StandardBridge implementation
L1StandardBridge l1StandardBridgeImpl = new L1StandardBridge({
_messenger: payable(WinddownConstants.MESSENGER),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ contract WinddownImplementationDeploy is Script {
uint256 _deployerPk = vm.envUint("PRIVATE_KEY_DEPLOYER");
address _deployer = vm.addr(_deployerPk);
address _balanceClaimerProxyAdmin = vm.envAddress("BALANCE_CLAIMER_PROXY_ADMIN_PUBLIC_ADDRESS");

vm.startBroadcast(_deployer);

// Deploy BalanceClaimer proxy
Expand Down

0 comments on commit 9ba322d

Please sign in to comment.