> ## 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_RECEIVER_POLICY

> Generated B20 reference for MINT_RECEIVER_POLICY().

## Signature

```solidity theme={null}
function MINT_RECEIVER_POLICY() external view returns (bytes32);
```

| Field               | Value                    |
| ------------------- | ------------------------ |
| Selector            | `0x6e5b013d`             |
| Canonical signature | `MINT_RECEIVER_POLICY()` |

## Description

Policy slot consulted against `to` on every mint.

Unlike transfer-side policies, this slot is always enforced. Factory-originated mints also check this slot during the creation window. A policy-denied recipient cannot receive new supply at creation. See `IB20Factory.createB20`.

## Returns

Policy scope constant.

## 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}
IB20(target).MINT_RECEIVER_POLICY();
```
