SVG Definitions

keystore info

Show metadata for a single keystore.

Fetches metadata for a single keystore by alias.

Usage

namera keystore info [--alias <name>]

Aliases:

  • Group alias: namera k
  • Command alias: none

Flags

  • --alias, -a: Keystore alias to look up

Global flags:

  • --params: Raw JSON parameters for agent-driven execution
  • --output, -o: pretty, json, or ndjson
  • --quite, -q: Suppress output

If --alias is missing, the CLI will prompt you to select a keystore.

Params mode (agents)

Use --params with the JSON schema for the command:

namera schema keystore.info

Expected shape:

{
  "alias": "my-wallet"
}

Output

On success, the command returns:

  • alias: Keystore alias
  • address: Derived address
  • path: Filesystem path to the keystore

Examples

Interactive (select a keystore):

namera keystore info

Partial flags (no prompt):

namera keystore info --alias my-wallet

Params mode (agents):

namera keystore info --params '{"alias":"my-wallet"}'

Short alias group:

namera k info -a my-wallet

Schema lookup:

namera schema keystore.info