> For the complete documentation index, see [llms.txt](https://effortless-labs.gitbook.io/hyperbola/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://effortless-labs.gitbook.io/hyperbola/token-balance.md).

# Token Balance

### Registry Fields

| Field Name     | Type   | Description                                                    |
| -------------- | ------ | -------------------------------------------------------------- |
| `tokenAddress` | string | The contract address of the token (ERC-20 or similar).         |
| `rawBalance`   | string | The raw balance in the smallest unit (e.g., wei for ETH).      |
| `decimals`     | number | Number of decimal places used by the token (e.g., 18 for ETH). |
| `network`      | string | The name or ID of the EVM-compatible network                   |

### Example Entry

```json
{
  "tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
  "rawBalance": "234000000",
  "decimals": 6,
  "network": "ethereum"
}
```
