dchatd_config.toml 647 B

1234567891011121314151617181920212223242526
  1. # dchat toml
  2. # JSON-RPC settings
  3. [rpc]
  4. # JSON-RPC listen URL
  5. rpc_listen = "tcp://127.0.0.1:51054"
  6. # Disabled RPC methods
  7. #rpc_disabled_methods = ["p2p.get_info"]
  8. [net]
  9. ## Outbound connect slots. Required for outbound nodes.
  10. outbound_connections = 5
  11. # Whitelisted network transports for outbound connections
  12. active_profiles = ["tcp"]
  13. [net.profiles."tcp"]
  14. ## P2P accept addresses Required for inbound nodes.
  15. #inbound=["tcp://127.0.0.1:51554"]
  16. ## P2P external addresses. Required for inbound nodes.
  17. #external_addrs=["tcp://127.0.0.1:51554"]
  18. ## Seed nodes to connect to. Required for inbound and outbound nodes.
  19. seeds=["tcp://127.0.0.1:50515"]