added default config file
This commit is contained in:
16
config/nodes.default.js
Normal file
16
config/nodes.default.js
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
@@ -1,28 +0,0 @@
|
||||
var nodes = [
|
||||
{
|
||||
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'
|
||||
},
|
||||
{
|
||||
name: 'local',
|
||||
type: 'C++',
|
||||
rpcHost: 'localhost',
|
||||
rpcPort: '8080'
|
||||
}
|
||||
];
|
||||
|
||||
module.exports = nodes;
|
||||
Reference in New Issue
Block a user