ERC1155SupplyHarness.sol 365 B

1234567891011121314
  1. import "../../munged/token/ERC1155/extensions/ERC1155Supply.sol";
  2. contract ERC1155SupplyHarness is ERC1155Supply {
  3. constructor(string memory uri_)
  4. ERC1155(uri_)
  5. {}
  6. // workaround for problem caused by `exists` being a CVL keyword
  7. function exists_wrapper(uint256 id) public view virtual returns (bool) {
  8. return exists(id);
  9. }
  10. }