// SPDX-License-Identifier: CC0-1.0 pragma solidity ^0.8.16; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; /** * @title ERC721Mock * Used for tests */ contract ERC721Mock is ERC721 { constructor( string memory name, string memory symbol ) ERC721(name, symbol) {} function mint(address to, uint256 amount) public { _mint(to, amount); } }