The ENCOINS v1 relay April release.
New
- More straightforward installation process
Installation guide for the lightweight relay
- Install
libpq
andlibsecp256k1-0
. On Ubuntu, it can be done by the following command:
sudo apt-get install libpq5 libsecp256k1-0
- Create a folder for your relay
mkdir encoins
cd encoins
- 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"
- Allow the script to execute
chmod +x encoins-init.sh
- 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
- To start the relay again, use
cd mainnet/apps/encoins
encoins --run
Note: Alternatively, you can build the encoins
binary from sources.