* Bump required compiler version to 0.5.2. * Fix shadowed variable warning in ERC20Migrator. * Rename Counter to Counters. * Add dummy state variable to SafeERC20Helper. * Update changelog entry. * Fix CountersImpl name. * Improve changelog entry.
15 lines
484 B
Solidity
15 lines
484 B
Solidity
pragma solidity ^0.5.2;
|
|
|
|
import "./IERC721.sol";
|
|
|
|
/**
|
|
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
|
|
* @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
|
|
*/
|
|
contract IERC721Enumerable is IERC721 {
|
|
function totalSupply() public view returns (uint256);
|
|
function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId);
|
|
|
|
function tokenByIndex(uint256 index) public view returns (uint256);
|
|
}
|