Token guarantees
Fixed supply, no mint or freeze authority, and the checks that enforce it at launch.
Every FOMOPRIME token has the same properties, and they are checked on chain before the token can trade at all. The checks run when social_gate initialises the token's transfer-hook accounts at launch. Without those accounts every swap on the curve fails, so a token that trades has passed every check below.
What every token guarantees
| Guarantee | How it is enforced |
|---|---|
| Fixed supply of 1B. No one can mint more. | The mint must have no mint authority (error 6017), and the DBC configuration must be one that removes it. |
| No one can freeze your tokens. | The mint must have no freeze authority (error 6017). |
| The whole supply starts in the curve. No presale, no hidden allocation. | Mint supply, the curve vault's balance and the pool's reserve must be equal (error 6021). |
| Only FOMOPRIME curves. | The pool's configuration must be registered by FOMOPRIME (6024) and name FOMOPRIME's partner wallet as fee claimer (6020). |
| The hook is the FOMOPRIME gate. | The mint must name social_gate as its transfer hook, set by Meteora's pool authority (6006, 6007). |
| A fresh pool, set up once. | Hook accounts can only be created once per mint, for the pool that created it (6016, 6018, 6022). |
What the creator can and can't do
After launch, a creator has no special power over the token. In particular, the creator can't:
- mint new tokens, freeze accounts or change the supply;
- change the fee, the pair, the curve or the graduation target;
- buy on the curve outside the gate, or stop anyone from selling.
The creator can claim their share of the trading fees, and buy and sell through the same gate as everyone else.
Metadata
The name, ticker and image link are stored in the mint's Token-2022 metadata at launch, capped at 32, 10 and 200 bytes. Depending on the curve configuration, the right to update that metadata is removed or kept by the creator or FOMOPRIME. It never affects the supply, the curve or trading.
Important