Browse Source

Merge pull request #46 from chainmakers/v0.25

V0.25
v0.25
pbca26 7 years ago
committed by GitHub
parent
commit
cc34ceae20
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      routes/electrumjs/electrumServers.js
  2. 1
      routes/ports.js
  3. 2
      routes/shepherd/electrum/network.js

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

1
routes/ports.js

@ -3,6 +3,7 @@
const assetChainPorts = {
'komodod': '7771',
'markermaker': '7783',
'OOT': '12467',
'PIZZA': '11608',
'BEER': '8923',
'CHIPS': '57776',

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

Loading…
Cancel
Save