// SPDX-License-Identifier: MIT pragma solidity 0.8.15; import {ISemver} from "contracts/universal/ISemver.sol"; /// @title IMIPS2 /// @notice Interface for the MIPS2 contract. interface IMIPS2 is ISemver { function step(bytes memory _stateData, bytes memory _proof, bytes32 _localContext) external returns (bytes32); }