| Field | Value |
|---|---|
| Name | describeAccount |
| Title | Describe Account |
| Description | Get symbol metadata for an account. Returns a map of Symbol -> Symbol metadata (possibly nil). |
Input Schema
{
"type": "object",
"required": ["address"],
"properties": {
"address": {
"type": "string",
"description": "Address of the account to describe (e.g. '#11' or '11')"
}
}
}Output Schema
{
"type": "object",
"properties": {
"metadata": {
"type": "object",
"description": "Map of Symbol -> Symbol metadata (possibly nil)"
}
}
}