> For the complete documentation index, see [llms.txt](https://docs.42.space/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.42.space/getting-started/protocol-mechanics-101/fees.md).

# Fees

42 applies a **protocol fee of 0.4% on trades** which serves as the core source of protocol revenue, and **0.2% on platform fees**. Fees are only incurred when users mint or redeem Outcome Tokens (OTs).

This protocol fee is separate from network gas fees, which are also paid in BUSDT from the proxy wallet during transaction execution.

### Mint Fee

For Mint transactions, the fee is calculated directly on the trade notional collateral deposited in exchange for the OT.

#### Formula

* **M** = Gross collateral from the mint
* **f** = protocol fee rate

$$
MintFee = M × f
$$

{% hint style="info" %}
**Example:**\
\
Given a mint size of **100 USDT**, the total fees (protocol and platform) will amount to $$100 \text{ USDT}  \times 0.6% = 0.6 \text{ USDT}$$<br>
{% endhint %}

### Redeem Fee

Redeems first apply a **redeem tax** (refer to [Redeem Tax Explained](/getting-started/protocol-mechanics-101/42-outcome-tokens/market-discovery-pre-resolution.md#redeem-tax-explained)). The protocol fee is then charged on the **remaining collateral**.

#### Formula

* **R** = gross collateral from the redeem
* **τ** = redeem tax rate
* **f** = protocol fee rate

$$
Redeem Fee = R × (1 − τ) × f
$$

{% hint style="info" %}
**Example:**\
\
Given a redeem size amounting to 100 USDT in gross collateral and redeem tax rate of 5%, the total fees (protocol and platform) will amount to $$100 \text{ USDT} \times (1-0.05)  \times 0.6% = 0.57 \text{ USDT}$$\
\
\&#xNAN;*\*Note: This ensures the protocol fee is only applied to the **net collateral returned from the pool**, not the taxed portion.*
{% endhint %}


---

# 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.42.space/getting-started/protocol-mechanics-101/fees.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.
