共计 382 个字符,预计需要花费 1 分钟才能阅读完成。
Hardhat 入门
装置
npm install --save-dev hardhat
初始化我的项目
npx hardhat
编译合约
npx hardhat compile
测试合约
npx hardhat test
部署合约
npx hardhat run scripts/deploy.ts
启动一个本地的以太坊
npx hardhat node
部署合约到本地的以太坊
npx hardhat run scripts/deploy.ts --network localhost
Hardhat 官网
https://hardhat.org/
官网教程:https://hardhat.org/tutorial
中文教程:https://learnblockchain.cn/docs/hardhat/getting-started/#%E6%A6%82%E8%BF%B0
博客
https://zhang555.github.io/
正文完