Skip to content

Instantly share code, notes, and snippets.

@shobhitic
shobhitic / PreRevealedTokens.sol
Last active June 8, 2023 03:05
Contract to help with Pre reveal metadata for NFT smart contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/[email protected]/token/ERC721/ERC721.sol";
import "@openzeppelin/[email protected]/access/Ownable.sol";
import "@openzeppelin/[email protected]/utils/Counters.sol";
contract PreRevealedTokens is ERC721, Ownable {
using Counters for Counters.Counter;