Skip to main content

Testnet

Chain ID: union-testnet-6 | Node Version: v0.19.0

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 $HOME/go/bin/
wget https://files.nomadvalidator.com/union-t/uniond
chmod +x uniond
mv uniond $HOME/go/bin/
uniond version
Initialize Node
uniond init NodeName --chain-id=union-testnet-6 --home=$HOME/.union
uniond config chain-id union-testnet-6 --home=$HOME/.union
uniond config keyring-backend os --home=$HOME/.union
Download Genesis File
curl -Ls https://files.nomadvalidator.com/union-t/genesis.json > $HOME/.union/config/genesis.json
Download Addrbook File
curl -Ls https://files.nomadvalidator.com/union-t/addrbook.json > $HOME/.union/config/addrbook.json
Create Service Daemon
sudo tee /etc/systemd/system/uniond.service > /dev/null <<EOF
[Unit]
Description=union Daemon
After=network-online.target
[Service]
User=$USER
ExecStart=$(which uniond) start --home=$HOME/.union
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable uniond
Start Node
sudo systemctl restart uniond
sudo journalctl -u uniond -f