You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
365 B
14 lines
365 B
import "../../munged/token/ERC1155/extensions/ERC1155Supply.sol";
|
|
|
|
contract ERC1155SupplyHarness is ERC1155Supply {
|
|
constructor(string memory uri_)
|
|
ERC1155(uri_)
|
|
{}
|
|
|
|
// workaround for problem caused by `exists` being a CVL keyword
|
|
function exists_wrapper(uint256 id) public view virtual returns (bool) {
|
|
return exists(id);
|
|
}
|
|
|
|
}
|
|
|
|
|