Skip to content

Commit 415d548

Browse files
committed
fix: update default DNSLink resolvers
This is rainbow version of ipfs/kubo#10655 TLDR reason: ipfs/boxo#771 (comment)
1 parent 73a14cd commit 415d548

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ The following emojis are used to highlight certain changes:
1717

1818
### Changed
1919

20+
- 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)
21+
2022
### Fixed
2123

2224
### Removed

docs/environment-variables.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ DNS-over-HTTPS servers to use for resolving DNSLink on specified TLDs (comma-sep
156156

157157
It is possible to override OS resolver by passing root: `. : catch-URL`.
158158

159-
Default: `eth. : https://resolver.cloudflare-eth.com/dns-query, crypto. : https://resolver.cloudflare-eth.com/dns-query`
159+
Default: `eth. : https://dns.eth.limo/dns-query, crypto. : https://resolver.unstoppable.io/dns-query`
160160

161161
## Experiments
162162

setup.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ const cidContactEndpoint = "https://cid.contact"
5555
var httpRoutersFilterProtocols = []string{"unknown", "transport-bitswap"} // IPIP-484
5656

5757
var extraDNSLinkResolvers = []string{
58-
"eth. : https://resolver.cloudflare-eth.com/dns-query",
59-
"crypto. : https://resolver.cloudflare-eth.com/dns-query",
58+
"eth. : https://dns.eth.limo/dns-query",
59+
"crypto. : https://resolver.unstoppable.io/dns-query",
6060
}
6161

6262
type DHTRouting string

0 commit comments

Comments
 (0)