seedd_config.toml 989 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. ## seedd configuration file
  2. ##
  3. ## Please make sure you go through all the settings so you can configure
  4. ## your daemon properly.
  5. ##
  6. ## The default values are left commented. They can be overridden either by
  7. ## uncommenting, or by using the command-line.
  8. # Daemon published url, common for all enabled networks
  9. url = "tcp://127.0.0.1"
  10. # Darkfid activation flag
  11. #darkfid = true
  12. # Ircd activation flag
  13. #ircd = true
  14. # Taud activation flag
  15. #taud = true
  16. # Following specific network settings shouldn't be commended even if
  17. # their corresponding network is not enabled.
  18. # Darkfid network settings.
  19. [darkfid_opts]
  20. # Network port
  21. port = 7650
  22. # Seed nodes to connect to
  23. seeds = []
  24. # Peers to connect to
  25. peers = []
  26. # Ircd network settings.
  27. [ircd_opts]
  28. # Network port
  29. port = 8760
  30. # Seed nodes to connect to
  31. seeds = []
  32. # Peers to connect to
  33. peers = []
  34. # Taud network settings.
  35. [taud_opts]
  36. # Network port
  37. port = 9870
  38. # Seed nodes to connect to
  39. seeds = []
  40. # Peers to connect to
  41. peers = []