github.com/etsc3259/etsc@v0.0.0-20190109113336-a9c2c10f9c95/params/bootnodes.go (about)

     1  // Copyright 2015 The go-etsc Authors
     2  // This file is part of the go-etsc library.
     3  //
     4  // The go-etsc 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-etsc 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-etsc library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package params
    18  
    19  // MainnetBootnodes are the enode URLs of the P2P bootstrap nodes running on
    20  // the main etsc network.
    21  var MainnetBootnodes = []string{
    22  	// etsc Foundation Go Bootnodes
    23  	"enode://c4c424a2cfb573fc6184774a2d8d72b12be2eace59e214daf5e415a6c209ec7cc9692b51603cf052f0813b268eb7b25da43d3519a5a049b9a04669b2a8b7e465@47.52.159.122:30303",
    24  	"enode://044f96fa96081b365f6193f6c8db47506c13163d185a86061134834cd686628b291c9c06328f1e426228b7b328b7444499eeb09a6d662cd7a76a6f507e3466f1@47.52.134.239:30303",
    25  }
    26  
    27  // TestnetBootnodes are the enode URLs of the P2P bootstrap nodes running on the
    28  // Ropsten test network.
    29  var TestnetBootnodes = []string{
    30  	"enode://30b7ab30a01c124a6cceca36863ece12c4f5fa68e3ba9b0b51407ccc002eeed3b3102d20a88f1c1d3c3154e2449317b8ef95090e77b312d5cc39354f86d5d606@52.176.7.10:30303",    // US-Azure getsc
    31  	"enode://865a63255b3bb68023b6bffd5095118fcc13e79dcf014fe4e47e065c350c7cc72af2e53eff895f11ba1bbb6a2b33271c1116ee870f266618eadfc2e78aa7349c@52.176.100.77:30303",  // US-Azure parity
    32  	"enode://6332792c4a00e3e4ee0926ed89e0d27ef985424d97b6a45bf0f23e51f0dcb5e66b875777506458aea7af6f9e4ffb69f43f3778ee73c81ed9d34c51c4b16b0b0f@52.232.243.152:30303", // Parity
    33  	"enode://94c15d1b9e2fe7ce56e458b9a3b672ef11894ddedd0c6f247e0f1d3487f52b66208fb4aeb8179fce6e3a749ea93ed147c37976d67af557508d199d9594c35f09@192.81.208.223:30303", // @gpip
    34  }
    35  
    36  // RinkebyBootnodes are the enode URLs of the P2P bootstrap nodes running on the
    37  // Rinkeby test network.
    38  var RinkebyBootnodes = []string{
    39  	"enode://a24ac7c5484ef4ed0c5eb2d36620ba4e4aa13b8c84684e1b4aab0cebea2ae45cb4d375b77eab56516d34bfbd3c1a833fc51296ff084b770b94fb9028c4d25ccf@52.169.42.101:30303", // IE
    40  	"enode://343149e4feefa15d882d9fe4ac7d88f885bd05ebb735e547f12e12080a9fa07c8014ca6fd7f373123488102fe5e34111f8509cf0b7de3f5b44339c9f25e87cb8@52.3.158.184:30303",  // INFURA
    41  	"enode://b6b28890b006743680c52e64e0d16db57f28124885595fa03a562be1d2bf0f3a1da297d56b13da25fb992888fd556d4c1a27b1f39d531bde7de1921c90061cc6@159.89.28.211:30303", // AKASHA
    42  }
    43  
    44  // DiscoveryV5Bootnodes are the enode URLs of the P2P bootstrap nodes for the
    45  // experimental RLPx v5 topic-discovery network.
    46  var DiscoveryV5Bootnodes = []string{
    47  	"enode://c4c424a2cfb573fc6184774a2d8d72b12be2eace59e214daf5e415a6c209ec7cc9692b51603cf052f0813b268eb7b25da43d3519a5a049b9a04669b2a8b7e465@47.52.159.122:30303",
    48  	"enode://044f96fa96081b365f6193f6c8db47506c13163d185a86061134834cd686628b291c9c06328f1e426228b7b328b7444499eeb09a6d662cd7a76a6f507e3466f1@47.52.134.239:30303",
    49  }