Skip to content

Instantly share code, notes, and snippets.

View tailorvj's full-sized avatar
💭
Playing around with Next.js

Tailor VJ tailorvj

💭
Playing around with Next.js
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;