diff --git a/docs/basics/accounts.md b/docs/basics/accounts.md index 12817324..04432598 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 7f00e007..6ef0ab18 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 f4e17d50..7078c506 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 da3ba5bc..44eafbdf 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 6303c05c..98ca23de 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