outbound.toml 854 B

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