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));