# Fees

## Delayed Unstake Protocol Fee

A fee of 5% of staking rewards earned is charged during the regular unstaking process. The fee is applied to the total staking rewards your position has earned and can be calculated as follows:

Fee = amount\_staked \* staking\_APY \* duration\_staked \* 5%

Example:

If you stake 100 SUI for 3 months and the staking APY was 3.5%, your total staking rewards earned would be:

staking\_rewards = 100 (SUI) \* 0.035 (APY) \* 0.25 (Years) = 0.875 SUI

Your fee would be 5% of this amount (staking\_rewards \* 0.05):

Fee = 0.875 (SUI) \* 0.05 = 0.043 SUI

The fee can also be expressed as a percent of the total amount of SUI being unstaked:

Fee/(amount\_staked + staking\_rewards) \* 100

Percent\_of\_total\_unstaked = 0.043 / (100 + 0.875) \* 100 = 0.043%

## Atomic Unstake Protocol Fee

This fee only applies if you choose Unstake Instantly. The Atomic protocol fee is applied to the total amount of SUI being unstaked. The fee value depends on the liquidity available in the SUI reserves which protocol allocates for atomic unstaking and is calculated as follows:

max\_fee - (max\_fee - min\_fee) \* reserves\_value / reserves\_target\_value

where reserves\_value is the amount of SUI allocated in the protocol for atomic unstaking after current unstake, other parameters are constants:

max\_fee = 1%

min\_fee = 0.1%

reserves\_target\_value = 10000 SUI

## Validators Fee (optional)

Each validator may set up their own fee which is applied to each stake. Once afSUI is minted, a specified part of this amount is transferred to the validator on which the stake was made. By default this fee is equal to zero. Each validator may change this value in the following range: \[0, 0.1%]

If a validator has set a fee, it will appear in the validator select drop down menu on the staking page:

<figure><img src="/files/N4TTxdWnstnsCUmTks4v" alt="" width="375"><figcaption><p>Validator Fee in Select Validator dropdown menu</p></figcaption></figure>


---

# 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.aftermath.finance/liquid-staking-afsui/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.
