ethstats-server/config/nodes.js

29 lines
394 B
JavaScript
Raw Normal View History

2014-12-04 22:35:09 +01:00
var nodes = [
2015-01-29 00:41:52 +01:00
{
name: 'instance 1',
type: 'C++',
rpcHost: '54.173.252.182',
rpcPort: '8080'
},
{
name: 'instance 2',
type: 'C++',
rpcHost: '54.209.133.248',
rpcPort: '8080'
},
{
name: 'instance 3',
type: 'C++',
rpcHost: '54.174.67.126',
rpcPort: '8080'
},
2015-01-28 01:41:04 +01:00
{
name: 'local',
2015-01-28 23:38:54 +01:00
type: 'C++',
2015-01-28 01:41:04 +01:00
rpcHost: 'localhost',
rpcPort: '8080'
}
2014-12-04 22:35:09 +01:00
];
module.exports = nodes;