# Tạo ERC721 **Published by:** [tonythanh2012](https://paragraph.com/@tonythanh/) **Published on:** 2025-06-11 **URL:** https://paragraph.com/@tonythanh/t-o-erc721 ## Content Deploy xong nhớ MINT sẽ có token ERC 721 // SPDX-License-Identifier: MIT // Compatible with OpenZeppelin Contracts ^5.0.0 pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; contract lehieukemNFT is ERC721 { uint256 public tokenId; constructor() ERC721("lehieukemCollection", "LKEM") { tokenId = 0; } function mint() public { _mint(msg.sender, tokenId); tokenId++; } } ## Publication Information - [tonythanh2012](https://paragraph.com/@tonythanh/): Publication homepage - [All Posts](https://paragraph.com/@tonythanh/): More posts from this publication - [RSS Feed](https://api.paragraph.com/blogs/rss/@tonythanh): Subscribe to updates