* Updated code style to 4 spaces and 120 max characters per line. * Update contracts/token/ERC721/ERC721Pausable.sol Co-Authored-By: nventuro <nicolas.venturo@gmail.com> * Update contracts/token/ERC721/IERC721.sol Co-Authored-By: nventuro <nicolas.venturo@gmail.com>
14 lines
424 B
Solidity
14 lines
424 B
Solidity
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);
|
|
function symbol() external view returns (string);
|
|
function tokenURI(uint256 tokenId) external view returns (string);
|
|
}
|