Installation guide

🟢 Update system

sudo apt update && \
sudo apt install curl git jq build-essential gcc unzip wget lz4 -y

🟢 Install go

cd $HOME && \
ver="1.21.3" && \
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz" && \
sudo rm -rf /usr/local/go && \
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz" && \
rm "go$ver.linux-amd64.tar.gz" && \
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile && \
source $HOME/.bash_profile && \
go version

🟢 Download the files

git clone -b v0.1.0 https://github.com/0glabs/0g-chain.git
./0g-chain/networks/testnet/install.sh
source .profile

🟢 System

🟢 Create service file

🟢 Node Variables edit

🟢 Genesis and Adressbook

🟢 Seed

🟢 Start the node

🟢 Log

🟢 Create wallet

Recover existing wallet

  • Create new wallet

🟢 Get EVM adress

🟢 Sync info

imagearrow-up-right

🟢 Create validator (Change moniker and wallet)

🟢 Faucet

🟢 Delegate

🟢 Unjail

🟢 Check balance

🟢 Check validator info

🟢 Delete node

Last updated