Skip to content
Merged
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 scripts/deploy/SystemDeploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1199,8 +1199,11 @@ contract SystemDeploy is Script {
require(_input.teeChallenger != address(0), "SystemDeploy: teeChallenger not set");

if (_isDevMultiproof(_input)) {
// Block only real value-bearing chains (Ethereum mainnet, Base mainnet). Public
// testnets such as Base Sepolia (84532) are valid dev-multiproof settlement targets,
// e.g. an L3 devnet that settles to Base Sepolia.
require(
block.chainid != 1 && block.chainid != 8453 && block.chainid != 84532,
block.chainid != 1 && block.chainid != 8453,
"SystemDeploy: dev multiproof cannot be deployed on production chains"
);
} else {
Expand Down
Loading