← BSV MCPInstall
Wallet

wallet_remove

Remove a local account only with force, backup confirmation and human approval. Fund absence cannot be proven across all derived addresses. Cannot remove the active account; never sweeps funds.

Read as Markdown

Result

Account removal status or an error.

Permissions

Requires force, backup confirmation and human approval. The active account cannot be removed.

Inputs and availability

Full catalog · Legacy local wallet; Legacy local identity; Local Vault · broadcasting disabled; Local Vault · all roles; Local Vault · payment role only; Local Vault + sponsor

FieldType / requiredDescription
namestring
Required
See schema for details.

pattern: "^[a-z0-9][a-z0-9_-]{0,63}$"

forceboolean
Optional
See schema for details.

default: false

backupConfirmedboolean
Optional
See schema for details.

default: false

Nested fields are required only when their parent object or array item is supplied.

Full input schema
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "pattern": "^[a-z0-9][a-z0-9_-]{0,63}$"
    },
    "force": {
      "default": false,
      "type": "boolean"
    },
    "backupConfirmed": {
      "default": false,
      "type": "boolean"
    }
  },
  "required": [
    "name"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}