mirror of https://github.com/embarklabs/embark.git
69 lines
1.5 KiB
JSON
69 lines
1.5 KiB
JSON
{
|
|
"development": {
|
|
"enabled": true,
|
|
"networkType": "custom",
|
|
"networkId": "1337",
|
|
"isDev": true,
|
|
"datadir": ".embark/development/datadir",
|
|
"mineWhenNeeded": true,
|
|
"nodiscover": true,
|
|
"maxpeers": 0,
|
|
"rpcHost": "localhost",
|
|
"rpcPort": 8545,
|
|
"rpcCorsDomain": "auto",
|
|
"targetGasLimit": 8000000,
|
|
"wsOrigins": "auto",
|
|
"wsRPC": true,
|
|
"wsHost": "localhost",
|
|
"wsPort": 8546
|
|
},
|
|
"privatenet": {
|
|
"networkType": "custom",
|
|
"networkId": "1337",
|
|
"isDev": false,
|
|
"genesisBlock": "privatenet/genesis.json",
|
|
"datadir": ".embark/privatenet/datadir",
|
|
"mineWhenNeeded": true,
|
|
"nodiscover": true,
|
|
"maxpeers": 0,
|
|
"rpcHost": "localhost",
|
|
"rpcPort": 8545,
|
|
"rpcCorsDomain": "auto",
|
|
"account": {
|
|
"password": "privatenet/password"
|
|
},
|
|
"targetGasLimit": 8000000,
|
|
"wsOrigins": "auto",
|
|
"wsRPC": true,
|
|
"wsHost": "localhost",
|
|
"wsPort": 8546
|
|
},
|
|
"testnet": {
|
|
"networkType": "testnet",
|
|
"rpcHost": "localhost",
|
|
"rpcPort": 8545,
|
|
"syncMode": "fast",
|
|
"account": {
|
|
"password": "config/ropsten/password"
|
|
}
|
|
},
|
|
"rinkeby": {
|
|
"networkType": "rinkeby",
|
|
"rpcHost": "localhost",
|
|
"rpcPort": 8545,
|
|
"syncMode": "fast",
|
|
"account": {
|
|
"password": "config/rinkeby/password"
|
|
}
|
|
},
|
|
"livenet": {
|
|
"networkType": "livenet",
|
|
"rpcHost": "localhost",
|
|
"rpcPort": 8545,
|
|
"rpcCorsDomain": "http://localhost:8000",
|
|
"account": {
|
|
"password": "livenet/password"
|
|
}
|
|
}
|
|
}
|