Symphony

Website: https://orchestralabs.org/ Twitter: https://x.com/orchestra_labs Discord: https://discord.gg/qp2mHg39Hb

1. Hardware requirement

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

2. Server preparation

Copy

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

3. Install GO

Copy

#Install GO
ver="1.22.2"
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

4. Download and build binaries

Copy

5. Initialize the node

Copy

Copy

Copy

Copy

Copy

5. Create Service and Start node

Copy

Copy

6. Wallet

Add New Wallet Key - Save seed

Copy

Recover existing key

Copy

List All Keys

Copy

6.1 Query Wallet Balance

Copy

6.2 Check sync status

False is synced

Copy

6.3 Create Validator

Change your info

Copy

6.4 Edit Existing Validator

Change your info

Copy

6.5 Delegate Token to your own validator

Copy

6.6 Withdraw rewards and commission from your validator

Copy

6.7 Unjail validator

Copy

6.8 Send Token to another wallet

Copy

6.9 Services Management

Copy

7. Backup Validator

Important

Copy

8. Snapshot

Copy

9. Remove node

Copy

Last updated