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

# IB20Asset.multiplier

> Generated B20 reference for multiplier().

[Related concept](/base-chain/specs/upgrades/beryl/b20/specification/concepts/variants-asset-vs-stablecoin)

## Signature

```solidity theme={null}
function multiplier() external view returns (uint256);
```

| Field               | Value          |
| ------------------- | -------------- |
| Selector            | `0x1b3ed722`   |
| Canonical signature | `multiplier()` |

## Description

The current multiplier, scaled to `WAD_PRECISION`. Holder balances are stored
as raw units; the multiplier scales them into a derived "scaled" view, similar
in shape to wstETH wrapping stETH.
Dev: Alias of the ERC-8056 `uiMultiplier()`.
Return: Current (effective) multiplier.

## Access control

Read-only or ERC-20-standard access rules unless the NatSpec states otherwise.

## Policy interaction

No direct policy interaction.

## Example

```solidity theme={null}
IB20Asset(target).multiplier();
```

## Related

* [IB20Asset reference](/base-chain/specs/upgrades/beryl/b20/specification/reference/interfaces/IB20Asset)
* [Constants & addresses](/base-chain/specs/upgrades/beryl/b20/specification/reference/constants-and-addresses)
