| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- ## IRC listen URL
- irc_listen = "127.0.0.1:11066"
- ## Sets Datastore Path
- datastore = "~/.config/darkfi/darkirc-outbound"
- ## JSON-RPC settings
- [rpc]
- ## JSON-RPC listen URL
- rpc_listen = "tcp://127.0.0.1:7777"
- ## Disabled RPC methods
- rpc_disabled_methods = ["p2p.get_info"]
- ## Raft net settings
- [net]
- # Magic Bytes to distinguish the p2p network
- magic_bytes = [251, 229, 199, 181]
- ## P2P accept addresses
- # inbound=["127.0.0.1:11002"]
- ## Connection slots
- outbound_connections = 5
- ## P2P external addresses
- #external_addr=["127.0.0.1:11002"]
- ## Peers to connect to
- #peers=["127.0.0.1:11003"]
- ## Seed nodes to connect to
- seeds = ["127.0.0.1:11001"]
- ## these are the default configuration for the p2p network
- #manual_attempt_limit=0
- #seed_query_timeout_seconds=8
- #connect_timeout_seconds=10
- #channel_handshake_seconds=4
- #channel_heartbeat_seconds=10
|