Quicksilver
Installation Guide for the mainnet
Update the Ubuntu
sudo apt update && sudo apt upgrade -yInstall the essentials
sudo apt install curl git jq lz4 build-essential -yInstall Go
sudo rm -rf /usr/local/go
sudo curl -Ls https://go.dev/dl/go1.19.4.linux-amd64.tar.gz | sudo tar -C /usr/local -xz
tee -a $HOME/.profile > /dev/null << EOF
export PATH=$PATH:/usr/local/go/bin
EOF
source $HOME/.profileEnvironment Variables
NODENAME=nkbblocks
echo "export NODENAME=$NODENAME" >> $HOME/.bash_profile
if [ ! $WALLET ]; then
echo "export WALLET=wallet" >> $HOME/.bash_profile
fi
echo "export SEI_CHAIN_ID=quicksilver-1" >> $HOME/.bash_profile
source $HOME/.bash_profileDownload and build binaries
Create a Service
Initialize node
Download genesis Fetch genesis.json into quicksilverd's config directory (default: ~/.quicksilverd)
genesis.json into quicksilverd's config directory (default: ~/.quicksilverd)Set seeds
Define minimum gas prices
Set pruning
Set custom ports in config.toml & app.toml
Download latest chain snapshot
Restart service & Check logs
Last updated