githubEdit

Installation

install dependencies, if needed

sudo apt update && sudo apt upgrade -y

Install GO , if you already install go you can skip to next step

sudo rm -rf /usr/local/go
curl -L https://go.dev/dl/go1.21.6.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local
echo 'export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin' >> $HOME/.bash_profile
source .bash_profile

Sett Variable

echo "export WALLET="wallet"" >> $HOME/.bash_profile
echo "export MONIKER="Node"" >> $HOME/.bash_profile
echo "export WARDEN_CHAIN_ID="buenavista-1"" >> $HOME/.bash_profile
echo "export WARDEN_PORT="15"" >> $HOME/.bash_profile
source $HOME/.bash_profile

change "MONIKER=Node" to your own name also WARDEN_PORT="15" to your own port WALLET="wallet" to your own wallet name

Download Warden Binaries

Config and initialize your node

Download Genesis and Addrbook

Add Seed

Sett Minimum Gas Price

Sett Pruning

Sett custom port on app.toml

Sett Custom port on config.toml

Create Service

Enable and Start Service

Your node has been running but i suggets you to use snapshot, you can download snapshot from itrocketarrow-up-right , RuangNodearrow-up-right , NodeJumperarrow-up-right

Last updated