* Now compiling in a separate directory using truffle 5. * Ported to 0.5.1, now compiling using 0.5.1. * test now also compiles using the truffle 5 hack. * Downgraded to 0.5.0. * Sorted scripts. * Cleaned up the compile script a bit.
16 lines
570 B
Solidity
16 lines
570 B
Solidity
pragma solidity ^0.5.0;
|
|
|
|
import "./ERC721.sol";
|
|
import "./ERC721Enumerable.sol";
|
|
import "./ERC721Metadata.sol";
|
|
|
|
/**
|
|
* @title Full ERC721 Token
|
|
* This implementation includes all the required and some optional functionality of the ERC721 standard
|
|
* Moreover, it includes approve all functionality using operator terminology
|
|
* @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
|
|
*/
|
|
contract ERC721Full is ERC721, ERC721Enumerable, ERC721Metadata {
|
|
constructor (string memory name, string memory symbol) ERC721Metadata(name, symbol) public {}
|
|
}
|