* Initial migration to Solidity 0.6.x - v3.0 first steps (#2063) * Initial migration, missing GSN, 721, 777 and Crowdsales. * Add _beforeTokenOperation and _afterTokenOperation. * Add documentation for hooks. * Add hooks doc * Add missing drafts * Add back ERC721 with hooks * Bring back ERC777 * Notes on hooks * Bring back GSN * Make functions virtual * Make GSN overrides explicit * Fix ERC20Pausable tests * Remove virtual from some view functions * Update linter * Delete examples * Remove unnecessary virtual * Remove roles from Pausable * Remove roles * Remove users of roles * Adapt ERC20 tests * Fix ERC721 tests * Add all ERC721 hooks * Add ERC777 hooks * Fix remaining tests * Bump compiler version * Move 721BurnableMock into mocks directory * Remove _before hooks * Fix tests * Upgrade linter * Put modifiers last * Remove _beforeTokenApproval and _beforeOperatorApproval hooks
54 lines
2.0 KiB
Solidity
54 lines
2.0 KiB
Solidity
pragma solidity ^0.6.0;
|
|
|
|
import "../../introspection/IERC165.sol";
|
|
|
|
/**
|
|
* @dev Required interface of an ERC721 compliant contract.
|
|
*/
|
|
abstract contract IERC721 is IERC165 {
|
|
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);
|
|
|
|
/**
|
|
* @dev Returns the number of NFTs in `owner`'s account.
|
|
*/
|
|
function balanceOf(address owner) public view virtual returns (uint256 balance);
|
|
|
|
/**
|
|
* @dev Returns the owner of the NFT specified by `tokenId`.
|
|
*/
|
|
function ownerOf(uint256 tokenId) public view virtual returns (address owner);
|
|
|
|
/**
|
|
* @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
|
|
* another (`to`).
|
|
*
|
|
*
|
|
*
|
|
* Requirements:
|
|
* - `from`, `to` cannot be zero.
|
|
* - `tokenId` must be owned by `from`.
|
|
* - If the caller is not `from`, it must be have been allowed to move this
|
|
* NFT by either {approve} or {setApprovalForAll}.
|
|
*/
|
|
function safeTransferFrom(address from, address to, uint256 tokenId) public virtual;
|
|
/**
|
|
* @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
|
|
* another (`to`).
|
|
*
|
|
* Requirements:
|
|
* - If the caller is not `from`, it must be approved to move this NFT by
|
|
* either {approve} or {setApprovalForAll}.
|
|
*/
|
|
function transferFrom(address from, address to, uint256 tokenId) public virtual;
|
|
function approve(address to, uint256 tokenId) public virtual;
|
|
function getApproved(uint256 tokenId) public view virtual returns (address operator);
|
|
|
|
function setApprovalForAll(address operator, bool _approved) public virtual;
|
|
function isApprovedForAll(address owner, address operator) public view virtual returns (bool);
|
|
|
|
|
|
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual;
|
|
}
|