File size: 421 Bytes
f998fcd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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);

}