github.com/gochain-io/gochain@v2.2.26+incompatible/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 // MainnetBootnodes are the enode URLs of the P2P bootstrap nodes running on 20 // the main Ethereum network. 21 var MainnetBootnodes = []string{ 22 "enode://1f285e244d778fa55198346ee1f126242f380235c37627635e6f9491e8011f63deb25dba8c9e157ad1a27e75df35cf549bbd2c2e103803435bfb181df32ca480@159.65.70.117:30301", 23 } 24 25 // TestnetBootnodes are the enode URLs of the P2P bootstrap nodes running on the 26 // test network. 27 var TestnetBootnodes = []string{ 28 "enode://093dab36f391382510c7dd705dacb5d589f32da005ef39a8052f42a928581d676f5a04e4668c0d88ae721f7ccc018eb0af7fd54bfae7b70fb1d261890272884f@159.65.104.177:30301", 29 }