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, orndjson--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.infoExpected shape:
{
"alias": "my-wallet"
}Output
On success, the command returns:
alias: Keystore aliasaddress: Derived addresspath: Filesystem path to the keystore
Examples
Interactive (select a keystore):
namera keystore infoPartial flags (no prompt):
namera keystore info --alias my-walletParams mode (agents):
namera keystore info --params '{"alias":"my-wallet"}'Short alias group:
namera k info -a my-walletSchema lookup:
namera schema keystore.info