Install

Specify the name of your “MONIKER” (validator) which will be visible in the explorer

MONIKER="YOUR_MONIKER_NAME"

Update system and install tools

sudo apt update && sudo apt upgrade -y
sudo apt install curl build-essential git jq lz4 ncdu btop -y

Install GO

cd $HOME
version="1.23.6"wget "https://golang.org/dl/go$version.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$version.linux-amd64.tar.gz"
rm "go$version.linux-amd64.tar.gz"
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
source $HOME/.bash_profile

Install Cosmovisor

go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@latest

Install Ignite

curl https://get.ignite.com/cli! | bashignite version

Install WASMVM

Download and install

Initialize Node

Please replace YOUR_MONIKER with your own moniker.

Create key

Config Keyring

Config port, pruning, minimum gas price, enable prometheus and enable indexing

Configure Seed

Download Genesis

Configure addrbook

Launch Node

Configure Cosmovisor Folder

Create Cosmovisor folders and load the node binary.

Create Service File

Start Node Service

Last updated