embark/test_apps/test_app/config/blockchain.json

80 lines
1.8 KiB
JSON
Raw Normal View History

2017-02-10 00:38:02 +00:00
{
"development": {
"enabled": true,
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,
"rpcHost": "localhost",
"rpcPort": 8545,
"rpcCorsDomain": "auto",
2018-06-28 14:40:40 +00:00
"targetGasLimit": 8000000,
"wsOrigins": "auto",
"wsRPC": true,
"wsHost": "localhost",
"wsPort": 8546,
"proxy": true
},
"privateNet": {
"enabled": true,
"networkType": "custom",
"networkId": "1337",
"isDev": false,
"genesisBlock": "config/privateNet/genesis.json",
"datadir": ".embark/privateNet/datadir",
"mineWhenNeeded": true,
"nodiscover": true,
"maxpeers": 0,
"rpcHost": "localhost",
"rpcPort": 8545,
"rpcCorsDomain": "auto",
2017-02-10 00:38:02 +00:00
"account": {
2018-06-28 14:40:40 +00:00
"password": "config/privateNet/password"
},
"targetGasLimit": 8000000,
"wsOrigins": "auto",
"wsRPC": true,
"wsHost": "localhost",
2018-06-11 21:14:02 +00:00
"wsPort": 8546,
"proxy": true
2017-02-10 00:38:02 +00:00
},
"testnet": {
"networkType": "testnet",
"rpcHost": "localhost",
"rpcPort": 8545,
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",
"rpcHost": "localhost",
"rpcPort": 8545,
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",
"rpcHost": "localhost",
"rpcPort": 8545,
"rpcCorsDomain": "http://localhost:8000",
"account": {
"password": "config/livenet/password"
}
},
"privatenet": {
"networkType": "custom",
"rpcHost": "localhost",
"rpcPort": 8545,
"datadir": "yourdatadir",
"networkId": "123",
2017-02-18 13:24:23 +00:00
"bootnodes": ""
2017-02-10 00:38:02 +00:00
}
}