[Ethereum] how to connect “Kovan” or “Rinkeby” from geth

go-ethereumkovanrinkeby

As far as I know, the default test network is "Ropsten" and you can connect to ropsten with following command.Since it is default, when you connect to testnet its "Ropsten".

geth --testnet

I would like to connect "Kovan" / "Rinkeby" test networks. What are the required parameters connecting to these test networks?

Best Answer

For rinkeby, just type geth --rinkeby from command prompt and you're in

Related Topic