> For the complete documentation index, see [llms.txt](https://docs.essencefinance.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.essencefinance.io/development/smart-contracts/minter/ratelimitedminter.md).

# RateLimitedMinter

## Functions

### constructor

```solidity
function constructor(
    uint256 _chiLimitPerSecond,
    uint256 _mintingBufferCap,
    bool _doPartialMint
) internal
```

#### Parameters

| Name                 | Type    | Description |
| -------------------- | ------- | ----------- |
| `_chiLimitPerSecond` | uint256 |             |
| `_mintingBufferCap`  | uint256 |             |
| `_doPartialMint`     | bool    |             |

### \_mintChi

```solidity
function _mintChi(
    address to,
    uint256 amount
) internal
```

override the CHI minting behavior to enforce a rate limit

#### Parameters

| Name     | Type    | Description |
| -------- | ------- | ----------- |
| `to`     | address |             |
| `amount` | uint256 |             |
