get_wallet_overview
Retrieve a detailed overview of a wallet, including EDU balance, tokens, and NFTs, by specifying the wallet address and optional token or NFT contract addresses.
Instructions
Get an overview of a wallet including EDU, tokens, and NFTs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
nftAddresses | No | List of NFT contract addresses to check | |
tokenAddresses | No | List of token contract addresses to check | |
walletAddress | Yes | Wallet address to check |
Input Schema (JSON Schema)
{
"properties": {
"nftAddresses": {
"description": "List of NFT contract addresses to check",
"items": {
"type": "string"
},
"type": "array"
},
"tokenAddresses": {
"description": "List of token contract addresses to check",
"items": {
"type": "string"
},
"type": "array"
},
"walletAddress": {
"description": "Wallet address to check",
"type": "string"
}
},
"required": [
"walletAddress"
],
"type": "object"
}