💽Running your full node

Running node on Ubuntu 18.04

Update actual packages:

apt update

Install git package:

apt install git

Clone the go-blackchain repository:

git clone https://github.com/black-networks/go-blackchain

Change to the binaries directory:

cd go-blackchain/build/bin

Move the binary to another directory:

mv gblack /usr/local/bin

Start node and wait for synchronization

gblack -http -networkid 1488 -allow-insecure-unlock -http.addr 0.0.0.0 -http.corsdomain="" -http.api web3,eth,debug,personal,net,txpool -http.port 9000 -vmdebug -syncmode full -gcmode archive -txlookuplimit=0 -cache.preimages -http.vhosts="" -rpc.allow-unprotected-txs -ws -ws.port 8546 -ws.api eth,net,web3 -ws.addr 0.0.0.0 -port 58567

Last updated