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' ||