get_all_wallets
Retrieve a list of wallets and their associated assets, including balances, for blockchain operations. Specify whether to include archived wallets.
Instructions
Retrieve all wallets with balances.
Returns a list of Wallets and asssets
Input Schema
Name | Required | Description | Default |
---|---|---|---|
get_all_wallets_requests | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ListWalletsRequest": {
"properties": {
"is_archived": {
"default": false,
"description": "whether to include archived wallets",
"title": "Is Archived",
"type": "boolean"
}
},
"title": "ListWalletsRequest",
"type": "object"
}
},
"properties": {
"get_all_wallets_requests": {
"$ref": "#/$defs/ListWalletsRequest"
}
},
"required": [
"get_all_wallets_requests"
],
"title": "get_all_walletsArguments",
"type": "object"
}