Deploy contract with Hardhat th.
kanthakran
Posted on March 8, 2022
บทความนี้เหมาะสำหรับคนที่มีความรู้เรื่องการ deploy smart contract อยู่แล้ว
- แต่ปัญหาที่เจอ Hardhat ไม่ support บาง chain เช่น klaytn ใช้ truffle เหมือนเดิมดีกว่า
Hardhat vs Truffle
ส่วนตัวผมนั้นเคยใช้ Truffle เป็นประจำอยู่แล้ว จากประสบการณ์ การเขียน smart contract มันมี step เดิมๆ ที่ต้องใช้ tool 2 ตัวนี้
- test
- run test chain (อาจจะใช้ ganache หรือ testnet ก็ได้)
- complie
- deploy
Setup Hardhat
ใช้ npm ธรรมดาเลย
npm install --save-dev hardhat
Debug
ข้อดีของ hardhat เวลา debug เราสามารถใช้ console.log ได้เลยซึ่จะมีในตัวอย่างตอนที่เราสร้างขึ้นมาตาม command ข้างล่าง
Command
Create project
npx hardhat
ตรงนี้แล้วแต่จะเลือกเลยจะใช้ อะไรผมชอบ typescript
Compile
npx hardhat compile
Test
npx hardhat test
Run test chain
npx hardhat node
Config Hardhat
Deploy contract
npx hardhat run scripts/sample-script.js
or
npx hardhat run scripts/sample-script.js --network localhost
# สำหรับเลือก network
หลังจาก deploy มัน auto verify code ให้เลยถ้าจะปิดหาวิธีเองนะ
สรุป
รวมๆ เป็น tool ที่ครบเครื่องมากๆ ในการ dev ไม่ว่าจะเป็นตัว plugin verify code, ตัว run chain test , test lib ต่างๆ รวมถึงตัว debug สุดล้ำ
- ข้อเสียอย่างเดียวเลยคือ ไม่ได้ support ทุก chain แต่จะ dev ในนี้ไป deploy ใน truffle ก็ไม่เสียหาย hardhat ก็เทสไปใช้เท่าที่ใช้ได้ 555
💖 💪 🙅 🚩
kanthakran
Posted on March 8, 2022
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
githubcopilot AI Innovations at Microsoft Ignite 2024 What You Need to Know (Part 2)
November 29, 2024