# 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: 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://dev.init.capital/contract-references/liqincentivecalculator.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.
