# keys

This document provides instructions on key ring management. Features such as key add, key list and key delete are offered.

## keys add

{% hint style="info" %}
\--coin-type refers to BIP-0044 type tokens. 7777777 refers to FirmaChain officially listed on [satoshilabs](https://github.com/satoshilabs/slips/blob/master/slip-0044.md).
{% endhint %}

Add account to to Send, Stake or Sign.

```bash
firmachaind keys add <keyname> --coin-type 7777777
```

When you run the command, your wallet address, mnemonic and public key will be displayed. If you want to reconnect your wallet using your mnemonic, you can use the **`--recover`** flag.

```bash
firmachaind keys add <keyname> --coin-type 7777777 --recover
```

If you want to add additional accounts using the same mnemonic, use can use the **`--account`** flag. You add numbers (0, 1, 2 …) at the end of the flag. If you are not using the **`--account`** option, the value will be set to the default value of 0.

```bash
firmachaind keys add <keyname> --coin-type 7777777 --account 1
```

## keys list

You can view all the keys registered on the key ring.

```bash
firmachaind keys list
```

## keys show

This feature shows the details of a key by the key name or the address.

```bash
firmachaind keys show <keyname or address>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.firmachain.org/master/developer/firmachaind/sub-commands/keys.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
