add_wallets_to_group
Organize crypto wallets efficiently by adding multiple wallets to a specified group using this tool. Simplify blockchain management for structured operations and strategies.
Instructions
Add wallets to a specified group.
Expects the group name and a list of wallet names, returns a list of AddWalletToGroupResponse.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
add_wallet_to_group_requests | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"AddWalletToGroupRequest": {
"properties": {
"group": {
"description": "Name of the group to add wallets to",
"title": "Group",
"type": "string"
},
"wallet": {
"description": "Name of the wallet to add to the group",
"title": "Wallet",
"type": "string"
}
},
"required": [
"group",
"wallet"
],
"title": "AddWalletToGroupRequest",
"type": "object"
},
"AddWalletToGroupRequestContainer": {
"properties": {
"add_wallet_to_group_requests": {
"items": {
"$ref": "#/$defs/AddWalletToGroupRequest"
},
"title": "Add Wallet To Group Requests",
"type": "array"
}
},
"required": [
"add_wallet_to_group_requests"
],
"title": "AddWalletToGroupRequestContainer",
"type": "object"
}
},
"properties": {
"add_wallet_to_group_requests": {
"$ref": "#/$defs/AddWalletToGroupRequestContainer"
}
},
"required": [
"add_wallet_to_group_requests"
],
"title": "add_wallets_to_groupArguments",
"type": "object"
}