Arkhadian

How To Install Full Node Arkhadian Mainnet

Setting up vars

Your Nodename (validator) that will shows in explorer

NODENAME=<Your_Nodename_Moniker>
ARKHADIAN_PORT=30

Save variables to system

echo "export NODENAME=$NODENAME" >> $HOME/.bash_profile
if [ ! $WALLET ]; then
	echo "export WALLET=wallet" >> $HOME/.bash_profile
fi
echo "export ARKHADIAN_CHAIN_ID=arkh" >> $HOME/.bash_profile
echo "export ARKHADIAN_PORT=${ARKHADIAN_PORT}" >> $HOME/.bash_profile
source $HOME/.bash_profile

Update packages

sudo apt update && sudo apt upgrade -y

Install dependencies

sudo apt install curl build-essential git wget jq make gcc tmux net-tools -y

Install go

Download and build binaries

Config app

set custom port

Init app

Download configuration

Set seeds and peers

Set minimum gas price

Config pruning

Create service

Register and start service

Last updated