Commit 53522975 authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: fix deployer chainid mapping

parent be9f5690
...@@ -447,7 +447,7 @@ abstract contract Deployer is Script { ...@@ -447,7 +447,7 @@ abstract contract Deployer is Script {
return "hardhat"; return "hardhat";
} else if (chainid == 11155111) { } else if (chainid == 11155111) {
return "sepolia"; return "sepolia";
} else if (chainid == 69) { } else if (chainid == 11155420) {
return "optimism-sepolia"; return "optimism-sepolia";
} else { } else {
return vm.toString(chainid); return vm.toString(chainid);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment