跳至主要內容
Hardhat入门

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


程序员老张小于 1 分钟以太坊智能合约Hardhat