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

> Generated B20 reference for nonces(address).

## Signature

```solidity theme={null}
function nonces(address owner) external view returns (uint256);
```

| Field               | Value             |
| ------------------- | ----------------- |
| Selector            | `0x7ecebe00`      |
| Canonical signature | `nonces(address)` |

## Description

The current EIP-2612 permit nonce for `owner`. Incremented by 1 on each successful `permit`.

## Parameters

| Parameter | Description                           |
| --------- | ------------------------------------- |
| `owner`   | Account whose nonce is being queried. |

## Returns

Current nonce.

## 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).nonces(owner);
```
