archive_wallet_group
Archive wallet groups on Armor Crypto MCP by providing a list of group names. Returns structured responses for each archived group, streamlining blockchain wallet management.
Instructions
Archive wallet groups.
Expects a list of group names, returns a list of GroupArchiveOrUnarchiveResponse.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archive_wallet_group_requests | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ArchiveWalletGroupRequest": {
"properties": {
"group": {
"description": "Name of the group to archive",
"title": "Group",
"type": "string"
}
},
"required": [
"group"
],
"title": "ArchiveWalletGroupRequest",
"type": "object"
},
"ArchiveWalletGroupRequestContainer": {
"properties": {
"archive_wallet_group_requests": {
"items": {
"$ref": "#/$defs/ArchiveWalletGroupRequest"
},
"title": "Archive Wallet Group Requests",
"type": "array"
}
},
"required": [
"archive_wallet_group_requests"
],
"title": "ArchiveWalletGroupRequestContainer",
"type": "object"
}
},
"properties": {
"archive_wallet_group_requests": {
"$ref": "#/$defs/ArchiveWalletGroupRequestContainer"
}
},
"required": [
"archive_wallet_group_requests"
],
"title": "archive_wallet_groupArguments",
"type": "object"
}