genev_config.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ## Current display name
  2. #nickname="NICKNAME"
  3. ## Sets Datastore Path
  4. #datastore = "~/.local/share/darkfi/genev_db"
  5. ## Sets DB logs replay datastore path
  6. #replay_datastore = "~/.local/share/darkfi/replayed_darkirc_db"
  7. ## Run in replay mode to store Sled DB instructions
  8. ## (for eventgraph debugging tool)
  9. #replay_mode = false
  10. ## JSON-RPC settings
  11. [rpc]
  12. ## JSON-RPC listen URL
  13. rpc_listen = "tcp://127.0.0.1:28880"
  14. ## Disabled RPC methods
  15. rpc_disabled_methods = ["p2p.get_info"]
  16. ## net settings
  17. [net]
  18. ## P2P accept addresses
  19. #inbound = ["tcp://127.0.0.1:28881"]
  20. ## Connection slots
  21. outbound_connections = 8
  22. ## P2P external addresses
  23. #external_addr = ["tls://127.0.0.1:28881"]
  24. ## Peers to connect to
  25. #peers = ["tls://127.0.0.1:28881"]
  26. ## Seed nodes to connect to
  27. seeds = ["tls://lilith0.dark.fi:28881", "tls://lilith1.dark.fi:28881"]
  28. # Prefered transports for outbound connections
  29. #transports = ["tls", "tcp"]
  30. ## these are the default configuration for the p2p network
  31. #manual_attempt_limit=0
  32. #seed_query_timeout_seconds=8
  33. #connect_timeout_seconds=10
  34. #channel_handshake_seconds=4
  35. #channel_heartbeat_seconds=10