# Accounts
This document describes the in-built accounts system of Haqq.
# Pre-requisite Readings
# HAQQ Accounts
Haqq defines its own custom Account
type that uses Ethereum's ECDSA secp256k1 curve for keys. This
satisfies the EIP84 (opens new window) for full BIP44 (opens new window) paths.
The root HD path for Haqq-based accounts is m/44'/60'/0'/0
.
# Addresses and Public Keys
BIP-0173 (opens new window) defines a new format for segregated witness output addresses that contains a human-readable part that identifies the Bech32 usage. Haqq uses the following HRP (human readable prefix) as the base HRP:
Network | Mainnet | Testnet | Regtest |
---|---|---|---|
Haqq | haqq | haqq |
There are 3 main types of HRP for the Addresses
/PubKeys
available by default on Haqq:
- Addresses and Keys for accounts, which identify users (e.g. the sender of a
message
). They are derived using theeth_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 | |
---|---|---|---|---|---|
Accounts | haqq | haqqpub | eth_secp256k1 | 20 | 33 (compressed) |
Validator Operator | haqqvaloper | haqqvaloperpub | eth_secp256k1 | 20 | 33 (compressed) |
Consensus Nodes | haqqvalcons | haqqvalconspub | ed25519 | 20 | 32 |
# Address formats for clients
EthAccount
can be represented in both Bech32 (opens new window) (haqq1...
) and hex (0x...
) formats 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
Cosmos sdk.AccAddress
.
- Address (Bech32):
haqq1z3t55m0l9h0eupuz3dp5t5cypyv674jj7mz2jw
- Address (EIP55 (opens new window) Hex):
0x91defC7fE5603DFA8CC9B655cF5772459BF10c6f
- Compressed Public Key:
{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"AsV5oddeB+hkByIJo/4lZiVUgXTzNfBPKC73cZ4K1YD2"}
# Address conversion
The Haqqd debug addr <address>
can be used to convert an address between hex and bech32 formats. For example:
# Key output
The Cosmos SDK Keyring output (i.e haqqd keys
) only supports addresses and public keys in Bech32 format.
We can use the keys show
command of haqqd
with the flag --bech <type> (acc|val|cons)
to
obtain the addresses and keys as mentioned above,
# Querying an Account
You can query an account address using the CLI, gRPC or
# Command Line Interface
# Cosmos gRPC and REST
# JSON-RPC
To retrieve the Ethereum hex address using Web3, use the JSON-RPC eth_accounts
or personal_listAccounts
endpoints: