Skip to the content.

ERC-721 Non-Fungible Token Standard, optional metadata extension (IERC721MetadataUpgradeable.sol)

View Source: @openzeppelin\contracts-upgradeable\token\ERC721\extensions\IERC721MetadataUpgradeable.sol

↗ Extends: IERC721Upgradeable ↘ Derived Contracts: ERC721Upgradeable

IERC721MetadataUpgradeable

See https://eips.ethereum.org/EIPS/eip-721

Functions

name

Returns the token collection name.

function name() external view
returns(string)

Arguments

| Name | Type | Description | | ————- |————- | —–|

symbol

Returns the token collection symbol.

function symbol() external view
returns(string)

Arguments

| Name | Type | Description | | ————- |————- | —–|

tokenURI

Returns the Uniform Resource Identifier (URI) for tokenId token.

function tokenURI(uint256 tokenId) external view
returns(string)

Arguments

Name Type Description
tokenId uint256  

Contracts