KYVE
How To Install Full Node KYVE MAINNET
Setting up vars
Your Nodename (validator) that will shows in explorer
NODENAME=<Your_Nodename_Moniker>
KYVE_PORT=31Save variables to system
echo "export NODENAME=$NODENAME" >> $HOME/.bash_profile
if [ ! $WALLET ]; then
echo "export WALLET=wallet" >> $HOME/.bash_profile
fi
echo "export KYVE_CHAIN_ID=kyve-1" >> $HOME/.bash_profile
echo "export KYVE_PORT=${KYVE_PORT}" >> $HOME/.bash_profile
source $HOME/.bash_profileUpdate packages
sudo apt update && sudo apt upgrade -yInstall dependencies
sudo apt install curl build-essential git wget jq make gcc tmux net-tools ccze -yInstall go
Download and build binaries
Config app
set custom ports
Init app
Download configuration
Set seeds and peers
Disable indexing
Config pruning
Set minimum gas price
Create service
Register and start service
Last updated