genevd_a.toml 920 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ## Sets Datastore Path
  2. datastore = "/tmp/genev_test/datastore/node1"
  3. ## Current display name
  4. #nickname="NICKNAME"
  5. ## JSON-RPC settings
  6. [rpc]
  7. ## JSON-RPC listen URL
  8. rpc_listen = "tcp://127.0.0.1:28870"
  9. ## Disabled RPC methods
  10. rpc_disabled_methods = ["p2p.get_info"]
  11. ## net settings
  12. [net]
  13. ## P2P accept addresses
  14. inbound = ["tcp://127.0.0.1:28882"]
  15. ## Connection slots
  16. outbound_connections = 4
  17. ## Inbound connection slots
  18. inbound_connections = 4
  19. ## P2P external addresses
  20. external_addrs = ["tcp://127.0.0.1:28882"]
  21. ## Peers to connect to
  22. #peers = ["tls://127.0.0.1:28881"]
  23. ## Seed nodes to connect to
  24. seeds = ["tcp://127.0.0.1:28881"]
  25. # Prefered transports for outbound connections
  26. allowed_transports = ["tcp"]
  27. ## these are the default configuration for the p2p network
  28. #manual_attempt_limit=0
  29. #seed_query_timeout_seconds=8
  30. #connect_timeout_seconds=10
  31. #channel_handshake_seconds=4
  32. #channel_heartbeat_seconds=10