HostDeFi › Guides › “Mint revoked” meaning
“Mint authority revoked” — what it actually means
It's the single most quoted line in any Solana token scan. Here's precisely what changes on-chain when a mint authority is revoked — and the long list of things it does not protect you from.
Every Solana token scan leads with it: mint authority revoked (you'll also see "renounced" — same thing). It's quoted so often that it has started to work like a seal of approval, which it is not. This guide pins down exactly what the phrase means at the protocol level, how a deployer makes it true, and — the part that matters for your money — what it leaves completely unprotected.
What changes on-chain
Every SPL token has a mint account, and that account carries an optional field naming the address allowed to create new units. Revoking means the current holder of that power signs a SetAuthority instruction that sets the field to none. From that transaction on, the token program will reject any attempt to mint — there is no owner to authorize it. The supply that exists is the supply that will ever exist.
Three properties make this the most trustworthy signal in a scan. It is permanent: the protocol has no path to reinstate an authority once it's set to none. It is verifiable: anyone can read the mint account and see the field, so it can't be faked with marketing. And it is binary: there's no partial state to argue about — the power exists or it doesn't.
Read a token's mint authority in seconds
Paste any Solana mint address — the scan reports the authority fields straight from chain state.
What it protects you from
Exactly one attack class: supply inflation. With an active mint authority, a deployer can wait for real liquidity to accumulate, mint an enormous batch to themselves, and sell it into the pool — diluting every holder toward zero while draining the real money out. Revocation closes that door completely. That's a real and important protection, because supply inflation is among the cheapest rugs to execute.
What it does not protect you from
Everything else — and "everything else" is where most losses happen. A revoked mint says nothing about the freeze authority, which is a separate field with its own revocation; a token can have a fixed supply and still freeze your account. It says nothing about who already holds the supply: if the team minted itself forty percent before revoking, they can dump on you with the authority long gone. It says nothing about liquidity: the pool can be thin, unlocked, or pulled entirely by whoever holds the LP tokens. And it says nothing about behavior outside the mint account — transfer taxes, honeypot routing, or a team that simply abandons the project. Scanners lead with the mint flag because it's crisp, not because it's sufficient.
The one-line rule: "mint revoked" removes one specific power — printing new supply. Read it together with the freeze authority, the holder distribution, and the liquidity picture. A clean mint flag on a token where one wallet holds half the supply is not a clean token.
The edge cases worth knowing
Two nuances keep the signal honest. First, some legitimate tokens never revoke: a fiat-backed stablecoin must mint and burn with flows, so its live authority is design rather than danger — the meaning of the flag depends on who holds the power. Second, on Token-2022 (the newer token program), extensions can introduce other issuer powers that a plain mint-authority read doesn't cover; a thorough scan reads those too. Neither nuance changes the core: for an ordinary, freely traded token from an anonymous team, revoked-mint is the baseline you should expect, and its absence is a question that needs a very good answer.
Check the full picture, not one flag
Authorities, holders, liquidity — one scan reads them together, which is the only way they mean anything.
Frequently asked
Is “revoked” the same as “renounced”?
Yes — both describe the mint authority being set to none via a SetAuthority instruction. Different tools use different words for the identical on-chain state.
Can a revoked mint authority ever be restored?
No. Once the authority field is set to none there is no holder left to reassign it, and the protocol offers no recovery path. That permanence is exactly why the signal is trustworthy.
Is a token safe once its mint authority is revoked?
It's protected against supply inflation, nothing more. Freeze authority, concentrated holders, thin or unlocked liquidity, and transfer-level tricks are all still possible and cause most real losses.
Why do some serious tokens keep an active mint authority?
Assets that must expand and contract supply — fiat-backed stablecoins, some staking receipts — mint and burn by design. There the question shifts from “is the authority revoked” to “who holds it and are they accountable.”