ERC721Full.sol 564 B

12345678910111213141516171819
  1. pragma solidity ^0.4.24;
  2. import "./ERC721.sol";
  3. import "./ERC721Enumerable.sol";
  4. import "./ERC721Metadata.sol";
  5. /**
  6. * @title Full ERC721 Token
  7. * This implementation includes all the required and some optional functionality of the ERC721 standard
  8. * Moreover, it includes approve all functionality using operator terminology
  9. * @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
  10. */
  11. contract ERC721Full is ERC721, ERC721Enumerable, ERC721Metadata {
  12. constructor(string name, string symbol) ERC721Metadata(name, symbol)
  13. public
  14. {
  15. }
  16. }