DAPP本地环境部署
DAPP
dApp在私有测试区块链环境下的部署过程,过程中使用了他人的智能合约及前端程序。
环境准备
GO环境
访问Golang官网并下载:https://golang.org/doc/install
1 | https://golang.org/dl/go1.15.7.linux-amd64.tar.gz |
GO <1.13无法从源码安装go-ethereum
。
安装geth
- 下载
go-ethereum
:1
2
3
4git clone https://github.com/ethereum/go-ethereum.git
cd go-ethereum
make geth # make all
echo 'export PATH=$PATH:<PWD>/build/bin' >> ~/.bashrc