Skip to content
Open
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: 5 additions & 0 deletions contracts/src/fp/OPSuccinctFaultDisputeGame.sol
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,11 @@ contract OPSuccinctFaultDisputeGame is Clone, ISemver, IDisputeGame {
disputeGameFactory_ = DISPUTE_GAME_FACTORY;
}

/// @notice Returns the SP1 verifier contract.
function sp1Verifier() external view returns (ISP1Verifier verifier_) {
verifier_ = SP1_VERIFIER;
}

/// @notice Returns the rollup config hash.
function rollupConfigHash() external view returns (bytes32 rollupConfigHash_) {
rollupConfigHash_ = ROLLUP_CONFIG_HASH;
Expand Down
Loading