You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
496 B
18 lines
496 B
2 years ago
|
// SPDX-License-Identifier: MIT
|
||
|
// OpenZeppelin Contracts (interfaces/IERC6372.sol)
|
||
|
|
||
|
pragma solidity ^0.8.0;
|
||
|
|
||
|
interface IERC6372 {
|
||
|
/**
|
||
|
* @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).
|
||
|
*/
|
||
|
function clock() external view returns (uint48);
|
||
|
|
||
|
/**
|
||
|
* @dev Description of the clock
|
||
|
*/
|
||
|
// solhint-disable-next-line func-name-mixedcase
|
||
|
function CLOCK_MODE() external view returns (string memory);
|
||
|
}
|