| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- ## IRC listen URL
- irc_listen = "tcp://127.0.0.1:11067"
- ## Sets Datastore Path
- datastore = "~/.local/share/darkfi/darkirc/localnet/inbound/darkirc_db"
- ## JSON-RPC settings
- [rpc]
- ## JSON-RPC listen URL
- rpc_listen = "tcp://127.0.0.1:1234"
- ## 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]
- ## Permit loopback P2P addresses for this development network
- localnet = true
- ## Dedicated P2P state
- p2p_datastore = "~/.local/share/darkfi/darkirc/localnet/inbound/p2p"
- hostlist = "~/.local/share/darkfi/darkirc/localnet/inbound/p2p_hostlist.tsv"
- ## Connection slots
- #outbound_connections=5
- # Whitelisted transports for outbound connections
- active_profiles = ["tcp"]
- [net.profiles."tcp"]
- ## Seed nodes to connect to
- seeds = ["tcp://127.0.0.1:11001"]
- ## P2P accept addresses
- inbound = ["tcp://127.0.0.1:11002"]
- ## P2P external addresses
- external_addrs = ["tcp://127.0.0.1:11002"]
- ## Peers to connect to
- #peers=["tcp://127.0.0.1:11003"]
|