From 216c20cc3fea70ebfed9449ee7beeefc8ed53790 Mon Sep 17 00:00:00 2001 From: lLuis Date: Sat, 10 Mar 2018 09:11:33 -0400 Subject: [PATCH 1/2] modified: routes/electrumjs/electrumServers.js modified: routes/ports.js modified: routes/shepherd/electrum/network.js --- routes/electrumjs/electrumServers.js | 13 ++++++++++++- routes/ports.js | 1 + routes/shepherd/electrum/network.js | 2 ++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/routes/electrumjs/electrumServers.js b/routes/electrumjs/electrumServers.js index 0548596..0bd2935 100644 --- a/routes/electrumjs/electrumServers.js +++ b/routes/electrumjs/electrumServers.js @@ -1,5 +1,16 @@ let electrumServers = { - coqui: { // !estimatefee + oot: { // !estimatefee + address: 'electrum1.utrum.io', + port: 10088, + proto: 'tcp', + txfee: 10000, + abbr: 'OOT', + serverList: [ + 'electrum1.utrum.io:10088', + 'electrum2.utrum.io:10088' + ], + }, + coqui: { // !estimatefee address: 'electrum1.cipig.net', port: 10011, proto: 'tcp', diff --git a/routes/ports.js b/routes/ports.js index 9364db0..38e69a8 100644 --- a/routes/ports.js +++ b/routes/ports.js @@ -28,6 +28,7 @@ const assetChainPorts = { 'ETOMIC': '10271', 'VOTE': '8012', 'BTCH': '8800', + 'OOT': '12467', }; module.exports = assetChainPorts; \ No newline at end of file diff --git a/routes/shepherd/electrum/network.js b/routes/shepherd/electrum/network.js index 4a02652..171b04b 100644 --- a/routes/shepherd/electrum/network.js +++ b/routes/shepherd/electrum/network.js @@ -50,6 +50,7 @@ module.exports = (shepherd) => { coin === 'BET' || coin === 'CRYPTO' || coin === 'COQUI' || + coin === 'OOT' || coin === 'HODL' || coin === 'SHARK' || coin === 'MSHARK' || @@ -76,6 +77,7 @@ module.exports = (shepherd) => { coinUC === 'BET' || coinUC === 'CRYPTO' || coinUC === 'COQUI' || + coinUC === 'OOT' || coinUC === 'HODL' || coinUC === 'SHARK' || coinUC === 'MSHARK' || From 731045ef9fc0d86bd1c4fc64872f22c2a1c34215 Mon Sep 17 00:00:00 2001 From: lLuis Date: Sat, 10 Mar 2018 10:48:18 -0400 Subject: [PATCH 2/2] modified: routes/ports.js --- routes/ports.js | 43 +++++++++++++++++++++++++++++++++---------- 1 file changed, 33 insertions(+), 10 deletions(-) diff --git a/routes/ports.js b/routes/ports.js index 38e69a8..f73fe76 100644 --- a/routes/ports.js +++ b/routes/ports.js @@ -1,10 +1,5 @@ -// default daemon ports - const assetChainPorts = { 'komodod': '7771', - 'markermaker': '7783', - 'PIZZA': '11608', - 'BEER': '8923', 'CHIPS': '57776', 'SUPERNET': '11341', 'REVS': '10196', @@ -20,15 +15,43 @@ const assetChainPorts = { 'BOTS': '11964', 'MGW': '12386', 'COQUI': '14276', + 'OOT': '12467', 'MVP': '11676', 'KV': '8299', 'CEAL': '11116', 'MESH': '9455', - 'AXO': '12927', - 'ETOMIC': '10271', - 'VOTE': '8012', - 'BTCH': '8800', - 'OOT': '12467', + 'USD': '13967', + 'CHF': '15312', + 'CAD': '8720', + 'BRL': '9914', + 'BGN': '9110', + 'AUD': '8045', + 'PLN': '13493', + 'PHP': '11181', + 'NZD': '10915', + 'NOK': '11588', + 'MYR': '10688', + 'MXN': '13970', + 'KRW': '14020', + 'JPY': '13145', + 'INR': '10536', + 'ILS': '14638', + 'IDR': '14459', + 'HKD': '15409', + 'HUF': '13699', + 'HRK': '12617', + 'GBP': '11505', + 'EUR': '8065', + 'DKK': '13830', + 'CNY': '10384', + 'ZAR': '15160', + 'TRY': '13924', + 'THB': '11847', + 'SGD': '14475', + 'SEK': '11447', + 'RON': '8675', + 'RUB': '8199', + 'CZK': '9482' }; module.exports = assetChainPorts; \ No newline at end of file