unarchive_wallets
Restores archived wallets by processing a list of wallet names, enabling access to stored data and operations within the Armor Crypto MCP blockchain ecosystem.
Instructions
Unarchive wallets.
Expects a list of wallet names, returns a list of WalletArchiveOrUnarchiveResponse.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
unarchive_wallet_requests | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"UnarchiveWalletRequestContainer": {
"properties": {
"unarchive_wallet_requests": {
"items": {
"$ref": "#/$defs/UnarchiveWalletsRequest"
},
"title": "Unarchive Wallet Requests",
"type": "array"
}
},
"required": [
"unarchive_wallet_requests"
],
"title": "UnarchiveWalletRequestContainer",
"type": "object"
},
"UnarchiveWalletsRequest": {
"properties": {
"wallet": {
"description": "Name of the wallet to unarchive",
"title": "Wallet",
"type": "string"
}
},
"required": [
"wallet"
],
"title": "UnarchiveWalletsRequest",
"type": "object"
}
},
"properties": {
"unarchive_wallet_requests": {
"$ref": "#/$defs/UnarchiveWalletRequestContainer"
}
},
"required": [
"unarchive_wallet_requests"
],
"title": "unarchive_walletsArguments",
"type": "object"
}