28 lines
682 B
Solidity
28 lines
682 B
Solidity
![]() |
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
pragma solidity ^0.6.2;
|
||
|
|
||
|
import "./IERC721.sol";
|
||
|
|
||
|
/**
|
||
|
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
|
||
|
* @dev See https://eips.ethereum.org/EIPS/eip-721
|
||
|
*/
|
||
|
interface IERC721Metadata is IERC721 {
|
||
|
|
||
|
/**
|
||
|
* @dev Returns the token collection name.
|
||
|
*/
|
||
|
function name() external view returns (string memory);
|
||
|
|
||
|
/**
|
||
|
* @dev Returns the token collection symbol.
|
||
|
*/
|
||
|
function symbol() external view returns (string memory);
|
||
|
|
||
|
/**
|
||
|
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
|
||
|
*/
|
||
|
function tokenURI(uint256 tokenId) external view returns (string memory);
|
||
|
}
|