Skip to content

Instantly share code, notes, and snippets.

@ChanJuiHuang
Created August 20, 2022 01:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChanJuiHuang/5d18e1dc8d08cb01246de839867bebc1 to your computer and use it in GitHub Desktop.
Save ChanJuiHuang/5d18e1dc8d08cb01246de839867bebc1 to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
contract WoWNFT is ERC721 {
constructor() ERC721("WoWNFT", "WOW") {}
function mint(uint256 tokenId) public {
_safeMint(msg.sender, tokenId);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment