params: update DNS URLs

This commit is contained in:
Felix Lange 2020-02-12 13:55:25 +01:00
parent 5715db6ba7
commit 342ade82f6

View file

@ -77,8 +77,8 @@ const dnsPrefix = "enrtree://AKA3AM6LPBYEUDMVNU3BSVQJ5AD45Y7YPOHJLEF6W26QOE4VTUD
// These DNS names provide bootstrap connectivity for public testnets and the mainnet.
// See https://github.com/ethereum/discv4-dns-lists for more information.
var KnownDNSNetworks = map[common.Hash]string{
MainnetGenesisHash: dnsPrefix + "all.mainnet.nodes.ethflare.xyz",
TestnetGenesisHash: dnsPrefix + "all.ropsten.nodes.ethflare.xyz",
RinkebyGenesisHash: dnsPrefix + "all.rinkeby.nodes.ethflare.xyz",
GoerliGenesisHash: dnsPrefix + "all.goerli.nodes.ethflare.xyz",
MainnetGenesisHash: dnsPrefix + "all.mainnet.ethdisco.net",
TestnetGenesisHash: dnsPrefix + "all.ropsten.ethdisco.net",
RinkebyGenesisHash: dnsPrefix + "all.rinkeby.ethdisco.net",
GoerliGenesisHash: dnsPrefix + "all.goerli.ethdisco.net",
}