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>
This commit is contained in:
Justin Thompson 2020-10-06 02:45:56 -06:00 committed by GitHub
parent f95011907a
commit e7a19a1c0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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)

View File

@ -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}

View File

@ -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}
<!-- - [Install `jq`](https://stedolan.github.io/jq/download/) {prereq} -->
## Single-node, Local, Manual Testnet