> For the complete documentation index, see [llms.txt](https://docs.mineglyph.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mineglyph.xyz/protocol/tokenomics.md).

# Tokenomics

GLYPH is a capped ERC-20. Every unit that will ever exist is accounted for up front, and the allocation is enforced by code, not policy.

## Supply

| Parameter             | Value                           |
| --------------------- | ------------------------------- |
| Token name / symbol   | Mine Glyph / GLYPH              |
| Decimals              | 18                              |
| **Max supply**        | **21,000,000 GLYPH** (hard cap) |
| LP premine            | 2,100,000 (10%)                 |
| Emission pool (mined) | 18,900,000 (90%)                |
| Team / dev allocation | **0%**                          |

The premine and the emission pool are two allocations **inside** the same 21M cap — the premine does not sit on top of it.

```
┌───────────────────────── 21,000,000 GLYPH (hard cap) ─────────────────────────┐
│  LP premine 2,100,000 (10%)  │        Emission pool 18,900,000 (90%)           │
│  seeds locked liquidity      │        mined by the community over time         │
└────────────────────────────────────────────────────────────────────────────────┘
```

## The 10% LP premine

At launch, 2,100,000 GLYPH is minted **once** to a treasury address and paired with liquidity on a DEX. That liquidity is **locked**, and the lock duration and allocation are announced transparently. This is the only GLYPH that exists before mining begins.

## The 90% emission pool

The remaining 18,900,000 GLYPH is minted **only** through mining rewards, one claim at a time, following the [emission schedule](/protocol/emission-and-halving.md). It cannot be pre-minted, front-loaded, or redirected.

## No team allocation

There is **no team or developer token allocation**. Nobody receives GLYPH for building or running the protocol. The only non-mined GLYPH is the locked LP premine, which backs a public market rather than any individual.

> **On the registration fee.** Starting to mine costs a small one-time fee in **ETH** (not GLYPH). That fee is protocol revenue and does **not** affect GLYPH supply or the 0% team allocation — no GLYPH is ever created for the team. See [Registration fee & claim cooldown](/protocol/fees-and-cooldown.md).

## How the cap is guaranteed

The 21,000,000 ceiling is not a promise — it is enforced at **three independent layers**:

1. The mining contract stops accruing once cumulative emission reaches 18,900,000.
2. It clamps the amount minted at each claim so total mined can never exceed the emission pool.
3. The token itself rejects any mint that would push total supply past 21,000,000.

Any one of these alone would hold the line; all three run together. This is verified by fuzz and invariant tests. See [Smart contracts](/architecture/smart-contracts.md).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.mineglyph.xyz/protocol/tokenomics.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
