SVG Definitions

keystore remove

Remove a keystore from local storage.

Removes a keystore from disk by alias.

Usage

namera keystore remove [--alias <name>]

Aliases:

  • Group alias: namera k
  • Command alias: remove -> rm

Flags

  • --alias, -a: Keystore alias to remove

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.remove

Expected shape:

{
  "alias": "my-wallet"
}

Output

On success, the command returns:

  • success: true

Examples

Interactive (select a keystore):

namera keystore remove

Partial flags (no prompt):

namera keystore remove --alias my-wallet

Params mode (agents):

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

Short aliases:

namera k rm -a my-wallet

Schema lookup:

namera schema keystore.remove