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

# IB20.mint

> Generated B20 reference for mint(address,uint256).

## Signature

```solidity theme={null}
function mint(address to, uint256 amount) external;
```

| Field               | Value                   |
| ------------------- | ----------------------- |
| Selector            | `0x40c10f19`            |
| Canonical signature | `mint(address,uint256)` |

## Description

Mints `amount` to `to`. Emits `Transfer(address(0), to, amount)`.

## Parameters

| Parameter | Description     |
| --------- | --------------- |
| `to`      | Mint recipient. |
| `amount`  | Amount to mint. |

## Reverts

* `ContractPaused(MINT)` when `MINT` is paused.
* `AccessControlUnauthorizedAccount` when the caller does not hold `MINT_ROLE`.
* `InvalidReceiver` when `to == address(0)`.
* `PolicyForbids(MINT_RECEIVER_POLICY, ...)` when `to` is not authorized.
* `SupplyCapExceeded` when `totalSupply + amount &gt; supplyCap`.

## Access control

`MINT_ROLE` gates state-changing mint calls.

## Policy interaction

Checks `MINT_RECEIVER_POLICY`, including during factory initCalls.

## Example

```solidity theme={null}
IB20(target).mint(to, amount);
```
