Seda Mainnet
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 upgradeInstall Go
sudo rm -rf /usr/local/go
curl -Ls https://go.dev/dl/go1.22.11.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-chain
git clone https://github.com/sedaprotocol/seda-chain.git
cd seda-chain
git checkout v0.1.5
# Build binaries
make build
# Prepare binaries for Cosmovisor
mkdir -p $HOME/.sedad/cosmovisor/genesis/bin
mv build/sedad $HOME/.sedad/cosmovisor/genesis/bin/
rm -rf build
# Create application symlinks
ln -s $HOME/.sedad/cosmovisor/genesis $HOME/.sedad/cosmovisor/current -f
sudo ln -s $HOME/.sedad/cosmovisor/current/bin/sedad /usr/local/bin/sedad -fInstall Cosmovisor and create a service
Set node configuration
Initialize the node
Start service and check the logs
Last updated
