BSC链节点搭建

BSC官网文档: https://docs.binance.org/smart-chain/developer/fullnode.html

1.确保您已安装Go 1.13+并已添加GOPATH到PATH环境变量中

这里具体可以参考Heco的文章

2.下载源代码

git clone https://github.com/binance-chain/bsc

cd bsc

make geth

cd /bsc/build/bin

3.下载配置文件

注意:不同的配置文件接入的网络不同

下载genesis.json并config.toml通过:

主网:

wget https://github.com/binance-chain/bsc/releases/download/v1.1.0-beta/mainnet.zip
unzip mainnet.zip

测试网:

wget https://github.com/binance-chain/bsc/releases/download/v1.1.0-beta/testnet.zip
unzip testnet.zip

./*geth --datadir node init genesis.json

会看到以下输出

INFO [05-19|14:53:17.468] Allocated cache and file handles         database=/Users/huangsuyu/Downloads/bsc/node/geth/chaindata cache=16.00MiB handles=16
INFO [05-19|14:53:17.498] Writing custom genesis block
INFO [05-19|14:53:17.501] Persisted trie from memory database      nodes=21 size=56.84KiB time=357.915µs gcnodes=0 gcsize=0.00B gctime=0s livenodes=1 livesize=-574.00B
INFO [05-19|14:53:17.502] Successfully wrote genesis state         database=chaindata hash=7d79cc…fb0d1e
INFO [05-19|14:53:17.503] Allocated cache and file handles         database=/Users/huangsuyu/Downloads/bsc/node/geth/lightchaindata cache=16.00MiB handles=16
INFO [05-19|14:53:17.524] Writing custom genesis block
INFO [05-19|14:53:17.525] Persisted trie from memory database      nodes=21 size=56.84KiB time=638.396µs gcnodes=0 gcsize=0.00B gctime=0s livenodes=1 livesize=-574.00B
INFO [05-19|14:53:17.528] Successfully wrote genesis state         database=lightchaindata hash=7d79cc…fb0d1e

4.启动全节点

nohup ./*geth --config ./config.toml --datadir ./node --cache 18000 --rpc.allow-unprotected-txs --txlookuplimit 0 &

5.查看ipc

./geth attach ipc:/bsc/build/bin/node/geth.ipc

猜你喜欢

转载自blog.csdn.net/JST888_K/article/details/116944879