Created
April 12, 2024 00:39
-
-
Save yuyasugano/bea8fc0abfcb1c5b987f51f46d60aaf5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.20; | |
import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; | |
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; | |
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; | |
import "@openzeppelin/contracts/access/Ownable.sol"; | |
contract MyToken is ERC721, ERC721URIStorage, ERC721Burnable, Ownable { | |
constructor(address initialOwner) | |
ERC721("MyToken", "MTK") | |
Ownable(initialOwner) | |
{} | |
function safeMint(address to, uint256 tokenId, string memory uri) | |
public | |
onlyOwner | |
{ | |
_safeMint(to, tokenId); | |
_setTokenURI(tokenId, uri); | |
} | |
// The following functions are overrides required by Solidity. | |
function tokenURI(uint256 tokenId) | |
public | |
view | |
override(ERC721, ERC721URIStorage) | |
returns (string memory) | |
{ | |
return super.tokenURI(tokenId); | |
} | |
function supportsInterface(bytes4 interfaceId) | |
public | |
view | |
override(ERC721, ERC721URIStorage) | |
returns (bool) | |
{ | |
return super.supportsInterface(interfaceId); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment