Home·Validation Tools·Seda Protocol
Seda Protocol logo
TESTNET
By LavenderFive

Setting up your validator node has never been so easy. Get your validator running in minutes by following step by step instructions.

#Setup validator name

ⓘ    Replace **YOUR_MONIKER_GOES_HERE** with your validator name
MONIKER="YOUR_MONIKER_GOES_HERE"

#Install dependencies

#Update system and install build tools

sudo apt -q update
sudo apt -qy install curl git jq lz4 build-essential
sudo apt -qy upgrade

#Install Go

sudo rm -rf /usr/local/go
curl -Ls https://go.dev/dl/go1.19.8.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local
eval $(echo 'export PATH=$PATH:/usr/local/go/bin' | sudo tee /etc/profile.d/golang.sh)
eval $(echo 'export PATH=$PATH:$HOME/go/bin' | tee -a $HOME/.profile)

#Download and build binaries

# Clone project repository
cd $HOME
rm -rf seda
git clone https://github.com/sedaprotocol/seda-chain seda
cd seda
git checkout v0.1.0-rc0

# Build binaries
make install

# Prepare binaries for Cosmovisor
mkdir -p $HOME/.sedad/cosmovisor/genesis/bin
mv ~/go/bin/sedad $HOME/.sedad/cosmovisor/genesis/bin/
rm -rf build

#Install Cosmovisor and create a service

# Download and install Cosmovisor
go install cosmossdk.io/tools/cosmovisor/cmd/[email protected]

# Create service
sudo tee /etc/systemd/system/sedad.service > /dev/null << EOF
[Unit]
Description=osmosis node service
After=network-online.target

[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
WorkingDirectory=$HOME/.sedad
Restart=always
RestartSec=5
LimitNOFILE=65535
Environment="DAEMON_HOME=$HOME/.sedad"
Environment="DAEMON_NAME=sedad"
Environment="DAEMON_ALLOW_DOWNLOAD_BINARIES=false"
Environment="DAEMON_RESTART_AFTER_UPGRADE=true"
Environment="UNSAFE_SKIP_BACKUP=true"
Environment="PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:$HOME/.sedad/cosmovisor/current/bin"

[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable sedad

#Initialize the node

# Set node configuration
sedad config chain-id seda-1-dryrun
sedad config node tcp://localhost:25857

# Initialize the node
sedad init $MONIKER --chain-id seda-1-dryrun

# Download genesis and addrbook
curl -Ls https://raw.githubusercontent.com/sedaprotocol/seda-networks/main/mainnet/genesis.json > $HOME/.sedad/config/genesis.json
curl -Ls https://snapshots.lavenderfive.com/testnet-snapshots/seda/addrbook.json > $HOME/.sedad/config/addrbook.json

# Add seeds
seeds="[email protected]:26656"
sed -i -e "s|^seeds *=.*|seeds = \"$seeds\"|" $HOME/.sedad/config/config.toml

# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0aseda\"|" $HOME/.sedad/config/app.toml

# Set pruning
sed -i \
  -e 's|^pruning *=.*|pruning = "custom"|' \
  -e 's|^pruning-keep-recent *=.*|pruning-keep-recent = "100"|' \
  -e 's|^pruning-keep-every *=.*|pruning-keep-every = "0"|' \
  -e 's|^pruning-interval *=.*|pruning-interval = "19"|' \
  $HOME/.sedad/config/app.toml

# Set custom ports
sed -i -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:25858\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:25857\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:25860\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:25856\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":25866\"%" $HOME/.sedad/config/config.toml
sed -i -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:25817\"%; s%^address = \":8080\"%address = \":25880\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:25890\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:25891\"%; s%:8545%:25845%; s%:8546%:25846%; s%:6065%:25865%" $HOME/.sedad/config/app.toml

#Start service and check the logs

sudo systemctl start sedad && sudo journalctl -u sedad -f --no-hostname -o cat

#Sync

To catch up quickly, you can either use a snapshot or state sync

Chain ID:
seda-1-dryrun
Latest Version:
v0.1.0-rc0
Github:
sedaprotocol/seda-chain
Public endpoints
REST/LCD
testnet-rest.lavenderfive.com:443/seda
RPC
testnet-rpc.lavenderfive.com:443/seda
gRPC
testnet-seda.lavenderfive.com:443
WebSocket
wss://testnet-rpc.lavenderfive.com:443/seda/ws
Lavender Five
© 2022 Lavender.Five Nodes. All rights reserved.
Terms of Service.Privacy policy.Cookies policy.