cic-contracts/solidity/ERC5007.sol

16 lines
707 B
Solidity

pragma solidity >=0.6.12;
// Author: Louis Holbrook <dev@holbrook.no> 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
// SPDX-License-Identifier: AGPL-3.0-or-later
// File-version: 4
// This is a representation of an officially approved Ethereum Improvement Proposal, written by Anders (@0xanders), Lance (@LanceSnow), Shrug <shrug@emojidao.org>.
// It was released under the CC0 license.
// The proposal source used as reference was a Markdown file with the following digest:
// - sha256:ec5a3d25822e616e032ef27faeb9a7191147a7b18064d95807df20fbc6b69870
interface IERC5007 {
function startTime(uint256 tokenId) external view returns (int64);
function endTime(uint256 tokenId) external view returns (int64);
}