Skip to main content

Node Installation Guide

Chain ID: osmosis-1 | Current Node Version: v23.0.0

Install dependencies

# Install dependencies for building from source
sudo apt update
sudo apt install -y curl git jq lz4 build-essential

# Install Go
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

Download and build binaries

Install Cosmovisor and create a service

Initialize the node

Start service and check the logs

:::