archive_wallets
Archive multiple wallets by providing their names in a single request. Returns status responses for each wallet processed within the Armor Crypto MCP server, streamlining management for blockchain operations.
Instructions
Archive wallets.
Expects a list of wallet names, returns a list of WalletArchiveOrUnarchiveResponse.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archive_wallet_requests | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ArchiveWalletsRequest": {
"properties": {
"wallet": {
"description": "Name of the wallet to archive",
"title": "Wallet",
"type": "string"
}
},
"required": [
"wallet"
],
"title": "ArchiveWalletsRequest",
"type": "object"
},
"ArchiveWalletsRequestContainer": {
"properties": {
"archive_wallet_requests": {
"items": {
"$ref": "#/$defs/ArchiveWalletsRequest"
},
"title": "Archive Wallet Requests",
"type": "array"
}
},
"required": [
"archive_wallet_requests"
],
"title": "ArchiveWalletsRequestContainer",
"type": "object"
}
},
"properties": {
"archive_wallet_requests": {
"$ref": "#/$defs/ArchiveWalletsRequestContainer"
}
},
"required": [
"archive_wallet_requests"
],
"title": "archive_walletsArguments",
"type": "object"
}