2026-02-19 10:26:17 +05:30
|
|
|
log-level = "TRACE"
|
2025-09-11 20:40:01 +05:30
|
|
|
relay = true
|
|
|
|
|
mix = true
|
|
|
|
|
filter = true
|
|
|
|
|
store = false
|
|
|
|
|
lightpush = true
|
|
|
|
|
max-connections = 150
|
2026-02-19 10:26:17 +05:30
|
|
|
peer-exchange = false
|
2025-09-11 20:40:01 +05:30
|
|
|
metrics-logging = false
|
|
|
|
|
cluster-id = 2
|
2026-02-19 10:26:17 +05:30
|
|
|
discv5-discovery = false
|
2025-09-11 20:40:01 +05:30
|
|
|
discv5-udp-port = 9002
|
|
|
|
|
discv5-enr-auto-update = true
|
|
|
|
|
discv5-bootstrap-node = ["enr:-LG4QBaAbcA921hmu3IrreLqGZ4y3VWCjBCgNN9mpX9vqkkbSrM3HJHZTXnb5iVXgc5pPtDhWLxkB6F3yY25hSwMezkEgmlkgnY0gmlwhH8AAAGKbXVsdGlhZGRyc4oACATAqEQ-BuphgnJzhQACAQAAiXNlY3AyNTZrMaEDpEW1UlUGHRJg6g_zGuCddKWmIUBGZCQX13xGfh9J6KiDdGNwguphg3VkcIIjKYV3YWt1Mg0"]
|
2026-02-19 10:26:17 +05:30
|
|
|
kad-bootstrap-node = ["/ip4/127.0.0.1/tcp/60001/p2p/16Uiu2HAmPiEs2ozjjJF2iN2Pe2FYeMC9w4caRHKYdLdAfjgbWM6o"]
|
feat(mix): integrate mix protocol with extended kademlia + RLN spam protection
Rebased poc/mix-spam-protection onto origin/master. Bundles:
- Extended kademlia discovery integration for mix node pool
(waku/discovery/waku_kademlia.nim, tools/confutils/cli_args.nim)
- RLN spam protection plugin (vacp2p/mix-rln-spam-protection) wired in:
WakuMix gains mixRlnSpamProtection + publishMessage callback,
per-hop proof generation / verification, membership coordination
via /mix/rln/metadata/v1 content topic
- chat2mix sim app: filter-subscribes to spam-protection coordination
topic, defers publishing until mix node pool is populated
- Makefile: automated librln_mix_v2.0.0.a build via
scripts/build_rln_mix.sh and mix-librln target
- simulations/mixnet: 5-node mixnet sim infrastructure
(config1-4.toml, run_*.sh, build_setup.sh, setup_credentials.nim,
README, roundtrip_check.sh automated round-trip verification)
Rebase fixes:
- Plugin previously vendored as submodule; now a nimble requires entry
pinned to logos-co/mix-rln-spam-protection-plugin@037f8e10
- waku.nimble: zlib < 0.2 pin to keep nimble lock resolution stable
(upstream zlib HEAD bumped to 0.2.0)
- apps/chat2mix/config_chat2mix.nim: replace
`defaultValue: parseIpAddress("...")` with IpAddress literal,
works around confutils macro generating
`defaultValueHelpName(): string {.raises: [].}` that violates the
raises pragma when stringifying a parseIpAddress call
- config.nims: nimble setup --noNimblePath reordering
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-20 13:44:28 +05:30
|
|
|
rest = true
|
2025-09-11 20:40:01 +05:30
|
|
|
rest-admin = false
|
|
|
|
|
ports-shift = 3
|
|
|
|
|
num-shards-in-network = 1
|
|
|
|
|
shard = [0]
|
|
|
|
|
agent-string = "nwaku-mix"
|
|
|
|
|
nodekey = "ed54db994682e857d77cd6fb81be697382dc43aa5cd78e16b0ec8098549f860e"
|
|
|
|
|
mixkey = "b858ac16bbb551c4b2973313b1c8c8f7ea469fca03f1608d200bbf58d388ec7f"
|
2026-02-19 10:26:17 +05:30
|
|
|
rendezvous = false
|
2025-09-11 20:40:01 +05:30
|
|
|
listen-address = "127.0.0.1"
|
|
|
|
|
nat = "extip:127.0.0.1"
|
2026-02-19 10:26:17 +05:30
|
|
|
ext-multiaddr = ["/ip4/127.0.0.1/tcp/60003"]
|
|
|
|
|
ext-multiaddr-only = true
|
2025-09-11 20:40:01 +05:30
|
|
|
ip-colocation-limit=0
|
|
|
|
|
#staticnode = ["/ip4/127.0.0.1/tcp/60001/p2p/16Uiu2HAmPiEs2ozjjJF2iN2Pe2FYeMC9w4caRHKYdLdAfjgbWM6o", "/ip4/127.0.0.1/tcp/60002/p2p/16Uiu2HAmLtKaFaSWDohToWhWUZFLtqzYZGPFuXwKrojFVF6az5UF","/ip4/127.0.0.1/tcp/60004/p2p/16Uiu2HAmPwRKZajXtfb1Qsv45VVfRZgK3ENdfmnqzSrVm3BczF6f","/ip4/127.0.0.1/tcp/60005/p2p/16Uiu2HAmRhxmCHBYdXt1RibXrjAUNJbduAhzaTHwFCZT4qWnqZAu"]
|