乐趣区

关于区块链:第四讲以太坊智能合约开发框架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

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/

退出移动版