Installation

Minimum hardware Requirements

The following requirements are recommended for running SYMPHONY:

CPU : 4x CPUs
Ram : 8GB RAM 
Storage: 100GB of storage (SSD or NVME)

Install

1. Server preparation

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

2. Install GO

#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

3. Download and build binaries

4. 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 Fund a Wallet

To create a validator, you need to fund the previously created wallet using https://testnet.ping.pub/symphony/faucet

To check wallet balance use command below

6.2 Check sync status

False is synced

6.3 Create Validator

Change your info here

6.4 Edit Existing Validator

Change your info

6.5 Delegate Token to your own validator

6.6 Withdraw rewards and commission from your validator

6.7 Unjail validator

6.8 Send Token to another wallet

6.9 Services Management

7. Backup Validator

Important

8. Snapshot

9. Remove node

Last updated