> For the complete documentation index, see [llms.txt](https://docs.bsc.lista.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bsc.lista.org/for-developer/clisbnb/minting-ratio-logic.md).

# Minting Ratio Logic

Both collateral modules derive gross `slisBNBx` from BNB-equivalent collateral value. Before final distribution, two sequential adjustments are applied:

1. Collateral discount
2. Lista DAO performance fee

## Step 1: Collateral Discount

| Collateral Module                      | Discount Rate | Effect                                                       |
| -------------------------------------- | ------------- | ------------------------------------------------------------ |
| `slisBNB` (via `SlisBNBProvider`)      | `0%`          | Full BNB-equivalent value is used as mint base.              |
| `slisBNB/BNB LP` (via `SmartProvider`) | `0.2%`        | LP BNB-equivalent value is multiplied by `0.998` before fee. |

## Step 2: Performance Fee (Lista DAO)

| Collateral Module                      | Performance Fee | Fee Basis                                              |
| -------------------------------------- | --------------- | ------------------------------------------------------ |
| `slisBNB` (via `SlisBNBProvider`)      | `3%`            | Applied to full BNB-equivalent value.                  |
| `slisBNB/BNB LP` (via `SmartProvider`) | `1.8367%`       | Applied to discounted (`0.998x`) BNB-equivalent value. |

## Formula

### `slisBNB` module

```
gross slisBNBx = slisBNB deposited x slisBNB/BNB exchange rate
Lista fee      = gross slisBNBx x 3%
user slisBNBx  = gross slisBNBx x 97%
```

### `slisBNB/BNB LP` module

```
gross slisBNBx = LP BNB-equivalent x (1 - 0.2%) = LP value x 0.998
Lista fee      = gross slisBNBx x 1.8367%
user slisBNBx  = gross slisBNBx x (1 - 1.8367%)
```


---

# 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:

```
GET https://docs.bsc.lista.org/for-developer/clisbnb/minting-ratio-logic.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.
