* 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.
16 lines
500 B
Solidity
16 lines
500 B
Solidity
pragma solidity ^0.5.2;
|
|
|
|
import "../token/ERC721/ERC721Full.sol";
|
|
import "../token/ERC721/ERC721Mintable.sol";
|
|
import "../token/ERC721/ERC721MetadataMintable.sol";
|
|
import "../token/ERC721/ERC721Burnable.sol";
|
|
|
|
/**
|
|
* @title ERC721MintableBurnableImpl
|
|
*/
|
|
contract ERC721MintableBurnableImpl is ERC721Full, ERC721Mintable, ERC721MetadataMintable, ERC721Burnable {
|
|
constructor () public ERC721Mintable() ERC721Full("Test", "TEST") {
|
|
// solhint-disable-previous-line no-empty-blocks
|
|
}
|
|
}
|