* Update contract pragmas to solidity 0.7 * Remove internal declaration on constructors * Reference SafeMath explicitely * Remove public constructor declaration from abstract contracts * Remove public constructor declaration from non-abstract contracts
14 lines
338 B
Solidity
14 lines
338 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.7.0;
|
|
|
|
import "../token/ERC1155/ERC1155Burnable.sol";
|
|
|
|
contract ERC1155BurnableMock is ERC1155Burnable {
|
|
constructor(string memory uri) ERC1155(uri) { }
|
|
|
|
function mint(address to, uint256 id, uint256 value, bytes memory data) public {
|
|
_mint(to, id, value, data);
|
|
}
|
|
}
|