# CoreRefPauseableLib

PauseableLib is a library that can be used to pause and unpause contracts, amont other utilities.

This library should only be used on contracts that implement CoreRef.

## Functions

### \_requireUnpaused

```solidity
function _requireUnpaused(
    address _pausableCoreRefAddress
) internal
```

#### Parameters

| Name                      | Type    | Description |
| ------------------------- | ------- | ----------- |
| `_pausableCoreRefAddress` | address |             |

### \_requirePaused

```solidity
function _requirePaused(
    address _pausableCoreRefAddress
) internal
```

#### Parameters

| Name                      | Type    | Description |
| ------------------------- | ------- | ----------- |
| `_pausableCoreRefAddress` | address |             |

### \_ensureUnpaused

```solidity
function _ensureUnpaused(
    address _pausableCoreRefAddress
) internal
```

#### Parameters

| Name                      | Type    | Description |
| ------------------------- | ------- | ----------- |
| `_pausableCoreRefAddress` | address |             |

### \_ensurePaused

```solidity
function _ensurePaused(
    address _pausableCoreRefAddress
) internal
```

#### Parameters

| Name                      | Type    | Description |
| ------------------------- | ------- | ----------- |
| `_pausableCoreRefAddress` | address |             |

### \_pause

```solidity
function _pause(
    address _pauseableCoreRefAddress
) internal
```

#### Parameters

| Name                       | Type    | Description |
| -------------------------- | ------- | ----------- |
| `_pauseableCoreRefAddress` | address |             |

### \_unpause

```solidity
function _unpause(
    address _pauseableCoreRefAddress
) internal
```

#### Parameters

| Name                       | Type    | Description |
| -------------------------- | ------- | ----------- |
| `_pauseableCoreRefAddress` | address |             |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.essencefinance.io/development/smart-contracts/libs/corerefpauseablelib.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
