mirror of
https://github.com/status-im/keycard-redeem.git
synced 2025-03-01 04:10:31 +00:00
25 lines
1.1 KiB
Solidity
25 lines
1.1 KiB
Solidity
|
pragma solidity ^0.6.1;
|
||
|
|
||
|
/**
|
||
|
* @dev Required interface of an ERC721 compliant contract.
|
||
|
*/
|
||
|
interface IERC721 {
|
||
|
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
|
||
|
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
|
||
|
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
|
||
|
|
||
|
function balanceOf(address owner) external view returns (uint256 balance);
|
||
|
|
||
|
function ownerOf(uint256 tokenId) external view returns (address owner);
|
||
|
|
||
|
function safeTransferFrom(address from, address to, uint256 tokenId) external;
|
||
|
|
||
|
function transferFrom(address from, address to, uint256 tokenId) external;
|
||
|
function approve(address to, uint256 tokenId) external;
|
||
|
function getApproved(uint256 tokenId) external view returns (address operator);
|
||
|
|
||
|
function setApprovalForAll(address operator, bool _approved) external;
|
||
|
function isApprovedForAll(address owner, address operator) external view returns (bool);
|
||
|
|
||
|
function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
|
||
|
}
|