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

# IB20Factory.isB20Initialized

> Generated B20 reference for isB20Initialized(address).

[Related concept](/base-chain/specs/upgrades/beryl/b20/specification/implementation/deployment-and-initcalls-encoding)

## Signature

```solidity theme={null}
function isB20Initialized(address token) external view returns (bool);
```

| Field               | Value                       |
| ------------------- | --------------------------- |
| Selector            | `0x6a45ba98`                |
| Canonical signature | `isB20Initialized(address)` |

## Description

Returns whether `createB20` has run to completion at `token`. Flips exactly once,
the moment the creating `createB20` call returns. Never reverts.
Param: token Address to check.
Return: Whether `token` is an initialized B-20.

## 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}
IB20Factory(target).isB20Initialized(arg0);
```

## Related

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