Seda Node Installation Instructions
The guide was written by the author of the channel @Dikcicrypto
CPU: 4 Core
RAM: 8 Gb
SSD: 200 Gb
OS: Ubuntu 20.04 LTS
Outbound - allow all traffic
Inbound - open the following ports :
1317 - REST
26657 - TENDERMINT_RP
26656 - Cosmos
Running as a Provider? Add these specific ports:
22221 - provider port
22231 - provider port
22241 - provider port
Filling out the form for the validator
Required packages installation
sudo apt update
sudo apt upgrade -y
sudo apt install -y curl git jq lz4 build-essential
sudo apt install -y unzip logrotate git jq sed wget curl coreutils systemd
Go installation.
sudo rm -rf /usr/local/go
curl -Ls https://go.dev/dl/go1.21.7.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)
go version
MONIKER="YOUR MONIKER"
cd $HOME
rm -rf seda-chain
git clone https://github.com/sedaprotocol/seda-chain.git
cd seda-chain
git checkout v0.0.5
make build
mkdir -p $HOME/.seda-chain/cosmovisor/genesis/bin
mv build/seda-chaind $HOME/.seda-chain/cosmovisor/genesis/bin/
rm -rf build
sudo ln -s $HOME/.seda-chain/cosmovisor/genesis $HOME/.seda-chain/cosmovisor/current -f
sudo ln -s $HOME/.seda-chain/cosmovisor/current/bin/seda-chaind /usr/local/bin/seda-chaind -f
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@v1.5.0
sudo tee /etc/systemd/system/seda.service > /dev/null << EOF
[Unit]
Description=seda node service
After=network-online.target
[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
Environment="DAEMON_HOME=$HOME/.seda-chain"
Environment="DAEMON_NAME=seda-chaind"
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/.seda-chain/cosmovisor/current/bin"
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable seda.service
seda-chaind config chain-id seda-1-testnet
seda-chaind config keyring-backend test
seda-chaind config node tcp://localhost:17357
seda-chaind init $MONIKER --chain-id seda-1-testnet
curl -Ls https://snapshots.kjnodes.com/seda-testnet/genesis.json > $HOME/.seda-chain/config/genesis.json
curl -Ls https://snapshots.kjnodes.com/seda-testnet/addrbook.json > $HOME/.seda-chain/config/addrbook.json
sed -i -e "s|^seeds *=.*|seeds = \"3f472746f46493309650e5a033076689996c8881@seda-testnet.rpc.kjnodes.com:17359\"|" $HOME/.seda-chain/config/config.toml
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0aseda\"|" $HOME/.seda-chain/config/app.toml
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/.seda-chain/config/app.toml
sed -i -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:17358\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:17357\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:17360\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:17356\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":17366\"%" $HOME/.seda-chain/config/config.toml
sed -i -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:17317\"%; s%^address = \":8080\"%address = \":17380\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:17390\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:17391\"%; s%:8545%:17345%; s%:8546%:17346%; s%:6065%:17365%" $HOME/.seda-chain/config/app.toml
curl -L https://snapshots.kjnodes.com/seda-testnet/snapshot_latest.tar.lz4 | tar -Ilz4 -xf - -C $HOME/.seda-chain
[[ -f $HOME/.seda-chain/data/upgrade-info.json ]] && cp $HOME/.seda-chain/data/upgrade-info.json $HOME/.seda-chain/cosmovisor/genesis/upgrade-info.json
sudo systemctl start seda.service && sudo journalctl -u seda.service -f --no-hostname -o cat
Before creating a validator, enter the command and check that you have false. This means that the Node has synchronized and you can create a validator:
seda-chaind status 2>&1 | jq .SyncInfo
seda-chaind q bank balances $(seda-chaind keys show wallet -a)
Please enter your details below in quotation marks where required
seda-chaind tx staking create-validator \
--amount 1000000aseda \
--pubkey $(seda-chaind tendermint show-validator) \
--moniker "YOUR_MONIKER_NAME" \
--identity "FFB0AA51A2DF5955 " \
--details "i love @Dikcicrypto" \
--chain-id seda-1-testnet \
--commission-rate 0.05 \
--commission-max-rate 0.20 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--from wallet \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0aseda \
-y
There have been no updates at the moment, as soon as they come out, we will immediately add them to this section.
Current network:seda-1-testnet
Current version:v0.0.5
Check balance
seda-chaind q bank balances $(seda-chaind keys show wallet -a)
CHECK SERVICE LOGS
sudo journalctl -u seda.service -f --no-hostname -o cat
RESTART SERVICE
sudo systemctl restart seda.service
GET VALIDATOR INFO
seda-chaind status 2>&1 | jq .ValidatorInfo
DELEGATE TOKENS TO YOURSELF
seda-chaind tx staking delegate $(seda-chaind keys show wallet --bech val -a) 1000000aseda --from wallet --chain-id seda-1-testnet --gas-adjustment 1.4 --gas auto --gas-prices 0aseda -y
REMOVE NODE Please, before proceeding with the next step! All chain data will be lost! Make sure you have backed up your priv_validator_key.json!
cd $HOME
sudo systemctl stop seda.service
sudo systemctl disable seda.service
sudo rm /etc/systemd/system/seda.service
sudo systemctl daemon-reload
rm -f $(which seda-chaind)
rm -rf $HOME/.seda-chain
rm -rf $HOME/seda-chain