From e4422789639b211942a84a291c85895da9849a33 Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Wed, 8 Jan 2025 21:42:41 +0100 Subject: [PATCH] fix: update default DNSLink resolvers (#231) This is rainbow version of https://github.com/ipfs/kubo/pull/10655 TLDR reason: https://github.com/ipfs/boxo/issues/771#issuecomment-2573189494 --- CHANGELOG.md | 2 ++ docs/environment-variables.md | 2 +- setup.go | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 369649b..337ea83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,8 @@ The following emojis are used to highlight certain changes: ### Changed +- The default DNSLink resolver for `.eth` TLD changed to `https://dns.eth.limo/dns-query` and `.crypto` one changed to `https://resolver.unstoppable.io/dns-query` [#231](https://github.com/ipfs/rainbow/pull/231) + ### Fixed ### Removed diff --git a/docs/environment-variables.md b/docs/environment-variables.md index 223ca58..bb9def0 100644 --- a/docs/environment-variables.md +++ b/docs/environment-variables.md @@ -156,7 +156,7 @@ DNS-over-HTTPS servers to use for resolving DNSLink on specified TLDs (comma-sep It is possible to override OS resolver by passing root: `. : catch-URL`. -Default: `eth. : https://resolver.cloudflare-eth.com/dns-query, crypto. : https://resolver.cloudflare-eth.com/dns-query` +Default: `eth. : https://dns.eth.limo/dns-query, crypto. : https://resolver.unstoppable.io/dns-query` ## Experiments diff --git a/setup.go b/setup.go index 59aa626..5361ad5 100644 --- a/setup.go +++ b/setup.go @@ -55,8 +55,8 @@ const cidContactEndpoint = "https://cid.contact" var httpRoutersFilterProtocols = []string{"unknown", "transport-bitswap"} // IPIP-484 var extraDNSLinkResolvers = []string{ - "eth. : https://resolver.cloudflare-eth.com/dns-query", - "crypto. : https://resolver.cloudflare-eth.com/dns-query", + "eth. : https://dns.eth.limo/dns-query", + "crypto. : https://resolver.unstoppable.io/dns-query", } type DHTRouting string