2018-09-04 21:19:27 +00:00
|
|
|
module.exports = {
|
2019-03-28 23:16:54 +00:00
|
|
|
default: {
|
2018-09-04 21:19:27 +00:00
|
|
|
enabled: true,
|
2020-10-15 06:01:36 +00:00
|
|
|
client: "geth"
|
2019-03-28 23:16:54 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
development: {
|
2020-10-15 06:01:36 +00:00
|
|
|
client: 'ganache-cli',
|
|
|
|
clientConfig: {
|
|
|
|
miningMode: 'dev'
|
|
|
|
}
|
2018-09-04 21:19:27 +00:00
|
|
|
},
|
2019-03-28 23:16:54 +00:00
|
|
|
|
2018-09-04 21:19:27 +00:00
|
|
|
testnet: {
|
|
|
|
networkType: "testnet",
|
2018-12-28 07:39:46 +00:00
|
|
|
syncMode: "light",
|
2019-01-12 13:42:31 +00:00
|
|
|
accounts: [
|
|
|
|
{
|
|
|
|
nodeAccounts: true,
|
|
|
|
password: "config/testnet/.password"
|
|
|
|
}
|
2019-03-28 23:16:54 +00:00
|
|
|
]
|
2018-09-04 21:19:27 +00:00
|
|
|
},
|
2019-03-28 23:16:54 +00:00
|
|
|
|
2018-09-04 21:19:27 +00:00
|
|
|
livenet: {
|
|
|
|
networkType: "livenet",
|
2018-12-28 07:39:46 +00:00
|
|
|
syncMode: "light",
|
2018-09-04 21:19:27 +00:00
|
|
|
rpcCorsDomain: "http://localhost:8000",
|
2019-03-28 23:16:54 +00:00
|
|
|
wsOrigins: "http://localhost:8000",
|
2019-01-12 13:42:31 +00:00
|
|
|
accounts: [
|
|
|
|
{
|
|
|
|
nodeAccounts: true,
|
|
|
|
password: "config/livenet/.password"
|
|
|
|
}
|
2019-03-28 23:16:54 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
|
2018-12-28 07:39:46 +00:00
|
|
|
rinkeby: {
|
2018-09-04 21:19:27 +00:00
|
|
|
enabled: true,
|
2018-12-28 07:39:46 +00:00
|
|
|
networkType: "rinkeby",
|
|
|
|
syncMode: "light",
|
2018-09-04 21:19:27 +00:00
|
|
|
rpcHost: "localhost",
|
|
|
|
rpcPort: 8545,
|
|
|
|
rpcCorsDomain: "http://localhost:8000",
|
2019-01-12 13:42:31 +00:00
|
|
|
accounts: [
|
|
|
|
{
|
|
|
|
nodeAccounts: true,
|
|
|
|
password: "config/rinkeby/.password"
|
|
|
|
}
|
|
|
|
],
|
2018-09-04 21:19:27 +00:00
|
|
|
}
|
2019-03-28 23:16:54 +00:00
|
|
|
|
2018-09-04 21:19:27 +00:00
|
|
|
};
|