cic-contracts/solidity/ERC5192.sol

18 lines
686 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 Tim Daubenschütz (@TimDaub), Anders (@0xanders).
// It was released under the CC0 license.
// The proposal source used as reference was a Markdown file with the following digest:
// - sha256:c746922587ede699bd1560be0c0db5599104a25c976077d20706ec05340b3b7a
interface IERC5192 {
event Locked(uint256 tokenId);
event Unlocked(uint256 tokenId);
function locked(uint256 tokenId) external view returns (bool);
}