create_wallet
Generate new cryptocurrency wallets by specifying wallet names. Returns WalletInfo for created wallets. Part of Armor Crypto MCP server for blockchain operations.
Instructions
Create new wallets.
Expects a list of wallet names, returns a list of WalletInfo.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
create_wallet_requests | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"CreateWalletRequest": {
"properties": {
"name": {
"description": "Name of the wallet to create",
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"title": "CreateWalletRequest",
"type": "object"
},
"CreateWalletRequestContainer": {
"properties": {
"create_wallet_requests": {
"items": {
"$ref": "#/$defs/CreateWalletRequest"
},
"title": "Create Wallet Requests",
"type": "array"
}
},
"required": [
"create_wallet_requests"
],
"title": "CreateWalletRequestContainer",
"type": "object"
}
},
"properties": {
"create_wallet_requests": {
"$ref": "#/$defs/CreateWalletRequestContainer"
}
},
"required": [
"create_wallet_requests"
],
"title": "create_walletArguments",
"type": "object"
}