wallet_generate
Explicitly create a named encrypted account after human approval. Requires BSV_MCP_PASSWORD configured locally. Returns only its public address; back up keys.bep and config.json before funding.
Read as MarkdownResult
Public account details after creation; no private key is returned.
Permissions
Requires human approval through the account command flow and a password configured locally.
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
| Field | Type / required | Description |
|---|---|---|
| name | string Required | See schema for details. pattern: "^[a-z0-9][a-z0-9_-]{0,63}$" |
| chain | "main" | "test" Required | See schema for details. |
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}$"
},
"chain": {
"type": "string",
"enum": [
"main",
"test"
]
}
},
"required": [
"name",
"chain"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}