seed.toml 771 B

12345678910111213141516171819202122232425262728293031323334353637
  1. ## IRC listen URL
  2. irc_listen = "127.0.0.1:11065"
  3. ## Sets Datastore Path
  4. datastore = "~/.config/darkfi/darkirc-seed"
  5. ## JSON-RPC settings
  6. [rpc]
  7. ## JSON-RPC listen URL
  8. rpc_listen = "tcp://127.0.0.1:8000"
  9. ## Disabled RPC methods
  10. rpc_disabled_methods = ["p2p.get_info"]
  11. ## Raft net settings
  12. [net]
  13. ## P2P accept addresses
  14. inbound = ["127.0.0.1:11001"]
  15. ## Connection slots
  16. # outbound_connections=5
  17. ## P2P external addresses
  18. # external_addr=["127.0.0.1:11001"]
  19. ## Peers to connect to
  20. # peers=["127.0.0.1:11001"]
  21. ## Seed nodes to connect to
  22. # seeds=["127.0.0.1:11002"]
  23. ## these are the default configuration for the p2p network
  24. #manual_attempt_limit=0
  25. #seed_query_timeout_seconds=8
  26. #connect_timeout_seconds=10
  27. #channel_handshake_seconds=4
  28. #channel_heartbeat_seconds=10