Skip to main content

Testnet

Chain ID: self-dev-1 | Node Version: last

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://files.nomadvalidator.com/self-t/selfchaind
chmod +x selfchaind
mv selfchaind /root/go/bin/
selfchaind version
Initialize Node
selfchaind init NodeName --chain-id=self-dev-1
selfchaind config chain-id self-dev-1
selfchaind config keyring-backend os
Download Genesis File
curl -Ls https://files.nomadvalidator.com/self-t/genesis.json > $HOME/.selfchain/config/genesis.json
Download Addrbook File
curl -Ls https://files.nomadvalidator.com/self-t/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