tic-chaintool/netConfig.js
luk.lu c3dc3fbc45 [netConfig.js] node.server port changed from 8888 to 60000.
[eth.js] lint it to remove semicolons at line endings.
2019-04-18 18:04:25 +08:00

14 lines
527 B
JavaScript

const TIC_NODE = 'https://bank.bittic.net:60000/api';
const BTC_NODE = 'https://api.blockcypher.com/v1/btc/main';
const BTC_NODE2 = 'https://blockchain.info'//https://blockchain.info/unspent?active=12HnmPpLomtPL53Q4s6xEqRB4wkMHi5GEZ
const ETH_NODE = 'https://mainnet.infura.io/8284219b092f4cc69f3de29e532b1eb2';
const ETH_NODE2 = 'https://api.myetherapi.com/eth';
const ETH_TEST_NODE = 'https://ropsten.infura.io/8284219b092f4cc69f3de29e532b1eb2';
module.exports = {
TIC_NODE,
ETH_NODE,
BTC_NODE,
BTC_NODE2,
}