Validator Node

Celestia Testnet guide

Validator Node Installation

Server preparation

sudo apt update && sudo apt upgrade -y
sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu gcc git jq chrony liblz4-tool -y

GO 1.24.1

cd $HOME
VER="1.24.1"
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"
[ ! -f ~/.bash_profile ] && touch ~/.bash_profile
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
source $HOME/.bash_profile
[ ! -d ~/go/bin ] && mkdir -p ~/go/bin

Build

Result

  • version: 6.4.4

  • commit: f6f11411


Initiation

Change <moniker> to your value, moniker is the name of your validator.


Create / recover wallet

Change <walletname> to the name of your wallet


Download genesis and addrbook

Result

  • 5ba7dc9ac4ee0ea1776c8f13dc45be84ffc2ef3ffbe8271e30b573134ecd61ea


Setup the minimum gas price and Peers


Pruning (optional)

Create a service file

Start

Create validator

Change walletName, YOUR_MONIKER_NAME, YOUR_KEYBASE_ID, YOUR_DETAILS and YOUR_WEBSITE_URL to your values

Delete node

Last updated