From 7e114d44c8cbdbf65a8fbffd133f632d4fd9a1ff Mon Sep 17 00:00:00 2001 From: gabrielmer <101006718+gabrielmer@users.noreply.github.com> Date: Wed, 4 Jun 2025 12:43:17 +0200 Subject: [PATCH] chore: adding dns name servers and discv5 auto update nwaku configurations (#78) --- waku/common/config.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/waku/common/config.go b/waku/common/config.go index 5026ab0..1a57f00 100644 --- a/waku/common/config.go +++ b/waku/common/config.go @@ -33,4 +33,8 @@ type WakuConfig struct { PeerExchangeNode string `json:"peerExchangeNode,omitempty"` TcpPort int `json:"tcpPort,omitempty"` RateLimits RateLimitsConfig `json:"rateLimits,omitempty"` + DnsDiscoveryNameServers []string `json:"dnsDiscoveryNameServers,omitempty"` + DnsAddrsNameServers []string `json:"dnsAddrsNameServers,omitempty"` + Discv5EnrAutoUpdate bool `json:"discv5EnrAutoUpdate,omitempty"` + MaxConnections int `json:"maxConnections,omitempty"` }