zellic-audit
Initial commit
f998fcd
raw
history blame
421 Bytes
// This contract is part of Zellic’s smart contract dataset, which is a collection of publicly available contract code gathered as of March 2023.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
interface IChallenge {
/**
* @notice get status of challenge
* @return true: challenge finish
* false: challenge in progess
*/
function isFinished() external view returns(bool);
}