Skip to content

Latest commit

 

History

History
179 lines (156 loc) · 5.9 KB

IERC721Enumerable.md

File metadata and controls

179 lines (156 loc) · 5.9 KB

ERC-721 Non-Fungible Token Standard, optional enumeration extension (IERC721Enumerable.sol)

View Source: contracts/token/ERC721/IERC721Enumerable.sol

↗ Extends: IERC721 ↘ Derived Contracts: ERC721Enumerable, IERC721Full

IERC721Enumerable

See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md

Functions

totalSupply

⤿ Overridden Implementation(s): ERC721Enumerable.totalSupply

function totalSupply() public
returns(uint256)

Arguments

Name Type Description

tokenOfOwnerByIndex

⤿ Overridden Implementation(s): ERC721Enumerable.tokenOfOwnerByIndex

function tokenOfOwnerByIndex(address owner, uint256 index) public
returns(tokenId uint256)

Arguments

Name Type Description
owner address
index uint256

tokenByIndex

⤿ Overridden Implementation(s): ERC721Enumerable.tokenByIndex

function tokenByIndex(uint256 index) public
returns(uint256)

Arguments

Name Type Description
index uint256

Contracts