diff --git a/CHANGELOG.md b/CHANGELOG.md index fa46c5b84..964a587ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,8 @@ The following emojis are used to highlight certain changes: ### Changed +- `gateway` The default DNSLink resolver for `.eth` TLD changed to `https://dns.eth.limo/dns-query` [#781](https://github.com/ipfs/boxo/pull/781) + ### Removed ### Fixed diff --git a/gateway/dns.go b/gateway/dns.go index 376c42669..b49ce3be6 100644 --- a/gateway/dns.go +++ b/gateway/dns.go @@ -10,7 +10,7 @@ import ( ) var defaultResolvers = map[string]string{ - "eth.": "https://resolver.cloudflare-eth.com/dns-query", + "eth.": "https://dns.eth.limo/dns-query", "crypto.": "https://resolver.cloudflare-eth.com/dns-query", }