# Supply Dynamics

The $DXP token has been architected with a fixed total supply of 21 million tokens to ensure scarcity and long-term value. This total supply is divided into two key segments: 60% (12.6 million tokens) is allocated as the emission supply, and 40% (8.4 million tokens) is reserved for vesting—distributed over predetermined schedules to team members, advisors, and early investors. Post-deployment, no additional tokens are minted arbitrarily; rather, new tokens are released strictly through a controlled, block-by-block emission mechanism.

The emission process is governed by a halving cycle every four years, ensuring that the rate of token issuance gradually decreases over time. This design creates a deflationary dynamic in which the inflation rate naturally diminishes as the network matures. An excerpt from the emission logic illustrates this mechanism:

```solidity
// In DXPToken.emitTokens()
if (block.timestamp >= lastHalvingTime + halvingInterval) {
    emissionPerBlock /= 2;
    lastHalvingTime = block.timestamp;
    emit HalvingOccurred(emissionPerBlock);
}
```

In addition to scheduled emissions, the protocol incorporates a recycling mechanism. Tokens used for fees or returned during early withdrawals are burned and then reminted to the unissued supply. This approach not only maintains a balanced supply but also reduces volatility without resorting to permanent token burns.

The emission supply is gradually released into circulation and distributed to liquidity providers, farm owners, yield yodas, and verifiers based on time and performance metrics. For instance, when an LP withdraws early, the $DXP rewards they previously received are returned to the unissued pool—preserving the token’s scarcity and sustainability.

<figure><img src="/files/SbN0Tk6cXfu4tBsVj4R4" alt=""><figcaption></figcaption></figure>

## Emission Supply

Of the total 21 Million, 60^% of the supply, equating to 12.6^ million $DXP will be minted every block, forming both the circulating and unissued supply. Initially, tokens are minted at a rate of 1 token every block (20 seconds), with the rate halving every four years. The exact timing of halving may vary based on the amount of $DXP recycled during the period.&#x20;

By default, newly minted $DXP is part of the unissued supply, which is then distributed among Liquidity Providers (LPs), Farm Owners, Yield Yodas, Verifiers, based on the predefined set of terms. The recycling mechanism moves $DXP used for fee payments or returned rewards back into the unissued supply. This controlled release reduces volatility, mitigates uncertainties, and avoids inflationary pressures without relying on token burning.

Token distribution is influenced by time and performance metrics. LPs earn rewards in $DXP, with the option to convert their rewards back into the underlying yield asset they originally supplied to the Farm. To do so, they must return an equivalent amount of $DXP, which is then added back to the unissued supply to reward new LPs entering the protocol. The time-based factor also incentivises early participation.

## Vested Supply

The vested supply, accounting for 40% of the total, is allocated over predetermined schedules:

* **Founding Team, Investors, Advisors (25%)** – Released over six months to two years to ensure market stability.
* **Public Sales (4%)** – Designed to foster community participation.
* **Ecosystem Fund (4%)** – Vested over 48 months to incentivize developers and contributors.
* **Airdrops (2%)** – Rewarding community builders.
* **Existing LP Locked (5%)** – Acknowledging early liquidity providers.

Together, these mechanisms create a game-theoretical incentive structure that aligns all stakeholder interests. By distributing up to 90% of returns from yield strategies to LPs, and maintaining a deflationary, self-regulating supply model, $DXP reinforces its role as the foundational token driving both participation and long-term value within the Dexponent ecosystem.

<figure><img src="/files/tijUiMLNFnGp7qEkynJ1" alt=""><figcaption><p>Vested Supply Distribution</p></figcaption></figure>

## Total Supply in Circulation including the Vested and Emissioned supply over time

<figure><img src="/files/LH5GrmGoiXPC5sF0Ny4g" alt=""><figcaption><p>Circulating Supply Increase Over 20 Years</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://litepaper.dexponent.com/tokenomics/supply-dynamics.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.
