| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- ## JSON-RPC listen URL
- rpc_listen = "tcp://127.0.0.1:8890"
- ## IRC listen URL
- irc_listen = "tcp://127.0.0.1:22022"
- ## Sets Datastore Path
- datastore = "/tmp/darkirc_test/darkirc1"
- ## List of channels to autojoin for new client connections
- autojoin = ["#dev", "#test"]
- ## P2P net settings
- [net]
- ## Connection slots
- outbound_connections = 8
- ## Inbound connection slots
- inbound_connections = 8
- inbound = ["tcp://127.0.0.1:25552"]
- external_addrs = ["tcp://127.0.0.1:25552"]
- # peers = []
- ## Seed nodes to connect to
- seeds = ["tcp://127.0.0.1:25551"]
- # Prefered transports for outbound connections
- allowed_transports = ["tcp"]
- localnet = true
- hostlist = "/tmp/darkirc_test/darkirc1-host.tsv"
- advertise = true
- #
- # [channel."#dev"]
- # topic = "DarkFi Development HQ"
- [channel."#test"]
- secret = "HoLfk8vXBvNsBZ73e2xRPBZ9vEbnF9FVi4fDdyU9AZLU"
- [crypto]
- #dm_chacha_public = "BmUo88RJ5TyR7gUWnr6Mk7tqZE5xPuCqJdJV8KWzsagh"
- dm_chacha_secret = "Bwdhe48rKsqFwGUquQSSGZZS5NQP1szrdJUhyDE77Br6"
- [contact."node2"]
- dm_chacha_public = "ACaVU2uf4n2cheRHFP7RB9PASLweBJNdp5QJ4PGwVz67"
|