Skip to content

Light relay with simple installation

Latest
Compare
Choose a tag to compare
@encryptedcoins encryptedcoins released this 28 Apr 10:02

The ENCOINS v1 relay April release.

New

  • More straightforward installation process

Installation guide for the lightweight relay

  1. Install libpq and libsecp256k1-0. On Ubuntu, it can be done by the following command:
sudo apt-get install libpq5 libsecp256k1-0
  1. Create a folder for your relay
mkdir encoins
cd encoins
  1. Download the script encoins-init.sh
latestTag=$(git ls-remote --tags https://github.com/encryptedcoins/encoins-relay | sort -t '/' -k 3 -V | awk -F/ '{ print $3 }' | awk '!/\^\{\}/' | tail -n 1)
wget "https://github.com/encryptedcoins/encoins-relay/releases/download/${latestTag}/encoins-init.sh"
  1. Allow the script to execute
chmod +x encoins-init.sh
  1. Run the script to initialize and start the relay app. The app will prompt you to enter all missing data to run a relay. You will need Blockfrost and Maestro tokens as well as a wallet with 15-20 ada in it.
./encoins-init.sh
  1. To start the relay again, use
cd mainnet/apps/encoins
encoins --run

Note: Alternatively, you can build the encoins binary from sources.