seed.toml 666 B

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