FIRMACHAIN
OFFICIAL WEBMEDIUMTELEGRAMREDDIT
  • Overview
  • # NODE & VALIDATORS GUIDE
    • Run a full node
      • Specification
      • OS package settings
      • Installation firmachaind
      • Upgrade your node
      • Join a FirmaChain network
        • Snapshot
        • Syncing from genesis
        • State sync
      • Run a Cosmovisor
        • Guide
        • Example
      • Run a System Deamon
    • Validator
      • Management key
      • Register a validator
      • Edit a validator
      • Unjail
      • FAQ
    • Genesis Validator
    • History
      • Upgrade Mainnet
      • Reward Testnet (Terminated)
        • Participate
        • Test app
  • # DEVELOPER
    • EndPoints
    • firma-js
    • firmachaind
      • commands
      • sub commands
        • keys
        • query (q)
        • transaction (tx)
    • Modules
      • Contract
        • Log
        • File
        • Bulk Insert
        • Utils
      • NFT
        • Usage
        • Bulk Insert (minting)
        • Utils
      • Token
        • Usage
        • Utils
  • # General Guide
    • Station
    • Ledger
      • Install
      • Usage on FirmaStation
      • Usage on FirmaChain-CLI
Powered by GitBook
On this page
  • keys add
  • keys list
  • keys show
  1. # DEVELOPER
  2. firmachaind
  3. sub commands

keys

Previoussub commandsNextquery (q)

Last updated 2 years ago

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

keys add

--coin-type refers to BIP-0044 type tokens. 7777777 refers to FirmaChain officially listed on .

Add account to to Send, Stake or Sign.

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.

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.

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

keys list

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

firmachaind keys list

keys show

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

firmachaind keys show <keyname or address>
satoshilabs