All guides
SPLSecurityTokenomics

Revoke Mint Authority on Solana: What It Means

What revoking mint authority on a Solana SPL token actually does, when to do it, and how it impacts trust, holder confidence, and aggregator listings.

5 min read

If you've launched anything on Solana — or even held one — you've seen the phrase "mint authority revoked" on Solscan, Birdeye, or Dexscreener. It's the single most-checked trust signal on the network. This article unpacks exactly what it means and when you should (and shouldn't) revoke.

What is mint authority?

Every SPL token has a mint authority — the wallet allowed to create new units of the token. By default, the wallet that creates the token holds this authority and can mint additional supply at any time, with no notice.

For a memecoin or community token where supply is supposed to be fixed forever, leaving mint authority active is a giant red flag: it means the deployer can dilute every holder by 100×, 1000×, or infinitely whenever they want.

What does revoking actually do?

Revoking mint authority sets it to None at the SPL Token program level. Once that transaction confirms, no one — not the original deployer, not Solana Labs, not even God — can ever mint more of that token. The supply is mathematically locked at whatever it was when you revoked.

This is irreversible. There is no undo. There is no "I changed my mind, let me un-revoke."

What is freeze authority?

A separate authority that lets the holder freeze any wallet's token account, preventing them from transferring or selling. It exists for compliance use cases (regulated stablecoins, security tokens), but on a memecoin or community coin it's a backdoor that lets the deployer rugpull holders by freezing them mid-trade.

Revoking freeze authority is just as important as revoking mint authority for any community token.

When should you revoke?

Revoke immediately if:

  • You're launching a memecoin
  • You're launching a fixed-supply community token
  • You want to be listed on Jupiter Strict, Birdeye verified, or any reputable aggregator
  • You want holders to actually trust you

Do not revoke if:

  • You're building a real product with planned token emissions (rewards, staking yields, vesting unlocks)
  • You're issuing a regulated stablecoin
  • You're doing institutional issuance where supply changes are part of the design

How to revoke on SolanaForge

Both revokes ship as toggles in the Create Token form. Flip them on before you sign — both authority changes are bundled into the same atomic transaction as the mint itself, so you sign once and pay once. There's no separate flow, no extra fees, no risk of forgetting later.

If you launched somewhere else and didn't revoke, you can still do it manually with spl-token authorize <MINT> mint --disable from the CLI, or via Phantom's advanced send screen. Just be aware: every second your authority is live, your token is harder to trust.

Trust impact, by the numbers

We pulled the top 100 Solana memecoins by 7-day volume in early 2026:

  • 96 had mint authority revoked
  • 94 had freeze authority revoked
  • The 4 outliers were either freshly launched (under 6 hours old) or known scams that never gained traction

If you don't revoke, you're competing against tokens that did — and you're losing the comparison before anyone reads your white paper.

Bottom line

Revoking mint and freeze authority is the cheapest, fastest way to look legitimate on Solana. It costs nothing extra (it's part of the same transaction), it's irreversible (so it's actually a credible signal), and skipping it will get you flagged by every aggregator on the network. Just do it.

Ready to launch your token?

One signature, 0.1 SOL service fee, IPFS metadata pinned via Pinata, mainnet only.

Frequently asked questions

What does revoking the mint authority do?+

It permanently removes the ability for anyone — including you — to mint additional tokens. Total supply becomes fixed forever. There is no way to undo it.

Should I always revoke the mint authority?+

For public, tradeable tokens — yes. For internal or programmatic tokens where you need to mint more later (rewards programs, points systems), keep the authority and document why.

What about freeze authority?+

Freeze authority lets the holder freeze any wallet's balance of the token. Most public tokens revoke it for the same trust reason; keep it only if you have a compliance or recovery use case.

More guides