W1-2 Hardhat
W1-2 Hardhat
介绍
- 编译、部署、测试和调试以太坊应⽤的开发环境,围绕 task(任务)和plugins(插件)概念设计
- 在命令⾏运⾏Hardhat时,都是在运⾏任务,例如:
npx hardhat compile
正在运⾏compile任务 - Hardhat node:开发区块链,提供本地模拟的链上环境
- ⽂档
- 官⽅⽂档:https://hardhat.org/getting-started/
- 中⽂⽂档:https://learnblockchain.cn/docs/hardhat/getting-started/
使用步骤
- 创建工程
- 安装:
npm install —save hardhat
- 在⽬录下执⾏
npx hardhat
创建项⽬ - 查看所有任务:
npx hardhat
- 安装:
- 合约编译
- 运行
npx hardhat compile
- 运行
- 配置网络
- 在
hardhat.config
文件下进行networks参数配置
- 在
- 部署脚本
- 在
scripts
目录下编写部署脚本
- 在
- 启动Hardhat Node⽹络
- 执行
npx hardhat node
- 执行
- 执⾏部署
- 执行
npx hardhat run scripts/deploy.js --network localhost
- 执行
- 测试
- 执行
npx hardhat test
- 执行
hardhat实战
- 列出所有可以执行的hardhat任务
npx hardhat
- 调试利器
- 进入命令行调试
npx hardhat console --network localhost
- fork主网/测试网进行调试
npx hardhat node --fork https://rinkeby.infura.io/v3/<key>
- 进入命令行调试
- 灵活参数部署,利用hardhat可以在代码中引用
- 设置
HARDHAT_NETWORK
环境变量 - 使用node部署
- 设置
- 代码扁平 (用于合约验证)
npx hardhat flatten xxx.sol
- 代码验证
require("@nomiclabs/hardhat-etherscan");
npx hardhat verify address --network xxx
- ABI导出
require('hardhat-abi-exporter')
yarn run hardhat export-abi
This post is licensed under CC BY 4.0 by the author.