# For Investors (Followers)

Followers buy vault tokens and redeem them later.

### Investment flow

1. Choose a vault.
2. Buy tokens via `buy(usdcAmount)`.
3. Hold while NAV changes with trading P\&L.
4. Sell tokens via `sell(tokens)`.

### Investment price

```
Buy Price = NAV × Bonding Curve Ratio
```

Notes:

* Large buys push price up (price impact).
* Price is bounded between `0.5x` and `2.0x` NAV.

### Redemption mechanism

#### Instant redemption

If liquidity is sufficient (EVM USDC + L1 spot):

* Receive USDC immediately.
* Exit fee and performance fee apply (if enabled / profitable).

#### Pending sell

If liquidity is insufficient:

1. Tokens are burned.
2. Pending sell order is created.
3. Wait for liquidity to return.
4. Call `claimPendingSell()` to claim USDC.

```solidity
function claimPendingSell() external;
```

### Fee calculation example

Assumptions:

* Entry NAV: `$1.00`
* Current NAV: `$1.20`
* Days held: `15`
* Tokens sold: `1,000`
* Performance fee: `20%`
* Exit fee: `8%` (7–30 days tier)

Calculation:

1. Profit = `1,000 × ($1.20 - $1.00) = $200`
2. Performance fee = `$200 × 20% = $40` (paid as tokens to leader)
3. Sell amount = `1,000 × $1.20 = $1,200`
4. Exit fee = `$1,200 × 8% = $96`
5. Final received = `$1,200 - $96 = $1,104`


---

# 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://hyper-fun.gitbook.io/hypers.fun/for-investors-followers.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.
