taud_config.toml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ## This is the tau daemon configuration file.
  2. ## Review it carefully.
  3. ## JSON-RPC listen URL
  4. #rpc_listen="tcp://127.0.0.1:23330"
  5. ## Datastore Path
  6. #datastore = "~/.local/darkfi/taud_db"
  7. ## Sets DB logs replay datastore path
  8. #replay_datastore = "~/.local/darkfi/replayed_darkirc_db"
  9. ## Run in replay mode to store Sled DB instructions
  10. ## (for eventgraph debugging tool)
  11. #replay_mode = false
  12. ## Current display name
  13. #nickname = "NICKNAME"
  14. ## Workspaces
  15. workspaces = ["darkfi-dev:2bCqQTd8BJgeUzH7JQELZxjQuWS8aCmXZ9C6w7ktNS1v"]
  16. # P2P network settings
  17. [net]
  18. # Path to a configured hostlist for saving known peers
  19. hostlist = "~/.local/darkfi/darkirc/hostlist.tsv"
  20. ## P2P accept addresses
  21. #inbound = ["tcp+tls://0.0.0.0:23331", "tcp+tls://[::]:23331"]
  22. ## Outbound connection slots
  23. # outbound_connections = 8
  24. ## Inbound connection slots
  25. #inbound_connections = 8
  26. ## White connection percent
  27. # gold_connect_count = 2
  28. ## White connection percent
  29. # white_connect_percent = 70
  30. ## Addresses we want to advertise to peers (optional)
  31. ## These should be reachable externally
  32. #external_addrs = ["tcp+tls://my.resolveable.address:23331"]
  33. ## Seed nodes to connect to
  34. seeds = [
  35. #"tcp+tls://lilith0.dark.fi:5363",
  36. "tcp+tls://lilith1.dark.fi:5363",
  37. # "tor://rwjgdy7bs4e3eamgltccea7p5yzz3alfi2vps2xefnihurbmpd3b7hqd.onion:5362"
  38. # "tor://f5mldz3utfrj5esn7vy7osa6itusotix6nsjhv4uirshkcvgglb3xdqd.onion:5362"
  39. ]
  40. # Whitelisted transports for outbound connections
  41. allowed_transports = ["tcp+tls"]
  42. #allowed_transports = ["tor"]
  43. # Enable transport mixing
  44. # Allows mixing transports, e.g. tor+tls:// connecting to tcp+tls://
  45. # By default this is not allowed.
  46. transport_mixing = false