get_assets
Retrieve asset holdings for a given crypto address using the BICScan MCP Server. Input an EOA, CA, ENS, CNS, or KNS to receive a detailed list of associated assets.
Instructions
Get Assets holdings by CryptoAddress
Args:
address: EOA, CA, ENS, CNS, KNS.
Returns:
Dict: where assets is a list of assets
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"title": "Address",
"type": "string"
}
},
"required": [
"address"
],
"title": "get_assetsArguments",
"type": "object"
}