Why revoke mint authority?
Mint authority is the wallet allowed to call mintTo on your Solana SPL token. Whoever holds it can mint unlimited new supply, diluting all existing holders. For a memecoin, this is the single biggest rug-pull pattern — so traders treat tokens with active mint authority as high risk.
Revoking mint authority sets the mint authority field to null. After revocation, no one can ever mint again — not the dev, not a multisig, not even the Solana Foundation. Your token's supply is locked forever.
Most legitimate Solana memecoin launches revoke mint authority in the same transaction that mints the supply, so there's never a window where mint authority is active. See our mint authority guide for the deep dive.
How to revoke mint authority on Solana
Three ways to do it:
- At creation (recommended): use Alchemii's Token Creator above and check "Revoke Mint" before signing. One transaction creates the token and revokes authority.
- After creation, via Alchemii: paste your token's mint address into the form, leave other fields blank, check "Revoke Mint", and sign. Costs ~0.05 SOL.
- Via spl-token CLI: run
spl-token authorize MINT_ADDRESS mint --disablefrom a wallet that holds mint authority.
For a step-by-step walkthrough, read our how to revoke mint authority guide.
When NOT to revoke mint authority
Some tokens legitimately need active mint authority — usually transferred to a multisig:
- Game reward tokens (need to mint as players earn)
- Stablecoins (need to mint as collateral grows)
- DAO governance tokens (need to mint via passed proposals)
- Vesting/inflation-based utility tokens (need scheduled mints)
For these, transfer mint authority to a Squads multisig or a Realms governance account instead of revoking. Memecoin launchers should always revoke — there's no legitimate reason to keep it active.
Frequently asked questions
What does revoking mint authority do?
Revoking mint authority sets the SPL token's mint authority field to null. After revocation, no one — not even the original creator — can mint new tokens, so the supply is permanently fixed.
Is revoking mint authority reversible?
No. Solana's SPL Token Program has no mechanism to restore a revoked authority. Once null, it's null forever.
How much does revoking mint authority cost?
About 0.05–0.1 SOL of network fee plus a small Alchemii service fee. Total around $7–15 USD at typical SOL prices.
Should I revoke mint authority on a memecoin?
Yes. Active mint authority is one of the most common rug-pull patterns and most exchanges and aggregators (including the Jupiter strict list) flag tokens with active mint authority as high risk.
Can I revoke mint authority during token creation?
Yes — Alchemii's Token Creator has a 'Revoke Mint' checkbox that bundles the revocation into the same transaction as the mint, so there's never a window where mint authority is active.