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

> Generated B20 reference for isPaused(PausableFeature).

## Signature

```solidity theme={null}
function isPaused(PausableFeature feature) external view returns (bool);
```

| Field               | Value                       |
| ------------------- | --------------------------- |
| Selector            | `0x165c44bc`                |
| Canonical signature | `isPaused(PausableFeature)` |

## Description

Whether `feature` is currently paused. O(1).

## Parameters

| Parameter | Description       |
| --------- | ----------------- |
| `feature` | Feature to query. |

## Returns

Whether `feature` is paused.

## 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).isPaused(feature);
```
