> For the complete documentation index, see [llms.txt](https://dev.init.capital/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev.init.capital/contract-references/liqincentivecalculator.md).

# LiqIncentiveCalculator

Liquidation Incentive Calculator contract.

## View Functions

### maxLiqIncentiveMultiplier\_e18

Get maximum liquidation incentive multiplier with `10^18` precision. (`1e18 = 100%`)

{% hint style="info" %}
This configuration is global and applies to all modes.
{% endhint %}

```solidity
function maxLiqIncentiveMultiplier_e18() external returns (uint maxLiqIncentiveMultiplier_e18);
```

### minLiqIncentiveMultiplier\_e18

Get a mode's minimum liquidation incentive multiplier with `10^18` precision. (`1e18 = 100%`)

```solidity
function minLiqIncentiveMultiplier_e18(uint16 _mode) external returns (uint minLiqIncentiveMultiplier_e18);
```

### modeLiqIncentiveMultiplier\_e18

Get a mode's liquidation incentive multiplier with `10^18` precision. (`1e18 = 100%`)

{% hint style="info" %}
This should be used in conjunction with `tokenLiqIncentiveMultiplier_e18`.
{% endhint %}

```solidity
function modeLiqIncentiveMultiplier_e18(uint16 _mode) external returns (uint modeLiqIncentiveMultiplier_e18);
```

### tokenLiqIncentiveMultiplier\_e18

Get a mode's token liquidation incentive multiplier with `10^18` precision. (`1e18 = 100%`)

{% hint style="info" %}
This should be used in conjunction with `modeLiqIncentiveMultiplier_e18`.&#x20;
{% endhint %}

```solidity
function tokenLiqIncentiveMultiplier_e18(uint16 _mode) external returns (uint tokenLiqIncentiveMultiplier_e18);
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://dev.init.capital/contract-references/liqincentivecalculator.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
