embark/test_apps/contracts_app/blockchain.json

61 lines
1.3 KiB
JSON

{
"development": {
"enabled": true,
"networkType": "custom",
"networkId": "1337",
"isDev": true,
"genesisBlock": "development/genesis.json",
"datadir": ".embark/development/datadir",
"mineWhenNeeded": true,
"nodiscover": true,
"maxpeers": 0,
"rpcHost": "localhost",
"rpcPort": 8545,
"rpcCorsDomain": "auto",
"account": {
"password": "development/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"
}
},
"privatenet": {
"networkType": "custom",
"rpcHost": "localhost",
"rpcPort": 8545,
"datadir": "yourdatadir",
"networkId": "123",
"bootnodes": ""
}
}