| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- ## List of channels to autojoin for new client connections
- autojoin = [
- "#dev",
- "#memes",
- "#philosophy",
- "#markets",
- "#math",
- "#random",
- "#lunardao",
- ]
- ## P2P network settings
- [net]
- # Magic Bytes to distinguish the p2p network
- magic_bytes = [251, 229, 199, 181]
- ## Path to the P2P datastore
- datastore = "~/.local/share/darkfi/darkirc"
- ## Path to a configured hostlist for saving known peers
- hostlist = "~/.local/share/darkfi/darkirc/p2p_hostlist.tsv"
- ## connection settings
- outbound_peer_discovery_cooloff_time = 60
- ## Outbound connection slots
- outbound_connections = 8
- ## Inbound connection slots
- inbound_connections = 64
- ## Whitelisted transports for outbound connections
- active_profiles = ["i2p"]
- ## Transports to be mixed
- mixed_profiles = []
- ## I2p Socks5 proxy
- i2p_socks5_proxy = "socks5://127.0.0.1:4447"
- [net.profiles."i2p"]
- ## Seed nodes to connect to
- seeds = [
- ##TODO: replace with an official seed address
- "i2p://6l2rdfriixo2nh5pr5bt555lyz56qox2ikzia4kuzm4okje7gtmq.b32.i2p:5262"
- ]
- ## Addresses we want to advertise to peers
- external_addrs = ["i2p://youraddress.b32.i2p:25551"]
- ## P2P accept addresses
- inbound = ["tcp://127.0.0.1:25551"]
|