Skip to content

Commit

Permalink
fix: update default DNSLink resolvers
Browse files Browse the repository at this point in the history
This is rainbow version of ipfs/kubo#10655

TLDR reason:
ipfs/boxo#771 (comment)
  • Loading branch information
lidel committed Jan 7, 2025
1 parent 73a14cd commit 415d548
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 415d548

Please sign in to comment.