* Bump required compiler version to 0.5.2. * Fix shadowed variable warning in ERC20Migrator. * Rename Counter to Counters. * Add dummy state variable to SafeERC20Helper. * Update changelog entry. * Fix CountersImpl name. * Improve changelog entry.
14 lines
399 B
Solidity
14 lines
399 B
Solidity
pragma solidity ^0.5.2;
|
|
|
|
import "./IERC721.sol";
|
|
import "./IERC721Enumerable.sol";
|
|
import "./IERC721Metadata.sol";
|
|
|
|
/**
|
|
* @title ERC-721 Non-Fungible Token Standard, full implementation interface
|
|
* @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
|
|
*/
|
|
contract IERC721Full is IERC721, IERC721Enumerable, IERC721Metadata {
|
|
// solhint-disable-previous-line no-empty-blocks
|
|
}
|