βœ…SEDA

Website: https://seda.xyz/

Twitter: https://twitter.com/sedaprotocol

Discord: https://discord.gg/seda

Explorer: https://explorer.nodesync.top/SEDA-Mainnet

API: https://seda-api.nodesync.top

RPC: https://seda-rpc.nodesync.top

1. Minimum hardware requirement

4 Cores, 8G Ram, 160G SSD, Ubuntu 22.04

2. Server preparation

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

3. Install GO

if ! which go ; then
#Install GO
ver="1.22.4"
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
fi

4. Download and build binaries

5. Initialize the node

5. Create Service and Start node

6. Wallet

Add New Wallet Key - Save seed

Recover existing key

List All Keys

6.1 Query Wallet Balance

6.2 Check sync status

False is synced

6.3 Create Validator

Obtain your validator public key by running the following command:

The output will be similar to this (with a different key):

{"@type":"/cosmos.crypto.ed25519.PubKey","key":"lR1d7YBVK5jYijOfWVKRFoWCsS4dg3kagT7LB9GnG8I="}

Then, create a file named validator.json with the following content:

Change your info, from "pubkey" to "details" and Save them

Finally, we're ready to submit the transaction to create the validator:

6.4 Delegate Token to your own validator

6.6 Withdraw rewards and commission from your validator

6.7 Unjail validator

6.8 Services Management

7. Snapshot

8. Backup Validator

Important

9. Remove node

Last updated