wallet_remove
Remove a local account only with force, backup confirmation and human approval
Read as MarkdownResult
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
Full tool description
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.
| Field | Type / required | Description |
|---|---|---|
| name | string Required | See schema for details. pattern: "^[a-z0-9][a-z0-9_-]{0,63}$" |
| force | boolean Optional | See schema for details. default: false |
| backupConfirmed | boolean 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"
}