EDUCHAIN Agent Kit

get_wallet_overview

Get an overview of a wallet including EDU, tokens, and NFTs

Input Schema

NameRequiredDescriptionDefault
nftAddressesNoList of NFT contract addresses to check
tokenAddressesNoList of token contract addresses to check
walletAddressYesWallet 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" }