ethstats-server/config/nodes.default.js

17 lines
269 B
JavaScript
Raw Normal View History

2015-02-05 00:55:48 +01:00
var nodes = [
// {
// name: 'Readable name of the node',
// type: 'C++/Go...',
// rpcHost: 'your node IP here',
// rpcPort: 'JSON-RPC port here'
// },
{
name: 'local',
type: 'C++',
rpcHost: 'localhost',
rpcPort: '8080'
}
];
module.exports = nodes;