IERC721Enumerable.sol 462 B

1234567891011121314
  1. pragma solidity ^0.5.0;
  2. import "./IERC721.sol";
  3. /**
  4. * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
  5. * @dev See https://eips.ethereum.org/EIPS/eip-721
  6. */
  7. contract IERC721Enumerable is IERC721 {
  8. function totalSupply() public view returns (uint256);
  9. function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId);
  10. function tokenByIndex(uint256 index) public view returns (uint256);
  11. }