Backup

Mnemonics

When you create a new key, you'll receive a mnemonic phrase that can be used to restore that key. Backup the mnemonic phrase:

mnovad keys add mykey
{
  "name": "mykey",
  "type": "local",
  "address": "mnova1n253dl2tgyhxjm592p580c38r4dn8023ctv28d",
  "pubkey": '{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"ArJhve4v5HkLm+F7ViASU/rAGx7YrwU4+XKV2MNJt+Cq"}',
  "mnemonic": ""
}

**Important** write this mnemonic phrase in a safe place.
It is the only way to recover your account if you ever forget your password.

# <24 word mnemonic phrase>

To restore the key:

$ mnovad keys add mykey-restored --recover
> Enter your bip39 mnemonic
banner genuine height east ghost oak toward reflect asset marble else explain foster car nest make van divide twice culture announce shuffle net peanut
{
  "name": "mykey-restored",
  "type": "local",
  "address": "mnova1n253dl2tgyhxjm592p580c38r4dn8023ctv28d",
  "pubkey": '{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"ArJhve4v5HkLm+F7ViASU/rAGx7YrwU4+XKV2MNJt+Cq"}'
}

Export Key

Tendermint-Formatted Private Keys

To backup this type of key without the mnemonic phrase, do the following:

Ethereum-Formatted Private Keys (MetaMask-compatible)

To backup this type of key without the mnemonic phrase, do the following:

Import Key

Tendermint-Formatted Private Keys

Ethereum-Formatted Private Keys

Verification

Verify that your key has been restored using the following command:

Last updated