# Fees

42 applies a **single, transparent protocol fee of 0.8% on trades** which serves as the core source of protocol revenue. 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 fee will amount to $$100 \text{ USDT}  \times 0.8% = 0.8 \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 fee will amount to $$100 \text{ USDT} \times (1-0.05)  \times 0.8% = 0.76 \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: 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.42.space/getting-started/protocol-mechanics-101/fees.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.
