TestERC721.sol 384 Bytes
Newer Older
1
// SPDX-License-Identifier: MIT
2
pragma solidity 0.8.15;
3

4
import { ERC721 } from "@rari-capital/solmate/src/tokens/ERC721.sol";
5 6 7 8 9 10 11

contract TestERC721 is ERC721 {
    constructor() ERC721("TEST", "TST") {}

    function mint(address to, uint256 tokenId) public {
        _mint(to, tokenId);
    }
12 13

    function tokenURI(uint256) public pure virtual override returns (string memory) {}
14
}