> ## Documentation Index
> Fetch the complete documentation index at: https://base-a060aa97-docs-sync-code-change-be6d045.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# IB20Asset.scaledBalanceOf

> Generated B20 reference for scaledBalanceOf(address).

## Signature

```solidity IB20Asset.sol theme={null}
function scaledBalanceOf(address account) external view returns (uint256);
```

| Field               | Value                      |
| ------------------- | -------------------------- |
| Selector            | `0x1da24f3e`               |
| Canonical signature | `scaledBalanceOf(address)` |

## Description

Convenience for `toUIAmount(balanceOf(account))`. Returns the account's raw ERC-20 balance expressed in its scaled (UI) form by applying the active multiplier. Equivalent to `balanceOfUI` in the ERC-8056 Balances extension.

## Parameters

| Name      | Type      | Description                                    |
| --------- | --------- | ---------------------------------------------- |
| `account` | `address` | Account whose scaled balance is being queried. |

## Returns

| Type      | Description                                                                 |
| --------- | --------------------------------------------------------------------------- |
| `uint256` | Scaled balance: `balanceOf(account) * uiMultiplier() / 1e18`, rounded down. |

## Access Control

Read-only. No role required.

## Policy Interaction

No direct policy interaction.

## Example

```solidity Usage Example theme={null}
IB20Asset(target).scaledBalanceOf(account);
```
