跳至主要內容
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
智能合约开发的技术栈

智能合约的编程语言

Solidity: https://learnblockchain.cn/docs/solidity/

相关资料: https://guide.pseudoyu.com/docs/study_path/

智能合约的技术栈

Hardhat

https://hardhat.org/

Truffle

https://trufflesuite.com/docs/truffle/


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