Revoke mint authority on Solana
Permanently remove the mint authority from your SPL token so no more can ever be minted and the supply is fixed forever. Paste your mint address, connect your wallet, and sign a single transaction — non-custodial from start to finish.
- Sets the mint authority to null (SetAuthority MintTokens → null)
- Fixes the total supply permanently — no more can be minted
- One transaction, signed in your own wallet
- The on-chain equivalent of
spl-token authorize <MINT> mint --disable
What revoking mint authority does
Every SPL token has a mint authority: the single address allowed to create new units of that token. While it exists, the holder can inflate the supply at will, which is why an active mint authority is a red flag to buyers and to token scanners. Revoking it issues a SetAuthority instruction that sets the mint authority to null, permanently. After that, the supply on-chain is the final supply — nobody can ever mint more.
This tool does exactly one thing: it revokes the mint authority on the mint address you paste, in a single transaction your own wallet signs. It never takes custody of the token, the mint, or any other authority. It is the graphical equivalent of running spl-token authorize <MINT> mint --disable yourself.
When to revoke, and what it does not cover
Revoke the mint authority once your supply is genuinely final — after any presale mint, airdrop allocation, or LP seeding is done, because you cannot mint again afterward. Fixing the supply is only one of three separate trust signals:
- Mint authority — controls whether more supply can be created. This tool handles it.
- Freeze authority — controls whether holders can be frozen. Revoke it with the revoke freeze authority tool.
- Liquidity — a fixed supply means nothing if you can still pull the pool. Lock or burn your liquidity too.
Revoke mint authority: FAQ
How do I revoke mint authority on Solana?
Paste your token mint address, connect the wallet that holds the mint authority, and sign one transaction. The tool issues a SetAuthority instruction that sets the mint authority to null so no more tokens can ever be created.
Can I undo it?
No. Setting the mint authority to null is one-way and irreversible — there is no way to restore it afterward.
Does this make my token rug-proof?
No. It stops supply inflation only. You still need to revoke the freeze authority and lock or burn the liquidity for a launch to be meaningfully rug-resistant.
What does it cost?
A small service fee plus the Solana network fee, charged only when the revoke succeeds. We don't keep the fee — see how this tool's fees benefit compassSOL stakers.
Solana Token Markets