前言
智能合约(Smart Contract)存在于以太坊区块链中,任何人都可以通过支付一定量的Gas fee与之交互,这个系列文章将介绍作为开发者,如何构建一个DApp:
- 使用Solidity编写一个智能合约。
- 使用Hardhat将智能合约部署到以太坊网络中。
- 基于Reac构建一个客户端网站来与区块链上的智能合约进行交互。
一、环境搭建
1.安装hardhat
安装node/npm,如果没有安装的话点这里。 新建一个你的DApp工作目录例如myweb3,cd到该目录下执行如下命令:
cd myweb3
npm init -y
npm install --save-dev hardhat
2.测试是否安装成功
在工作目录下运行:
npx hardhat
在这里如果你将yarn和npm一起安装,可能会收到像npm ERR! could not determine executable to run 这样的错误,可以运行以下命令来继续:
yarn add hardhat
npx hardhat
选择创建一个示例项目,全都选择“是”,示例项目会要求你安装hardhat-waffle 和hardhat-ethers ,可用一下命令安装:
npm install --save-dev @nomiclabs/hardhat-waffle ethereum-waffle chai @nomiclabs/hardhat-ethers ethers
运行以下命令,在控制台应输出像0xa0Ee7A142d267C1f36714E4a8F75612F20a79720 的字符串,这是hardhat为我们生成的用于模拟真实用户的以太坊地址。
npx hardhat accounts
最后,为了确定一切都安装就绪,运行:
npx hardhat compile
然后运行:
npx hardhat test
你应在控制台看到:
|