* Change import path from zos-lib to upgrades in all contracts * Update readme with new naming * Update package and deps names * Change path to initializable in AST of networks.jsons * Migrate manifest version * Use new oz file locations * Rename in ERC20Migrator comments * Update SDK install instructions in README * Update gitignore to use new session file name * trigger CI * Fixes to readme and package version * Use 2.5.0 release of OpenZeppelin SDK
16 lines
538 B
Solidity
16 lines
538 B
Solidity
pragma solidity ^0.5.2;
|
|
|
|
import "@openzeppelin/upgrades/contracts/Initializable.sol";
|
|
import "./IERC721.sol";
|
|
|
|
/**
|
|
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
|
|
* @dev See https://eips.ethereum.org/EIPS/eip-721
|
|
*/
|
|
contract IERC721Enumerable is Initializable, 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);
|
|
}
|