github.com/DxChainNetwork/dxc@v0.8.1-0.20220824085222-1162e304b6e7/params/bootnodes.go (about)

     1  // Copyright 2015 The go-ethereum Authors
     2  // This file is part of the go-ethereum library.
     3  //
     4  // The go-ethereum library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // The go-ethereum library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU Lesser General Public License
    15  // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package params
    18  
    19  import "github.com/DxChainNetwork/dxc/common"
    20  
    21  // MainnetBootnodes are the enode URLs of the P2P bootstrap nodes running on
    22  // the main Ethereum network.
    23  var MainnetBootnodes = []string{
    24  	"enode://02c88819bd547e22e982c6811dc4eba6807e19d4a6827af2a20d467ae671e183c92c1fe9b93d2516a08e421a03559ef71fa9d766d7dcdde0b6dfb6e967171a66@54.68.71.166:32668",
    25  	"enode://600856e36cf714659be073b8fd4fc148fbf303e4303bae2e3e97927e7031f5254a91310a6f93f1facbc9775f6af023eb4285d94f61323e853548ab8e9478c9dd@52.10.116.84:32668",
    26  	"enode://a7285394350ac2eb7c12ad37e5c0cb9450824066ed13f079dabc7f5383b6f16c57ab6c2639418eab3606fc983c350ffdde77279d777b50883957266634d98460@54.71.25.84:32668",
    27  }
    28  
    29  // TestnetBootnodes are the enode URLs of the P2P bootstrap nodes running on the
    30  var TestnetBootnodes = []string{
    31  	"enode://6fd8199df5e00b091ac4d711200fa371b010b1b20828270d1bc78fcaaed6e76179e3cb49de919c34d965e28bceac6a33451db5d15a8caa2518e39e1925fb0d09@18.136.102.78:32668",
    32  	"enode://85b23ffafd9300176a6e6a3c8c1aaea0823b5f3a26052d5b7738cf526c80725ba38f81993388d467646cc73c078dad3d9d060a53f41043603c95d2670895d2a3@54.255.159.74:32668",
    33  	"enode://06a93f23ff0ebe15befd632ce6d4e23e067fe083b0f2c6a145ccc04dfa3dbb17785d0b79dc33a267b12c368704ccbd8570a9ddc53382ea5c73fbd0c143113896@13.229.92.245:32668",
    34  }
    35  
    36  var V5Bootnodes = []string{}
    37  
    38  // KnownDNSNetwork returns the address of a public DNS-based node list for the given
    39  // genesis hash and protocol. See https://github.com/ethereum/discv4-dns-lists for more
    40  // information.
    41  func KnownDNSNetwork(genesis common.Hash, protocol string) string {
    42  	return ""
    43  }