Releases: encryptedcoins/encoins-relay
Releases · encryptedcoins/encoins-relay
Light relay with simple installation
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.
Lightweight relay mode
The ENCOINS v1 relay March release.
Changes
- Added lightweight relay mode that does not require running local services.
Installation guide for the lightweight relay
- Download the binary
encoins
, five JSON config files, and two token files. - Place all config and token files in the same folder. You can put the
encoins
binary in a folder on$PATH
. - Specify your relay IP or URL in the "delegation_ip" key in
relayConfig.json
. - Create Blockfrost (blockfrost.io) and Maestro (gomaestro.org) tokens and copy them into the
blockfrost.token
andmaestro.token
files, respectively. - Type your wallet address in place of "addr..." in the "wallet_provider" key in
config.json
. - Fill out the
wallet.json
file with your relayer wallet's seed phrase. - Install
libpq
andlibsecp256k1-0
. On Ubuntu, it can be done by the following command:
sudo apt-get install libpq5 libsecp256k1-0
- Go to the folder with the config files. Run the lightweight relayer with a single command:
encoins --run
Note: Alternatively, you can build the encoins
binary from sources.
v1.2.2.0
The ENCOINS v1 relay February release.
Changes
- Reduced treasury fees
v1.2.1
The mainnet launch version.
New
- Added delegation server
Changes
- Updates to config files
v1.2.0
New:
/version
API
Changes:
- Improved performance due to the reduced number of API calls to Kupo
- Various bug fixes
v1.1.0
Update to the relay API. Fixed a bug with an unaccounted returnable deposit in the Ledger mode.
v1.0.0-alpha
ENCOINS relay app. Final public test version. For use on Cardano testnets.
v1-rc2-beta
binaries 8bc08e0