Skip to content

Instantly share code, notes, and snippets.

View uwaifo18's full-sized avatar
💭
Busy exploiting codes

Aisuski uwaifo18

💭
Busy exploiting codes
View GitHub Profile
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import {ERC721A} from "erc721a/contracts/ERC721A.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
error MintLimitExceeded();
contract SampleNFT is ERC721A, Ownable {
uint256 public constant MINT_LIMIT = 10;