> For the complete documentation index, see [llms.txt](https://docs.butane.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.butane.dev/how-to-use-butane/butane-basics/concepts.md).

# Concepts

## Fees

Debt accrues linearly as interest. Interest is paid whenever a CDP is closed due to repayment, liquidation, or redemption (note that adjusting a CDP is the same as closing that CDP and opening a new one, so accrued interest is paid for that action, and the new CDP starts with 0 interest). Interest is repaid either wholly in the borrowed synthetic, or partially in the Butane governance token (BTN) at a discount. The system ensures that BTN cannot be used to pay off an amount of interest that would mean a CDP owner could have leftover synthetics after fully repaying their position (and thus have created synthetics not backed by anything), and so the amount of interest payable in BTN is determined by the spread of a synthetic's savings rate and interest rate. As an example, if a position is opened for 100 MIDAS with an interest rate of 10% and a savings rate of 9%, after one year the position owner could repay their loan by burning 109 MIDAS and a 1 MIDAS equivalent in BTN (minus some discount), or by burning 110 MIDAS.

In the event of a liquidation, a share of the excess value taken as profit by the liquidator is shared with the Butane treasury. The value sent to the treasury is in the same token proportions as what was claimed by the liquidator.

## Redemptions

Redemptions are a critical last resort mechanism used during exceptional market events, minimising price depeg where other stabilisation measures (i.e., interest, liquidations, staking incentives, e.t.c.) are insufficient. Redemptions are activated during such circumstances. Redemptions are not a user-facing feature, and will be executed on FIFO basis through an automated sequencer when enabled. Redemptions involve the burning of a portion of a CDP's debt and redeeming that burnt value against a proportionate value of collateral in a CDP (see **Redemption Share** in [Synthetic Parameters](/how-to-use-butane/butane-basics/synthetic-parameters.md)). Remaining CDP debt is passed along in a continuing CDP position, and if fully redeemed, remaining collateral is sent to a collections script for the CDP owner.

## Bad Debt

Bad debt occurs when a position is no longer overcollateralized, i.e. its debt is greater than its collateral value (and so its LTV is greater than 1). In these cases, liquidations are no longer incentivised, and so to prevent the existence of unbacked synthetics in the system, the bad position's debt and collateral may be absorbed into the Butane treasury, where other users can repay portions of the debt and receive equivalent collateral value, effectively redeeming against the treasury.


---

# 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://docs.butane.dev/how-to-use-butane/butane-basics/concepts.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.
