Install

Recommended Hardware: 8 Cores, 16GB RAM, 250GB of storage (NVME)

Chain ID: dymension_1100-1 | Latest Version Tag: v3.2.0

Dependencies Installation

Update system and install build tools

sudo apt update && sudo apt upgrade -y
sudo apt install curl git wget htop tmux build-essential jq make lz4 gcc unzip -y

Install GO

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

Manual installation

Come up with the name of your node and replace it instead <your_moniker>

Download binary files

Initialize the node

Set node configuration

Create a service

Download latest chain snapshot

Start service and check the logs

Create wallet

Create validator

Last updated