The following functions and commands are subject to further testing and potential changed.
Metanovaverse Accounts
Metanovaverse defines its own custom Account type that uses Ethereum's ECDSA secp256k1 curve for keys. This satisfies the EIP84 for full BIP44 paths. The root HD path for Metanovaverses-based accounts is m/44'/60'/0'/0.
// EthAccount implements the authtypes.AccountI interface and embeds an// authtypes.BaseAccount type. It is compatible with the auth AccountKeeper.typeEthAccountstruct { *types.BaseAccount `protobuf:"bytes,1,opt,name=base_account,json=baseAccount,proto3,embedded=base_account" json:"base_account,omitempty" yaml:"base_account"`
CodeHash string `protobuf:"bytes,2,opt,name=code_hash,json=codeHash,proto3" json:"code_hash,omitempty" yaml:"code_hash"`
}
Addresses and Public Keys
BIP-0173 defines a new format for segregated witness output addresses that contains a human-readable part that identifies the Bech32 usage. BlockX uses the following HRP (human readable prefix) as the base HRP:
Network
Testnet
Mainnet
There are 3 main types of HRP for the Addresses/PubKeys available by default on Metanovaverse:
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.
Data items are coming soon
Address formats for clients
EthAccount can be represented in both Bech32 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.
You can query an account address using the CLI, gRPC or
Command Line Interface
# NOTE: the --output (-o) flag will define the output format in JSON or YAML (text)mnovadqauthaccount $(mnovadkeysshowmykey-a) -otext|'@type':/ethermint.types.v1.EthAccountbase_account:account_number:"0"address:mnova1z3t55m0l9h0eupuz3dp5t5cypyv674jj7mz2jwpub_key:'@type':/ethermint.crypto.v1.ethsecp256k1.PubKeykey:AsV5oddeB+hkByIJo/4lZiVUgXTzNfBPKC73cZ4K1YD2sequence:"1"code_hash:0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470
Cosmos gRPC and REST
# GET /cosmos/auth/v1beta1/accounts/{address}curl -X GET "http://localhost:10337/cosmos/auth/v1beta1/accounts/mnova14au322k9munkmx5wrchz9q30juf5wjgz2cfqku" -H "accept: application/json"
JSON-RPC
To retrieve the Ethereum hex address using Web3, use the JSON-RPC eth_accounts or personal_listAccounts endpoints:
# query against a local nodecurl -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