diff --git a/routes/electrumjs/electrumServers.js b/routes/electrumjs/electrumServers.js index 9270a3d..aed6d30 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 11e9a19..31ae00f 100644 --- a/routes/ports.js +++ b/routes/ports.js @@ -3,6 +3,7 @@ const assetChainPorts = { 'komodod': '7771', 'markermaker': '7783', + 'OOT': '12467', 'PIZZA': '11608', 'BEER': '8923', 'CHIPS': '57776', diff --git a/routes/shepherd/electrum/network.js b/routes/shepherd/electrum/network.js index 9e53853..8502138 100644 --- a/routes/shepherd/electrum/network.js +++ b/routes/shepherd/electrum/network.js @@ -52,6 +52,7 @@ module.exports = (shepherd) => { coin === 'BET' || coin === 'CRYPTO' || coin === 'COQUI' || + coin === 'OOT' || coin === 'HODL' || coin === 'SHARK' || coin === 'MSHARK' || @@ -79,6 +80,7 @@ module.exports = (shepherd) => { coinUC === 'BET' || coinUC === 'CRYPTO' || coinUC === 'COQUI' || + coinUC === 'OOT' || coinUC === 'HODL' || coinUC === 'SHARK' || coinUC === 'MSHARK' ||