Installation
Manual Installation
VER="1.21.1"
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"
[ ! -d ~/go/bin ] && mkdir -p ~/go/bin
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bashrc
source $HOME/.bashrc
Download Binary
cd $HOME
rm -rf symphony
git clone https://github.com/Orchestra-Labs/symphony
cd symphony
git checkout v0.3.0
make build
Setup variables
# set variables
echo "export WALLET="wallet"" >> $HOME/.bash_profile
echo "export MONIKER="test"" >> $HOME/.bash_profile
echo "export SYMPHONY_CHAIN_ID="symphony-testnet-3"" >> $HOME/.bash_profile
echo "export SYMPHONY_PORT="11"" >> $HOME/.bash_profile
source $HOME/.bash_profile
Config and init app
# config and init app
symphonyd config chain-id $SYMPHONY_CHAIN_ID
symphonyd init $MONIKER --chain-id $SYMPHONY_CHAIN_ID
symphonyd config node tcp://localhost:${SYMPHONY_PORT}657
symphonyd config keyring-backend os
Last updated