ethstats-server/config/nodes.default.js

107 lines
1.7 KiB
JavaScript
Raw Normal View History

2015-02-05 00:55:48 +01:00
var nodes = [
2015-02-05 02:33:58 +01:00
//
// Duplicate this file and rename it to "nodes.js".
// It will be loaded as the main config file and
// will be ignored by git. Add nodes like the one below
//
// {
2015-02-05 00:55:48 +01:00
// name: 'Readable name of the node',
// type: 'C++/Go...',
// rpcHost: 'your node IP here',
// rpcPort: 'JSON-RPC port here'
// },
{
name: 'instance 1',
type: 'C++',
2015-02-09 00:09:41 +01:00
os: 'linux',
rpcHost: '54.173.252.182',
rpcPort: '8080'
},
{
name: 'instance 2',
type: 'C++',
2015-02-09 00:09:41 +01:00
os: 'linux',
rpcHost: '54.209.133.248',
rpcPort: '8080'
},
{
name: 'instance 3',
type: 'C++',
2015-02-09 00:09:41 +01:00
os: 'linux',
rpcHost: '54.174.67.126',
rpcPort: '8080'
},
2015-02-05 00:55:48 +01:00
{
2015-02-11 21:50:44 +01:00
name: 'instance 4',
2015-02-05 00:55:48 +01:00
type: 'C++',
2015-02-11 21:50:44 +01:00
os: 'linux',
rpcHost: '54.152.111.192',
rpcPort: '8080'
},
{
name: 'instance 5',
type: 'C++',
os: 'linux',
rpcHost: '52.0.57.108',
rpcPort: '8080'
},
{
name: 'instance 6',
type: 'C++',
os: 'linux',
rpcHost: '52.0.28.243',
rpcPort: '8080'
},
{
name: 'instance 7',
type: 'C++',
os: 'linux',
rpcHost: '52.1.21.22',
rpcPort: '8080'
},
{
name: 'instance 8',
type: 'C++',
os: 'linux',
rpcHost: '52.0.207.16',
rpcPort: '8080'
},
{
name: 'instance 9',
type: 'C++',
os: 'linux',
rpcHost: '52.0.250.60',
rpcPort: '8080'
},
{
name: 'instance 10',
type: 'C++',
os: 'linux',
rpcHost: '52.0.160.249',
rpcPort: '8080'
},
{
name: 'instance 11',
type: 'C++',
os: 'linux',
rpcHost: '52.0.216.64',
rpcPort: '8080'
},
{
name: 'instance 12',
type: 'C++',
os: 'linux',
rpcHost: '52.0.144.162',
rpcPort: '8080'
},
{
name: 'instance 13',
type: 'C++',
os: 'linux',
rpcHost: '52.0.93.126',
2015-02-05 00:55:48 +01:00
rpcPort: '8080'
}
];
module.exports = nodes;