Skip to content
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
2 changes: 1 addition & 1 deletion deploy-config/local-tee.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"superchainConfigGuardian": "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc",
"superchainConfigIncidentResponder": "0x0000000000000000000000000000000000000000",
"teeChallenger": "0x976EA74026E726554dB657fA54763abd0C3a0aa9",
"teeImageHash": "0x0000000000000000000000000000000000000000000000000000000000000001",
"teeImageHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"teeProposer": "0x9965507D1a55bcC2695C58ba16FB37d819B0A4dc",
"zkAggregationHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"zkRangeHash": "0x0000000000000000000000000000000000000000000000000000000000000000"
Expand Down
2 changes: 1 addition & 1 deletion scripts/deploy/SystemDeploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1110,7 +1110,6 @@ contract SystemDeploy is Script {
}

function _assertValidMultiproofInput(ImplementationInput memory _input) internal view {
require(_input.teeImageHash != bytes32(0), "SystemDeploy: teeImageHash not set");
require(_input.multiproofConfigHash != bytes32(0), "SystemDeploy: multiproofConfigHash not set");
require(_input.multiproofGameType != 0, "SystemDeploy: multiproofGameType not set");
require(_input.multiproofBlockInterval != 0, "SystemDeploy: multiproof block interval not set");
Expand All @@ -1130,6 +1129,7 @@ contract SystemDeploy is Script {
"SystemDeploy: dev multiproof cannot be deployed on production chains"
);
} else {
require(_input.teeImageHash != bytes32(0), "SystemDeploy: teeImageHash not set");
require(_input.zkRangeHash != bytes32(0), "SystemDeploy: zkRangeHash not set");
require(_input.zkAggregationHash != bytes32(0), "SystemDeploy: zkAggregationHash not set");
require(address(_input.sp1Verifier) != address(0), "SystemDeploy: sp1Verifier not set");
Expand Down
Loading