# Fees and Pricing

## H4SHFund Fee Structure

The fees accrued within the H4SHFund ecosystem can be categorized as follows:

**1. Platform Fee (Rewarded to Treasury)**

This fee is a set variable fee at launch it is 10%. It is applied once a launch sale is finalized and is paid initially too the factory contract. A manual call would be made to transfer this to the projects treasury.&#x20;

**2. Early Withdrawl Fee (Rewarded to the DAO Treasury)**

While deploying a token onto H4SHFund there are set phases during a launch. Should a user wish to withdraw during PHASE\_ONE they will be subject to a variable early withdraw fee. This fee goes towards that tokens treasury as a form of compensation for marketing efforts leading up to that point in time.&#x20;

```solidity
/// @notice Enum representing the different statuses of a launchEvent.
    /// @custom:value0 NOT_STARTED event has been creasted but is not yet launched.
    /// @custom:value1 PHASE_DEPOSIT event is active for both deposits and withdrawls.
    /// @custom:value2 PHASE_ONE event is in withdraw only mode; no more deposits can be made at
    /// this time.
    /// @custom:value3 PHASE_TWO no more withdrawls can be made and LP lockup period is active.
    /// @custom:value4 PHASE_THREE Depleted event; all assets are able to be withdrawn by the
    /// correct parties.
    /// @custom:value5 DEPLETED Depleted event; all assets are able to be withdrawn by the correct
    /// parties.
    enum Phase {
        NOT_STARTED,
        //users can make a deposit and withdraw at anytime with 0% fee
        PHASE_DEPOSIT,
        //users can no longer make a deposit but can withdraw with a fee
        PHASE_ONE,
        //users can no longer withdraw or deposit pending the token launch time
        PHASE_TWO,
        //token can be launched and launch event finished but the LP lockup period has started and is ongoing
        PHASE_THREE,
        //launch event finished and the LP lockup period has finished; manager can withdraw the LP
        DEPLETED
    }
```

## What is the H4SHFund Platform Fee?

The H4SHFund platform fee is taken as a percentage of total funds raised during each token launch

This is a flat fee for all token launches (subject to change)&#x20;

> Initial Platform fee= 5.0%

## How are fees used?

All H4SHFund fees are directed towards the H4SHFund treasury for future contemplation.


---

# 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://whitepaper.h4shfund.com/h4shfund-platform/fees-and-pricing.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.
