Is OPML not really open source yet?
babytdream opened this issue · 1 comments
babytdream commented
interface IOpml {
function uploadModel(bytes32 modelHash, bytes32 programHash, string calldata description) external returns (uint256 modelId);
function initOpmlRequest(uint256 modelId, bytes calldata input) external returns (uint256 requestId);
function uploadResult(uint256 requestId, bytes calldata output) external;
function startChallenge(uint256 requestId, bytes calldata output, bytes32 finalState, uint256 stepCount) external returns (uint256 challengeId);
function respondState(uint256 challengeId, bytes32 stateHash) external;
function proposeState(uint256 challengeId, bytes32 stateHash) external;
function assertStateTransition(uint256 challengeId) external;
function isFinalized(uint256 requestId) external view returns (bool);
function getOutput(uint256 requestId) external view returns (bytes memory output);
}
This is Opml in OAO contract, But I can’t find your relevant implementation in the OPML open source address(https://github.com/ora-io/opml). Is OPML not really open source yet?
fewwwww commented
We will release more in next releases.