* Add documentation to the IERC721 contract * Add documentation to the IERC721Metadata contract * Add documentation to the IERC721Enumerable contract * Improves IERC721 documentation * Improves IERC721Metadata documentation * Improves IERC721Enumerable documentation * Fixes documentations issues in IERC721 * Improves ERC721 interfaces documentation
26 lines
649 B
Solidity
26 lines
649 B
Solidity
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);
|
|
}
|