* Adding solhint, working on style fixes. * Upgraded to solhint 1.5.0. * Removed all references to Solium * Updated mocks to make the pass the new linter rules. * Reformatted the .solhint.json file a bit. * Removed Solium configuration files. * Remove Solium dependency. * Add comment explaing disabled time rule in TokenVesting. * Revert to the old (ugly?) style. * Revert SignatureBouncerMock style. * Fix ERC165InterfacesSupported interface.
18 lines
632 B
Solidity
18 lines
632 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) public ERC721Metadata(name, symbol) {
|
|
// solhint-disable-previous-line no-empty-blocks
|
|
}
|
|
}
|