💻Installation
Server preparation
apt update && apt upgrade -yapt install curl iptables build-essential git wget jq make gcc nano tmux htop nvme-cli pkg-config libssl-dev libleveldb-dev tar clang bsdmainutils ncdu unzip libleveldb-dev -yInstall GO
ver="1.19.1"
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 versionNode installation
Setup validator name
git clone https://github.com/ingenuity-build/quicksilver && cd quicksilver
wget https://github.com/quicksilver-zone/quicksilver/releases/download/v1.8.1/quicksilverd-v1.8.1-amd64
chmod +x quicksilverd-v1.8.1-amd64
mv quicksilverd-v1.8.1-amd64 /root/go/bin/quicksilverd
quicksilverd version --long | grep -e version -e commit -e build_tags
#version: v1.8.1
#commit: d998af810147d0d45e29e4ae19aff41569d834caWe initialize the node to create the necessary configuration files
Download Genesis
At this stage, we can download the address book
Set up node configuration
(OPTIONAL) Set up pruning
(OPTIONAL) Set up indexer
(OPTIONAL) Enable/Disable Snapshots
Create a service file
Last updated