Swisstronik

How To Install Full Node Swisstronik Testnet

Official Docs

https://swisstronik.gitbook.io/swisstronik-docs

Setting up vars

Your Nodename (validator) that will shows in explorer

NODENAME=<Your_Nodename_Moniker>

Save variables to system

echo "export NODENAME=$NODENAME" >> $HOME/.bash_profile
if [ ! $WALLET ]; then
	echo "export WALLET=wallet" >> $HOME/.bash_profile
fi
echo "export SWISSTRONIK_CHAIN_ID=swisstronik_1291-1" >> $HOME/.bash_profile
source $HOME/.bash_profile

Update packages

sudo apt update && sudo apt upgrade -y

Install dependencies

Install go

Download and build binaries

Init app

Download configuration

Set the minimum gas price and Peers, Filter peers/ MaxPeers

Disable indexing

Config pruning

Create service

Register and start service

Last updated