Skip to content

Instantly share code, notes, and snippets.

View tailorvj's full-sized avatar
🤠
Yes, it's me

Tailor VJ tailorvj

🤠
Yes, it's me
View GitHub Profile
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
contract TestToken is ERC721, ERC721Enumerable, Ownable {
using Counters for Counters.Counter;