- Guide
- Addrbook
- Genesis File
- Peers
- State Sync
- Explorer
Update system and install build dependencies
sudo apt update
sudo apt-get install git curl build-essential make jq gcc snapd chrony lz4 tmux unzip bc -y
Install Go
rm -rf $HOME/go
sudo rm -rf /usr/local/go
cd $HOME
curl https://dl.google.com/go/go1.20.1.linux-amd64.tar.gz | sudo tar -C/usr/local -zxvf -
cat <<'EOF' >>$HOME/.profile
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
EOF
source $HOME/.profile
go version
Download and Install Binaries
cd $HOME
mkdir -p /root/go/bin/
wget https://github.com/sungphamdinh/Self-Chain-Releases/releases/download/mainnet-v1.0.0/selfchaind-linux-amd64
mv selfchaind-linux-amd64 selfchaind
chmod +x selfchaind
mv selfchaind /root/go/bin/
selfchaind version
Initialize Node
selfchaind init NodeName --chain-id=self-1
selfchaind config chain-id self-1
selfchaind config keyring-backend os
Download Genesis File
curl -Ls https://files.nomadvalidator.com/selfchain/genesis.json > $HOME/.selfchain/config/genesis.json
Download Addrbook File
curl -Ls https://files.nomadvalidator.com/selfchain/addrbook.json > $HOME/.selfchain/config/addrbook.json
Create Service Daemon
sudo tee /etc/systemd/system/selfchaind.service > /dev/null <<EOF
[Unit]
Description=selfchaind Daemon
After=network-online.target
[Service]
User=$USER
ExecStart=$(which selfchaind) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable selfchaind
Start Node
sudo systemctl restart selfchaind
journalctl -u selfchaind -f
Download Addrbook File
curl -Ls https://files.nomadvalidator.com/selfchain/addrbook.json > $HOME/.selfchain/config/addrbook.json
Restart Node
sudo systemctl restart selfchaind
journalctl -u selfchaind -f
Download Genesis File
curl -Ls https://files.nomadvalidator.com/selfchain/genesis.json > $HOME/.selfchain/config/genesis.json
Set Peers
Restart Node
sudo systemctl restart selfchaind
journalctl -u selfchaind -f
Stop Node And Reset
Configure State Sync