17 lines
269 B
JavaScript
17 lines
269 B
JavaScript
|
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;
|