2020-07-02 08:22:45 +00:00
<!--
2021-08-17 14:11:26 +00:00
order: 2
2020-07-02 08:22:45 +00:00
-->
# Accounts
This document describes the in-built accounts system of Ethermint. {synopsis}
2020-08-28 15:35:10 +00:00
## Pre-requisite Readings
2020-07-02 08:22:45 +00:00
2020-08-28 15:35:10 +00:00
- [Cosmos SDK Accounts ](https://docs.cosmos.network/master/basics/accounts.html ) {prereq}
- [Ethereum Accounts ](https://ethereum.org/en/whitepaper/#ethereum-accounts ) {prereq}
2020-07-02 08:22:45 +00:00
## Ethermint Accounts
2020-08-28 15:35:10 +00:00
Ethermint defines its own custom `Account` type that uses Ethereum's ECDSA secp256k1 curve for keys. This
satisfies the [EIP84 ](https://github.com/ethereum/EIPs/issues/84 ) for full [BIP44 ](https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki ) paths.
The root HD path for Ethermint-based accounts is `m/44'/60'/0'/0` .
2021-08-03 17:35:31 +00:00
+++ https://github.com/tharsis/ethermint/blob/main/types/account.pb.go#L28-L33
2020-08-28 15:35:10 +00:00
## Addresses and Public Keys
2021-08-09 21:21:21 +00:00
[BIP-0173 ](https://github.com/satoshilabs/slips/blob/master/slip-0173.md ) defines a new format for segregated witness output addresses that contains a human-readable part that identifies the Bech32 usage. Ethermint uses the following HRP (human readable prefix) as the base HRP:
| Network | Mainnet | Testnet | Regtest |
2021-08-23 07:21:27 +00:00
|-----------|---------|---------|---------|
| Ethermint | `ethm` | `ethm` | |
2021-08-09 21:21:21 +00:00
There are 3 main types of HRP for the `Addresses` /`PubKeys` available by default on Ethermint:
2020-08-28 15:35:10 +00:00
- Addresses and Keys for **accounts** , which identify users (e.g. the sender of a `message` ). They are derived using the ** `eth_secp256k1` ** curve.
- Addresses and Keys for **validator operators** , which identify the operators of validators. They are derived using the ** `eth_secp256k1` ** curve.
- Addresses and Keys for **consensus nodes** , which identify the validator nodes participating in consensus. They are derived using the ** `ed25519` ** curve.
| | Address bech32 Prefix | Pubkey bech32 Prefix | Curve | Address byte length | Pubkey byte length |
|--------------------|-----------------------|----------------------|-----------------|---------------------|--------------------|
2021-08-30 14:57:46 +00:00
| Accounts | `ethm` | `ethmpub` | `eth_secp256k1` | `20` | `33` (compressed) |
2021-08-23 07:21:27 +00:00
| Validator Operator | `ethmvaloper` | `ethmvaloperpub` | `eth_secp256k1` | `20` | `33` (compressed) |
| Consensus Nodes | `ethmvalcons` | `ethmvalconspub` | `ed25519` | `20` | `32` |
2020-07-02 08:22:45 +00:00
## Address formats for clients
2021-08-23 07:21:27 +00:00
`EthAccount` can be represented in both [Bech32 ](https://en.bitcoin.it/wiki/Bech32 ) (`ethm1...`) and hex (`0x...`) formats for Ethereum's Web3 tooling compatibility.
2020-08-28 15:35:10 +00:00
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
Cosmos `sdk.AccAddress` .
2021-08-24 00:39:10 +00:00
- **Address (Bech32)**: `ethm1j800cll9vq7l4rxfke2u74mjgkdlzrr0r5mu97`
- **Address ([EIP55](https://eips.ethereum.org/EIPS/eip-55) Hex)**: `0x91defC7fE5603DFA8CC9B655cF5772459BF10c6f`
- **Compressed Public Key**: `{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"Aq9WtHGKtvX523b2ptvimGVfp3hZ1GDxVdINYWBM9+Gy"}`
2021-08-09 21:21:21 +00:00
### Address conversion
The `ethermintd debug addr <address>` can be used to convert an address between hex and bech32 formats. For example:
2021-08-24 00:39:10 +00:00
:::: tabs
::: tab Bech32
2021-08-09 21:21:21 +00:00
```bash
2021-08-24 00:39:10 +00:00
ethermintd debug addr ethm10jmp6sgh4cc6zt3e8gw05wavvejgr5pwtu750w
Address bytes: [124 182 29 65 23 174 49 161 46 57 58 28 250 59 172 102 100 129 208 46]
2021-08-20 09:01:57 +00:00
Address (hex): 7CB61D4117AE31A12E393A1CFA3BAC666481D02E
Address (EIP-55): 0x7cB61D4117AE31a12E393a1Cfa3BaC666481D02E
2021-08-24 00:39:10 +00:00
Bech32 Acc: ethm10jmp6sgh4cc6zt3e8gw05wavvejgr5pwtu750w
Bech32 Val: ethmvaloper10jmp6sgh4cc6zt3e8gw05wavvejgr5pwyv5chn
```
2021-08-20 09:01:57 +00:00
2021-08-24 00:39:10 +00:00
:::
::: tab Hex
```bash
2021-08-20 09:01:57 +00:00
ethermintd debug addr 0x7cB61D4117AE31a12E393a1Cfa3BaC666481D02E
2021-08-24 00:39:10 +00:00
Address bytes: [124 182 29 65 23 174 49 161 46 57 58 28 250 59 172 102 100 129 208 46]
2021-08-20 09:01:57 +00:00
Address (hex): 7CB61D4117AE31A12E393A1CFA3BAC666481D02E
Address (EIP-55): 0x7cB61D4117AE31a12E393a1Cfa3BaC666481D02E
2021-08-24 00:39:10 +00:00
Bech32 Acc: ethm10jmp6sgh4cc6zt3e8gw05wavvejgr5pwtu750w
Bech32 Val: ethmvaloper10jmp6sgh4cc6zt3e8gw05wavvejgr5pwyv5chn
2021-08-09 21:21:21 +00:00
```
2021-08-24 00:39:10 +00:00
:::
::::
2021-08-09 21:21:21 +00:00
### Key output
::: tip
The Cosmos SDK Keyring output (i.e `ethermintd keys` ) only supports addresses and public keys in Bech32 format.
:::
We can use the `keys show` command of `ethermintd` with the flag `--bech <type> (acc|val|cons)` to
obtain the addresses and keys as mentioned above,
2021-08-24 00:39:10 +00:00
:::: tabs
::: tab Account
2021-08-09 21:21:21 +00:00
```bash
ethermintd keys show mykey --bech acc
- name: mykey
type: local
2021-08-23 07:21:27 +00:00
address: ethm1qsklxwt77qrxur494uvw07zjynu03dq9alwh37
2021-08-17 15:30:35 +00:00
pubkey: '{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"A8nbJ3eW9oAb2RNZoS8L71jFMfjk6zVa1UISYgKK9HPm"}'
2021-08-09 21:21:21 +00:00
mnemonic: ""
2021-08-24 00:39:10 +00:00
```
2021-08-09 21:21:21 +00:00
2021-08-24 00:39:10 +00:00
:::
::: tab Validator
```bash
2021-08-09 21:21:21 +00:00
ethermintd keys show test --bech val
- name: mykey
type: local
2021-08-24 00:39:10 +00:00
address: ethmvaloper1qsklxwt77qrxur494uvw07zjynu03dq9rdsrlq
2021-08-17 15:30:35 +00:00
pubkey: '{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"A8nbJ3eW9oAb2RNZoS8L71jFMfjk6zVa1UISYgKK9HPm"}'
2021-08-09 21:21:21 +00:00
mnemonic: ""
2021-08-24 00:39:10 +00:00
```
2021-08-09 21:21:21 +00:00
2021-08-24 00:39:10 +00:00
:::
::: tab Consensus
```bash
2021-08-09 21:21:21 +00:00
ethermintd keys show test --bech cons
- name: mykey
type: local
2021-08-24 00:39:10 +00:00
address: ethmvalcons1qsklxwt77qrxur494uvw07zjynu03dq9h7rlnp
2021-08-17 15:30:35 +00:00
pubkey: '{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"A8nbJ3eW9oAb2RNZoS8L71jFMfjk6zVa1UISYgKK9HPm"}'
2021-08-09 21:21:21 +00:00
mnemonic: ""
```
2021-08-24 00:39:10 +00:00
:::
::::
2021-08-09 21:21:21 +00:00
## Querying an Account
2020-08-28 15:35:10 +00:00
2021-08-09 21:21:21 +00:00
You can query an account address using the CLI, gRPC or
### Command Line Interface
2020-09-08 13:57:49 +00:00
```bash
# NOTE: the --output (-o) flag will define the output format in JSON or YAML (text)
2021-08-03 17:35:31 +00:00
ethermintd q auth account $(ethermintd keys show < MYKEY > -a) -o text
2020-09-08 13:57:49 +00:00
|
2021-08-09 21:21:21 +00:00
'@type': /ethermint.types.v1beta1.EthAccount
base_account:
account_number: "3"
address: inj14au322k9munkmx5wrchz9q30juf5wjgz2cfqku
pub_key: null
sequence: "0"
code_hash: xdJGAYb3IzySfn2y3McDwOUAtlPKgic7e/rYBF2FpHA=
2020-09-08 13:57:49 +00:00
```
2021-08-09 21:21:21 +00:00
### Cosmos gRPC and REST
2020-09-08 13:57:49 +00:00
``` bash
2021-08-09 21:21:21 +00:00
# GET /cosmos/auth/v1beta1/accounts/{address}
2021-08-23 07:21:27 +00:00
curl -X GET "http://localhost:10337/cosmos/auth/v1beta1/accounts/ethm14au322k9munkmx5wrchz9q30juf5wjgz2cfqku" -H "accept: application/json"
2020-09-08 13:57:49 +00:00
```
2021-08-09 21:21:21 +00:00
### JSON-RPC
2020-09-08 13:57:49 +00:00
2021-09-04 10:18:32 +00:00
To retrieve the Ethereum hex address using Web3, use the JSON-RPC [`eth_accounts` ](./../api/json-rpc/endpoints.md#eth-accounts ) or [`personal_listAccounts` ](./../api/json-rpc/endpoints#personal-listAccounts.md ) endpoints:
2020-09-08 13:57:49 +00:00
```bash
# query against a local node
2021-08-09 21:21:21 +00:00
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_accounts","params":[],"id":1}' -H "Content-Type: application/json" http://localhost:8545
curl -X POST --data '{"jsonrpc":"2.0","method":"personal_listAccounts","params":[],"id":1}' -H "Content-Type: application/json" http://localhost:8545
2020-09-08 13:57:49 +00:00
```