From 2d9df30ce001aa63acc16006f5d3206f4548db5d Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Mon, 9 Jul 2018 16:23:40 +0700 Subject: [PATCH] Add ChainZilla (ZILLA) currency (#409) --- app/marketmaker/supported-currencies.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/app/marketmaker/supported-currencies.js b/app/marketmaker/supported-currencies.js index 4f3030f877..4009ba782d 100644 --- a/app/marketmaker/supported-currencies.js +++ b/app/marketmaker/supported-currencies.js @@ -937,6 +937,22 @@ const supportedCurrencies = [ }, ], }, + { + coin: 'ZILLA', + name: 'ChainZilla', + asset: 'ZILLA', + rpcport: 10041, + electrumServers: [ + { + host: 'electrum1.cipig.net', + port: 10028, + }, + { + host: 'electrum2.cipig.net', + port: 10028, + }, + ], + }, ]; const getCurrencySymbols = () => _.orderBy(supportedCurrencies.map(currency => currency.coin));