Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading