From adae384281f29949036033e42da9544e5a3a3aa4 Mon Sep 17 00:00:00 2001 From: captaingeeky <35855107+captaingeeky@users.noreply.github.com> Date: Tue, 18 Aug 2020 01:52:28 -0400 Subject: [PATCH] Update currencies.js Add support for ALQO and Phore --- src/currencies.js | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/currencies.js b/src/currencies.js index b781009..c8385ee 100644 --- a/src/currencies.js +++ b/src/currencies.js @@ -621,7 +621,20 @@ const CURRENCIES = [{ name: 'Hedera Hashgraph', symbol: 'hbar', validator: HBARValidator -}] +}, + { + name: 'ALQO', + symbol: 'xlq', + addressTypes: { prod: ['53'], testnet: [] }, + validator: BTCValidator, + }, + { + name: 'Phore', + symbol: 'phr', + addressTypes: { prod: ['37'], testnet: ['89', '8C'] }, + validator: BTCValidator, + } +] module.exports = { getByNameOrSymbol: function (currencyNameOrSymbol) {