> ## 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.mintWithMemo

> Generated B20 reference for mintWithMemo(address,uint256,bytes32).

## Signature

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

| Field               | Value                                   |
| ------------------- | --------------------------------------- |
| Selector            | `0xe44f0b12`                            |
| Canonical signature | `mintWithMemo(address,uint256,bytes32)` |

## Description

Same as `mint`, plus emits `Memo` immediately after the standard `Transfer` event. A memo of `bytes32(0)` is permitted.

## Parameters

| Parameter | Description             |
| --------- | ----------------------- |
| `to`      | Mint recipient.         |
| `amount`  | Amount to mint.         |
| `memo`    | Off-chain memo payload. |

## 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).mintWithMemo(to, amount, memo);
```
