From e7a19a1c0a554f7dc86a5d5e5cb494f1b63d0300 Mon Sep 17 00:00:00 2001 From: Justin Thompson <37157877+J-Thompson12@users.noreply.github.com> Date: Tue, 6 Oct 2020 02:45:56 -0600 Subject: [PATCH] random doc fixes (#560) * add the rest of the eth methods * added the rest of the namespaces * get rid of extra space * doc bug fixes * remove space Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com> --- docs/basics/accounts.md | 2 +- docs/guides/metamask.md | 2 +- docs/quickstart/README.md | 2 +- docs/quickstart/clients.md | 2 ++ docs/quickstart/testnet.md | 1 + 5 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/basics/accounts.md b/docs/basics/accounts.md index 12817324a..044325984 100644 --- a/docs/basics/accounts.md +++ b/docs/basics/accounts.md @@ -35,7 +35,7 @@ There are 3 main types of `Addresses`/`PubKeys` available by default on Ethermin ## Address formats for clients -`EthAccount`s have can be represented in both [Bech32](https://en.bitcoin.it/wiki/Bech32) and hex format for Ethereum's Web3 tooling compatibility. +`EthAccount`s can be represented in both [Bech32](https://en.bitcoin.it/wiki/Bech32) and hex format for Ethereum's Web3 tooling compatibility. The Bech32 format is the default format for Cosmos-SDK queries and transactions through CLI and REST clients. The hex format on the other hand, is the Ethereum `common.Address` representation of a diff --git a/docs/guides/metamask.md b/docs/guides/metamask.md index 7f00e0071..6ef0ab184 100644 --- a/docs/guides/metamask.md +++ b/docs/guides/metamask.md @@ -26,7 +26,7 @@ ethermintcli rest-server --laddr "tcp://localhost:8545" --unlock-key mykey --cha ## Adding a custom Network for Ethermint -One og the main limitations of using the default `Localhost 8545` network is that the tokens will be represented as `ETH`. +One of the main limitations of using the default `Localhost 8545` network is that the tokens will be represented as `ETH`. Open the Metamask extension on your browser, you may have to log in to your Metamask account if you are not already. Then click the top right circle and go to `Settings` > `Networks`. Press the `Add diff --git a/docs/quickstart/README.md b/docs/quickstart/README.md index f4e17d507..7078c5068 100644 --- a/docs/quickstart/README.md +++ b/docs/quickstart/README.md @@ -8,7 +8,7 @@ parent: This repository contains reference documentation on how to install and run an Etheremint full node. -1. [Installation](./run_node.md) +1. [Installation](./installation.md) 2. [Run a Node](./run_node.md) 3. [Testnet](./testnet.md) 4. [Validator Setup](./validator-setup.md) diff --git a/docs/quickstart/clients.md b/docs/quickstart/clients.md index da3ba5bc9..44eafbdf6 100644 --- a/docs/quickstart/clients.md +++ b/docs/quickstart/clients.md @@ -57,6 +57,8 @@ Some of the JSON-RPC API [namespaces](https://geth.ethereum.org/docs/rpc/server) To connect to the JSON-PRC server, use the `rest-server` command as shown on the section above. Then, you can point any Ethereum development tooling to `http://localhost:8545` or whatever port you choose with the listen address flag (`--laddr`). +For further information JSON-RPC calls, please refer to [this](../basics/json_rpc.md) document. + ## Next {hide} Process and subscribe to [events](./events.md) via websockets {hide} diff --git a/docs/quickstart/testnet.md b/docs/quickstart/testnet.md index 6303c05c0..98ca23de8 100644 --- a/docs/quickstart/testnet.md +++ b/docs/quickstart/testnet.md @@ -11,6 +11,7 @@ Learn how to deploy a local testnet or connect to an existing public one {synops - [Install Ethermint](./installation.md) {prereq} - [Install Docker](https://docs.docker.com/engine/installation/) {prereq} - [Install docker-compose](https://docs.docker.com/compose/install/) {prereq} + ## Single-node, Local, Manual Testnet