Dapp-Development

如何找到乙太坊測試網(Ropsten 和 Rinkeby)的引導節點 IP 地址?

  • December 4, 2017

我正在嘗試按照網上的教程開發一個簡單的投票應用程序。我想將我的 dapp 部署到測試網。為此,我正在使用教程(如下)中提到的引導節點,但是還有其他可以使用的引導節點嗎?

mahesh@projectblockchain:~$geth –testnet –syncmode “fast” –rpc –rpcapi db,eth,net,web3,personal –cache=1024 –rpcport 8545 –rpcaddr 127.0.0.1 –rpccorsdomain" *“–bootnodes”的eNode://20c9ad97c081d63397d7b685a412227a40e23c8bdc6688c6f37e97cfbc22d2b4d1db1510d8f61e6a8866ad7f0e17c02b14182d37ea7c3c8b9c2683aeb6b733a1@52.169.14.227:30303,e節點://6ce05930c72abc632c58e2e4324f7c7ea478cec0ed4fa2528982cf34483094e9cbc9216e7aa349691242576d552a2a56aaeae426c5303ded677ce455ba1acd9d@13.84.180.240:30303“

看起來您已經擁有 2 個官方 Ropsten 節點。

根據 Geth 程式碼,在bootnodes.go

// TestnetBootnodes are the enode URLs of the P2P bootstrap nodes running on the
// Ropsten test network.
var TestnetBootnodes = []string{
   "enode://6ce05930c72abc632c58e2e4324f7c7ea478cec0ed4fa2528982cf34483094e9cbc9216e7aa349691242576d552a2a56aaeae426c5303ded677ce455ba1acd9d@13.84.180.240:30303", // US-TX
   "enode://20c9ad97c081d63397d7b685a412227a40e23c8bdc6688c6f37e97cfbc22d2b4d1db1510d8f61e6a8866ad7f0e17c02b14182d37ea7c3c8b9c2683aeb6b733a1@52.169.14.227:30303", // IE
}

// RinkebyBootnodes are the enode URLs of the P2P bootstrap nodes running on the
// Rinkeby test network.
var RinkebyBootnodes = []string{
   "enode://a24ac7c5484ef4ed0c5eb2d36620ba4e4aa13b8c84684e1b4aab0cebea2ae45cb4d375b77eab56516d34bfbd3c1a833fc51296ff084b770b94fb9028c4d25ccf@52.169.42.101:30303", // IE
   "enode://343149e4feefa15d882d9fe4ac7d88f885bd05ebb735e547f12e12080a9fa07c8014ca6fd7f373123488102fe5e34111f8509cf0b7de3f5b44339c9f25e87cb8@52.3.158.184:30303",  // INFURA
}

引用自:https://ethereum.stackexchange.com/questions/32440