embark-area-51/test_apps/test_app/config/blockchain.json

63 lines
1.4 KiB
JSON
Raw Normal View History

2018-08-22 22:32:43 +00:00
{
2018-08-15 21:01:41 +00:00
"default": {
"enabled": true,
2018-08-15 21:01:41 +00:00
"rpcHost": "localhost",
"rpcPort": 8545,
"rpcCorsDomain": "auto",
"wsRPC": true,
"wsHost": "localhost",
"wsPort": 8546,
"wsOrigins": "auto"
},
"development": {
2017-02-10 00:38:02 +00:00
"networkType": "custom",
"networkId": "1337",
2018-06-28 14:40:40 +00:00
"isDev": true,
2017-02-10 00:38:02 +00:00
"datadir": ".embark/development/datadir",
"mineWhenNeeded": true,
"nodiscover": true,
"maxpeers": 0,
2018-06-28 14:40:40 +00:00
"targetGasLimit": 8000000,
2018-07-26 17:08:51 +00:00
"proxy": true
2018-06-28 14:40:40 +00:00
},
"privatenet": {
2018-06-28 14:40:40 +00:00
"networkType": "custom",
"networkId": "1337",
"isDev": false,
"genesisBlock": "config/privatenet/genesis.json",
"datadir": ".embark/privatenet/datadir",
2018-06-28 14:40:40 +00:00
"mineWhenNeeded": true,
"nodiscover": true,
"maxpeers": 0,
2017-02-10 00:38:02 +00:00
"account": {
"numAccounts": 3,
"balance": "5 ether",
"password": "config/privatenet/password"
},
"targetGasLimit": 8000000,
2018-06-11 21:14:02 +00:00
"proxy": true
2017-02-10 00:38:02 +00:00
},
"testnet": {
"networkType": "testnet",
2018-06-15 20:33:59 +00:00
"syncMode": "fast",
"account": {
"password": "config/ropsten/password"
}
2017-02-10 00:38:02 +00:00
},
"rinkeby": {
"networkType": "rinkeby",
2018-06-15 20:33:59 +00:00
"syncMode": "fast",
"account": {
"password": "config/rinkeby/password"
}
},
2017-02-10 00:38:02 +00:00
"livenet": {
"networkType": "livenet",
"rpcCorsDomain": "http://localhost:8000",
2018-08-15 21:01:41 +00:00
"wsOrigins": "http://localhost:8000",
2017-02-10 00:38:02 +00:00
"account": {
"password": "config/livenet/password"
}
}
}