From e31fcc7012078d088740dc8bd18660b9fd4c5fef Mon Sep 17 00:00:00 2001 From: Daniel Choi <13338103+araskachoi@users.noreply.github.com> Date: Tue, 2 Mar 2021 11:41:12 -0800 Subject: [PATCH] update join_network docs (#827) * update join_network docs * add flag to cmd * edit rpc-api flag --- docs/guides/join_network.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guides/join_network.md b/docs/guides/join_network.md index e2ac886d..3f98bffa 100644 --- a/docs/guides/join_network.md +++ b/docs/guides/join_network.md @@ -13,7 +13,7 @@ This document outlines the steps to join the public testnet hosted by [Chainsafe ```bash git clone https://github.com/cosmos/ethermint cd ethermint - git checkout v0.3.1 + git checkout v0.4.1 make install ``` @@ -32,7 +32,7 @@ This document outlines the steps to join the public testnet hosted by [Chainsafe Edit the file located in ~/.ethermintd/config/config.toml and edit line 350 (persistent_peers) to the following ```toml - "7678d52de4a724e468e503a7743664d12a78b5b0@18.204.206.179:26656,c62fadc76b7fa1ab25669b64fdc00c8d8d422bd0@3.86.104.251:26656,5fa7d4550b57298b059d1dd8af01829482e7d097@54.210.246.165:26656" + "05aa6587f07a0c6a9a8213f0138c4a76d476418a@18.204.206.179:26656,13d4a1c16d1f427988b7c499b6d150726aaf3aa0@3.86.104.251:26656,a00db749fa51e485c8376276d29d599258052f3e@54.210.246.165:26656" ``` 5. Validate genesis and start the Ethermint network @@ -48,7 +48,7 @@ This document outlines the steps to join the public testnet hosted by [Chainsafe 6. Start the RPC server ```bash - ethermintcli rest-server --laddr "tcp://localhost:8545" --unlock-key $KEY --chain-id etherminttestnet-777 --trace + ethermintcli rest-server --laddr "tcp://localhost:8545" --unlock-key $KEY --chain-id etherminttestnet-777 --trace --rpc-api "web3,eth,net" ``` where `$KEY` is the key name that was used in step 2.