Hardhat
小于 1 分钟
Hardhat
安装
npm install --save-dev hardhat
新建工程
npx hardhat init
编译工程
npx hardhat compile
测试工程
npx hardhat test
测试节点
npx hardhat node
清理缓存
npx hardhat clean
安装库
npm install @openzeppelin/contracts
部署
npx hardhat ignition deploy ./ignition/modules/Lock.js --network localhost
ignition
const { buildModule } = require("@nomicfoundation/hardhat-ignition/modules");
module.exports = buildModule("random", (m) => {
const c = m.contract("Your Contract Name");
return { c };
});