การสร้าง NFT
รหัสโทเค็นที่ไม่ซ้ำกัน
การสร้าง NFT เป็นบทเรียน Web3 & DApp Development Fundamentals ฟรีบน CoddyKit นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Web3 & DApp Development Fundamentals และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Web3 & DApp Development Fundamentals มีบทเรียนทั้งหมด 4 บทเรียน
บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ
Creating Unique Tokens
Minting an NFT creates a brand new token with a unique tokenId and assigns it an owner. Unlike ERC-20 minting (which adds to a balance), each NFT mint produces a distinct, identifiable asset.
Ownership Mapping
The core NFT state is a mapping from tokenId to owner address, plus a balance count per owner.
<code>mapping(uint256 => address) private _owners;
mapping(address => uint256) private _balances;</code>A Basic Mint Function
Minting assigns the token to a recipient, increments their balance, and emits a Transfer from the zero address - just like ERC-20 mint conventions.
<code>function _mint(address to, uint256 tokenId) internal {
require(to != address(0), 'mint to zero');
require(_owners[tokenId] == address(0), 'already minted');
_owners[tokenId] = to;
_balances[to] += 1;
emit Transfer(address(0), to, tokenId);
}</code>Preventing Duplicate IDs
A token id can only be minted once. The check _owners[tokenId] == address(0) ensures you never overwrite an existing token.
<code>require(_owners[tokenId] == address(0), 'token already exists');</code>Auto-Incrementing IDs
To avoid id collisions, many contracts use a counter that increases with each mint, guaranteeing unique sequential ids.
<code>uint256 private _nextId;
function mint(address to) public {
uint256 id = _nextId;
_nextId += 1;
_mint(to, id);
}</code>Safe Minting
_safeMint behaves like _mint but, if the recipient is a contract, verifies it implements onERC721Received. This prevents NFTs from being locked in contracts that cannot handle them.
<code>function _safeMint(address to, uint256 tokenId) internal {
_mint(to, tokenId);
require(_checkOnERC721Received(to, tokenId), 'unsafe recipient');
}</code>Access Control
Like ERC-20, an unrestricted mint is dangerous. Gate minting behind ownership or a minter role so only authorized accounts can create tokens.
<code>function mint(address to, uint256 id) public onlyOwner {
_safeMint(to, id);
}</code>Public Mint with Payment
Many NFT drops let the public mint by paying a fee. The function is payable and checks the sent value.
<code>uint256 public price = 0.05 ether;
function publicMint() public payable {
require(msg.value >= price, 'insufficient payment');
_safeMint(msg.sender, _nextId);
_nextId += 1;
}</code>Setting Metadata at Mint
When minting you often record a per-token metadata URI so each NFT can have its own image and attributes.
<code>mapping(uint256 => string) private _tokenURIs;
function mintWithURI(address to, uint256 id, string memory uri) public onlyOwner {
_safeMint(to, id);
_tokenURIs[id] = uri;
}</code>Supply Limits
Collections usually cap the total number of NFTs. Enforce it with a max-supply check during minting.
<code>uint256 public constant MAX_SUPPLY = 10000;
function mint(address to) public onlyOwner {
require(_nextId < MAX_SUPPLY, 'sold out');
_safeMint(to, _nextId);
_nextId += 1;
}</code>Batch Minting
To mint several NFTs in one transaction, loop the mint logic. Be mindful of the block gas limit for large batches.
<code>function batchMint(address to, uint256 count) public onlyOwner {
for (uint256 i = 0; i < count; i++) {
_safeMint(to, _nextId);
_nextId += 1;
}
}</code>Quick Check
Test your understanding of minting NFTs.
Recap
You learned how to mint NFTs:
- Each mint assigns a unique tokenId to an owner and emits Transfer from address(0)
- Prevent duplicate ids; auto-increment counters keep ids unique
_safeMintprotects against locking NFTs in incompatible contracts- Add access control, optional payment, metadata, supply caps, and batch minting
เรียนรู้ Web3 & DApp Development Fundamentals ด้วย AI tutor — ฟรี
เขียนและเรียกใช้โค้ดจริงในเบราว์เซอร์ของคุณ รับความช่วยเหลือทันทีจาก AI tutor 24/7 และเรียนรู้ต่อจากที่คุณหยุดบนเว็บหรือในแอป
- คอร์ส
- 29
- บทเรียน
- 105
คำถามที่พบบ่อย
บทเรียน “การสร้าง NFT” ฟรีหรือไม่
ใช่ — ข้อความเต็มของ “การสร้าง NFT” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Web3 & DApp Development Fundamentals ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Web3 & DApp Development Fundamentals มีบทเรียนทั้งหมด 4 บทเรียน
คุณจะเรียนรู้อะไรในบทเรียน “การสร้าง NFT”
รหัสโทเค็นที่ไม่ซ้ำกัน คุณปฏิบัติ Web3 & DApp Development Fundamentals ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน
คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Web3 & DApp Development Fundamentals หรือไม่
ไม่จำเป็นต้องมีประสบการณ์มาก่อน Web3 & DApp Development Fundamentals บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน
บทเรียน “การสร้าง NFT” ใช้เวลานานแค่ไหน
บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย
ฉันเขียนและรันโค้ดในบทเรียน Web3 & DApp Development Fundamentals นี้ได้ไหม
ได้ บทเรียน Web3 & DApp Development Fundamentals ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ
บทเรียนทั้งหมดในหลักสูตรนี้
- มาตรฐาน ERC-721
- การสร้าง NFT
- เมทาดาทาโทเค็น
- ตลาดซื้อขาย