fud_config1.toml 851 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ## fud 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. # Path to the contents directory
  9. folder = "fud1"
  10. # P2P accept address
  11. p2p_accept = ["tls://127.0.0.1:13341"]
  12. # P2P external address
  13. p2p_external = ["tls://127.0.0.1:13341"]
  14. # Connection slots
  15. #slots = 8
  16. # Seed nodes to connect to
  17. seeds = ["tcp://127.0.0.1:13337"]
  18. # Peers to connect to
  19. #peers = []
  20. # Prefered transports for outbound connections
  21. transports = ["tls", "tcp"]
  22. # Enable localnet hosts
  23. localnet = true
  24. # Enable channel log
  25. channel_log = true
  26. # JSON-RPC settings
  27. [rpc]
  28. # JSON-RPC listen URL
  29. rpc_listen = "tls://127.0.0.1:13340"
  30. # Disabled RPC methods
  31. #rpc_disabled_methods = []