blockchain.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "development": {
  3. "enabled": true,
  4. "networkType": "custom",
  5. "genesisBlock": "config/development/genesis.json",
  6. "datadir": ".embark/development/datadir",
  7. "mineWhenNeeded": true,
  8. "nodiscover": true,
  9. "maxpeers": 0,
  10. "rpcHost": "localhost",
  11. "rpcPort": 8545,
  12. "rpcCorsDomain": "http://localhost:8000",
  13. "account": {
  14. "password": "config/development/password"
  15. }
  16. },
  17. "testnet": {
  18. "enabled": true,
  19. "networkType": "testnet",
  20. "light": true,
  21. "rpcHost": "localhost",
  22. "rpcPort": 8545,
  23. "rpcCorsDomain": "http://localhost:8000",
  24. "account": {
  25. "password": "config/testnet/password"
  26. }
  27. },
  28. "livenet": {
  29. "enabled": true,
  30. "networkType": "livenet",
  31. "light": true,
  32. "rpcHost": "localhost",
  33. "rpcPort": 8545,
  34. "rpcCorsDomain": "http://localhost:8000",
  35. "account": {
  36. "password": "config/livenet/password"
  37. }
  38. },
  39. "privatenet": {
  40. "enabled": true,
  41. "networkType": "custom",
  42. "rpcHost": "localhost",
  43. "rpcPort": 8545,
  44. "rpcCorsDomain": "http://localhost:8000",
  45. "datadir": "yourdatadir",
  46. "networkId": "123",
  47. "bootnodes": ""
  48. }
  49. }