1.添加 PPA 源,安装 go-ethereum 稳定版
sudo add-apt-repository -y ppa:ethereum/ethereum
2.更新
sudo apt update
3.安装geth
sudo apt install ethereum -y
4.查看版本信息
geth version
Prysm 是以太坊权益证明共识规范的实现,接下来介绍如何安装。
按如下目录树创建文件夹,这里我们在~
目录下创建ethereum
文件夹
ethereum
┣ consensus
┣ execution
cd ~
mkdir ethereum && cd ethereum
mkdir consensus
mkdir execution
进入consensus目录下,下载prysm.sh
cd consensus
mkdir prysm && cd prysm
curl https://raw.githubusercontent.com/prysmaticlabs/prysm/master/prysm.sh --output prysm.sh && chmod +x prysm.sh
可以使用像这样的在线生成器,将生成的数据复制粘贴到jwt.hex
中,这里将jwt.hex
与prysm.sh
放在同一个目录下
sudo vim jwt.hex
# 7673a018a5d508bf158bdf54254ef40d8b71c3d8477904715ab9fba20ef7f905
有关参数定义,请参阅 Geth 的命令行选项。
geth --http --http.api eth,net,engine,admin --authrpc.jwtsecret ~/ethereum/consensus/jwt.hex
cd ~/ethereum/consensus
./prysm.sh beacon-chain --execution-endpoint=http://localhost:8551 --jwt-secret=~/ethereum/consensus/jwt.hex