You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
429 B
15 lines
429 B
7 years ago
|
pragma solidity ^0.4.24;
|
||
|
|
||
|
import "./IERC721.sol";
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
|
||
|
* @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
|
||
|
*/
|
||
|
contract IERC721Metadata is IERC721 {
|
||
|
function name() external view returns (string name);
|
||
|
function symbol() external view returns (string symbol);
|
||
|
function tokenURI(uint256 tokenId) public view returns (string);
|
||
|
}
|