Mint Authority on Solana: the Switch That Prints Your Bag to Zero
The on-chain authority that can create new tokens out of thin air — and why an active one is the fastest way to get your bag inflated to zero.
6 min read · updated Jun 14, 2026
Every SPL token on Solana is created by a mint account, and that account has an owner: the mint authority. Whoever holds it can create new tokens out of nothing — any amount, any time. If that switch is still on when you buy, the dev can print fresh supply and sell it straight into your bid. This is one of the cleanest rugs on Solana, and it takes ten seconds to check for.
✕The one-linerActive mint authority = the dev can mint infinite supply and dump it on you. Revoked (set to null) = they can't, ever. Check this before anything else. Scan a token now.
What mint authority actually is
When a token is created on Solana, the program sets up a mint account that tracks the total supply and a few permissions. One of those permissions is the mint authority — an address allowed to call mintTo and increase the supply. Mint new tokens to a wallet, and the circulating supply goes up by exactly that much. There's no cap, no vote, no cooldown. If the authority is a wallet the dev controls, the dev decides how many tokens exist.
This is normal plumbing — every token needs a way to be minted in the first place. The danger isn't that mint authority exists; it's that it's still active and pointed at a wallet someone controls after launch.
Why an active mint authority rugs you
Say you ape a token with a 1B supply and you're up nicely. The dev still holds the mint authority. They mint another 9B tokens to their own wallet — your slice of the supply just dropped by 90% without a single trade hitting the chart. Then they dump that fresh supply into the liquidity pool, draining the SOL and tanking the price. You're left holding a diluted bag in a pool that's been emptied. This is supply inflation — a rug that doesn't need to touch your wallet to wipe it out.
The tell is that nothing looks wrong beforehand. The chart can be green, holders can be growing, socials can be live — and the mint authority sits there quietly as a trapdoor under the whole thing. That's why it's a hard gate, not a soft signal: an active mint authority caps how safe a token can be, no matter how good everything else looks.
What "revoked" or "burned" means
Revoking mint authority means setting it to null — setAuthority is called with no new owner, and the slot is permanently empty. After that, mintTo can never succeed again. The supply is frozen at whatever it was. This is irreversible: there's no un-revoke, no recovery, no admin override. That permanence is exactly the point — it's the dev proving they *can't* print more, because the chain won't let them.
People say "mint revoked" and "mint burned" to mean the same thing here: the authority is gone and supply is fixed. On a launchpad like pump.fun, tokens typically have mint authority handled for you so supply is fixed from the start — but never assume. Read the actual on-chain state for the specific mint, every time.
How to check it
The mint authority lives in the token's mint account, so you read it straight from the chain — it can't be faked in a UI. A few ways to look:
- 1.Paste the mint address into a token scanner and read the mint-authority line — it tells you
null(revoked) or shows an address (active). - 2.On an explorer, open the mint account and check the Mint Authority field directly.
- 3.Programmatically, fetch the mint and read
mintAuthority—None/nullmeans revoked.
✓Token-2022 counts tooNewer tokens on the Token-2022 program have the exact same mint-authority concept (plus extra features layered on top). The check is the same: is the authority null, or is it a live address? Don't assume a fancier token type is automatically safer.
The nuance: active isn't always a scam
Read context before you write a token off. Some legitimate projects deliberately keep a mint authority — for scheduled emissions, staking rewards, or a treasury — and park it behind a multisig so no single dev can act alone. That's a real, defensible design for an established protocol. The difference is who holds the key and why: a transparent multisig with a published emission schedule is a world away from a fresh memecoin where one anonymous wallet can mint at will.
For the pump.fun and memecoin lane, though, the bar is simple: a brand-new token with an active mint authority on a single wallet and no reason to have one is a strong flag. Treat active as guilty until the context clearly explains it — and most of the time, there's no good explanation.
What to verify
- ✓Mint authority is revoked (
null) — supply can't be inflated - ✓If it's active, there's a real reason (emissions, treasury) — not just an anon wallet sitting on the key
- ✓Any active authority is behind a multisig, not one person
- ✓Current supply matches what the project claims — no quiet mints already happened
- ✓You checked the freeze authority too — active freeze can trap your sells
- ✓You read the on-chain state for this exact mint, not a screenshot or a promise
▲Revoked isn't a green lightA burned mint authority only closes the supply-inflation door. The dev can still pull liquidity, the token can still be a honeypot, and the chart can still nuke. It's one box on the full safety checklist, not the whole story.
Let the scan do it
Checking mint authority by hand is fast, but it's one of many reads you need before size goes on — and a dev counts on you skipping it. Rug Stop pulls the mint authority straight from the chain on every scan and shows you the evidence behind the call: null or a live address, with the supply math to match. It surfaces two separate reads — a safety score and a smart-money score — and never collapses them into a bare SAFE/SCAM verdict. Paste a mint and scan it.
Check this on a real token →
Scan a tokenKeep reading
How to Check if a Solana Token Is Safe Before You Ape
A trader's pre-buy checklist. Run every box before size goes on — most rugs fail at least one of these in the first ten seconds.
Freeze Authority & Honeypots: The Tokens You Can Buy But Can't Sell
The buy went through, the chart's green, and your sell keeps reverting. That's a honeypot — and freeze authority is how most of them are built.
Rug Pulls on Solana, Explained: Every Type and How to Spot It
The umbrella explainer: every flavour of rug, how it works mechanically, and the on-chain footprint that gives it away before it happens.
