การคอมไพล์สัญญา
อาร์ติแฟกต์จากการสร้าง
การคอมไพล์สัญญา เป็นบทเรียน Web3 & DApp Development Fundamentals ฟรีบน CoddyKit นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Web3 & DApp Development Fundamentals และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Web3 & DApp Development Fundamentals มีบทเรียนทั้งหมด 4 บทเรียน
บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ
Why Compile
Solidity source code cannot run on the EVM directly. The compiler turns .sol files into bytecode and an ABI that tools and clients use.
- Bytecode — the low-level instructions deployed on-chain.
- ABI — a JSON interface describing functions and events.
The Compile Task
Hardhat compiles every contract under contracts/ with a single command:
npx hardhat compileHardhat downloads the right solc version automatically, so you do not need to install the compiler manually.
npx hardhat compileChoosing the Solidity Version
The compiler version is set in hardhat.config.js and must satisfy the pragma in your contracts:
module.exports = {
solidity: "0.8.24",
};If your contract says pragma solidity ^0.8.24;, the configured version must be compatible or compilation fails.
module.exports = {
solidity: "0.8.24",
};Build Artifacts
After compiling, Hardhat writes output to the artifacts/ folder. Each contract gets a JSON file containing:
abi— the application binary interface.bytecode— deployment bytecode.deployedBytecode— runtime bytecode.
These artifacts are what ethers.js loads to interact with your contract.
The Cache Folder
Hardhat keeps a cache/ folder to track what changed. On the next compile, only modified files are recompiled.
This incremental compilation makes large projects build quickly. If something seems stale, you can force a fresh build.
Cleaning the Build
To remove cached and generated files, run the clean task:
npx hardhat cleanThis deletes artifacts/ and cache/. Use it when you suspect a stale artifact is causing odd behavior, then recompile.
npx hardhat cleanCompiler Optimizer
The optimizer reduces gas costs and bytecode size. Enable it in the config:
module.exports = {
solidity: {
version: "0.8.24",
settings: {
optimizer: { enabled: true, runs: 200 },
},
},
};A higher runs value optimizes for frequent calls; a lower value optimizes for deployment size.
module.exports = {
solidity: {
version: "0.8.24",
settings: {
optimizer: { enabled: true, runs: 200 },
},
},
};Multiple Compiler Versions
If different contracts need different Solidity versions, list several compilers:
module.exports = {
solidity: {
compilers: [
{ version: "0.8.24" },
{ version: "0.7.6" },
],
},
};Hardhat picks a matching compiler for each file based on its pragma.
module.exports = {
solidity: {
compilers: [
{ version: "0.8.24" },
{ version: "0.7.6" },
],
},
};Reading Compiler Warnings
The compiler reports errors (which stop the build) and warnings (which do not). Common warnings include:
- Unused local variables.
- Shadowed declarations.
- Functions that could be marked
vieworpure.
Treat warnings seriously — they often hint at real bugs.
Using the ABI Later
Once compiled, you import the artifact in scripts or tests to attach to a contract:
const artifact = require("./artifacts/contracts/Greeter.sol/Greeter.json");
console.log(artifact.abi);Tools like ethers.js use this ABI to encode and decode calls correctly.
const artifact = require("./artifacts/contracts/Greeter.sol/Greeter.json");
console.log(artifact.abi);Forcing a Recompile
By default Hardhat skips files that have not changed. To rebuild everything without cleaning, pass the force flag:
npx hardhat compile --forceThis is useful after changing compiler settings, which the incremental cache may not detect on its own.
npx hardhat compile --forceQuick Check
Test your understanding of compilation in Hardhat.
Recap
You learned how Hardhat compiles contracts.
npx hardhat compilebuilds all contracts and downloads the right solc.- Artifacts (ABI + bytecode) land in
artifacts/; incremental builds usecache/. npx hardhat cleanremoves stale output.- The optimizer and multiple compiler versions are configured in
hardhat.config.js. - Always fix warnings — they often reveal bugs.
คำถามที่พบบ่อย
บทเรียน “การคอมไพล์สัญญา” ฟรีหรือไม่
ใช่ — ข้อความเต็มของ “การคอมไพล์สัญญา” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Web3 & DApp Development Fundamentals ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Web3 & DApp Development Fundamentals มีบทเรียนทั้งหมด 4 บทเรียน
คุณจะเรียนรู้อะไรในบทเรียน “การคอมไพล์สัญญา”
อาร์ติแฟกต์จากการสร้าง คุณปฏิบัติ Web3 & DApp Development Fundamentals ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน
คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Web3 & DApp Development Fundamentals หรือไม่
ไม่จำเป็นต้องมีประสบการณ์มาก่อน Web3 & DApp Development Fundamentals บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน
บทเรียน “การคอมไพล์สัญญา” ใช้เวลานานแค่ไหน
บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย
ฉันเขียนและรันโค้ดในบทเรียน Web3 & DApp Development Fundamentals นี้ได้ไหม
ได้ บทเรียน Web3 & DApp Development Fundamentals ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ