MyNFT.sol 210 B

123456789
  1. // contracts/MyNFT.sol
  2. // SPDX-License-Identifier: MIT
  3. pragma solidity ^0.8.20;
  4. import {ERC721} from "../../token/ERC721/ERC721.sol";
  5. contract MyNFT is ERC721 {
  6. constructor() ERC721("MyNFT", "MNFT") {}
  7. }