Here’s a high-level overview of the steps:
sudo apt update
sudo apt install build-essential git curl jq
wget <https://golang.org/dl/go1.20.3.linux-amd64.tar.gz>
sudo tar -C /usr/local -xzf go1.20.3.linux-amd64.tar.gz
echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.bashrc
source ~/.bashrc
git clone <https://github.com/ingenuity-build/quicksilver>
cd quicksilver
git checkout vX.Y.Z # Replace with the latest release version
make install
Initialize the node and set up configuration:
quicksilverd init <moniker-name> --chain-id <testnet-name>
Get the genesis file for your desired testnet:
wget <genesis-file-url> -O ~/.quicksilverd/config/genesis.json