You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
Solidity
30 lines
1.0 KiB
Solidity
2 years ago
|
// SPDX-License-Identifier: MIT
|
||
|
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
|
||
|
|
||
|
pragma solidity ^0.8.0;
|
||
|
|
||
|
import "../IERC721.sol";
|
||
|
|
||
|
/**
|
||
|
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
|
||
|
* @dev See https://eips.ethereum.org/EIPS/eip-721
|
||
|
*/
|
||
|
interface IERC721Enumerable is IERC721 {
|
||
|
/**
|
||
|
* @dev Returns the total amount of tokens stored by the contract.
|
||
|
*/
|
||
|
function totalSupply() external view returns (uint256);
|
||
|
|
||
|
/**
|
||
|
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
|
||
|
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
|
||
|
*/
|
||
|
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
|
||
|
|
||
|
/**
|
||
|
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
|
||
|
* Use along with {totalSupply} to enumerate all tokens.
|
||
|
*/
|
||
|
function tokenByIndex(uint256 index) external view returns (uint256);
|
||
|
}
|