genev_config.toml 894 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. ## Connection slots
  19. outbound_connections = 8
  20. # Prefered transports for outbound connections
  21. active_profiles = ["tcp+tls"]
  22. [net.profiles."tcp+tls"]
  23. ## P2P accept addresses
  24. #inbound = ["tcp+tls://127.0.0.1:28881"]
  25. ## P2P external addresses
  26. #external_addr = ["tcp+tls://127.0.0.1:28881"]
  27. ## Peers to connect to
  28. #peers = ["tcp+tls://127.0.0.1:28881"]
  29. ## Seed nodes to connect to
  30. #seeds = []