© 2026 Alchemii
BLOCKCHAIN

Solana logoSolana Memecoin Creator with Revoked Authorities

Authority revocation is the technical bedrock of memecoin trust. Mint authority null = supply locked forever. Freeze authority null = no holder can ever be frozen. Update authority null = metadata is permanent. All three revoked atomically with the mint transaction.

Overview

Solana SPL tokens have three authorities baked into the mint and metadata accounts: mint authority, freeze authority, and update authority. By default, the wallet that creates a token holds all three — meaning the dev can mint more supply, freeze any holder, and rebrand the token at will. For a memecoin, all three are rug-pull vectors.

The fix: revoke each authority atomically with the mint transaction. This page is the path that does all three revokes in one signed flow — your token launches with mint, freeze, and update authority all set to null from minute one.

What each authority does (and what revoking accomplishes)

Mint authority: the wallet allowed to call `mintTo` and create new tokens of this SPL token. Active = unlimited dilution risk. Revoked (null) = supply is permanently fixed; nobody can ever mint again, including you.

Freeze authority: the wallet allowed to freeze any holder's token account, blocking them from transferring or selling. Active = the dev can freeze a seller mid-dump or freeze suspected exchange listings. Revoked = no holder can ever be frozen, including by you.

Update authority (Metaplex metadata): the wallet allowed to change the token's name, symbol, image, or social links. Active = dev can rebrand the token after launch. Revoked = metadata is permanently locked, including by you.

For memecoins: revoke all three. There's no legitimate reason for a memecoin to keep any of them active.

Why 'atomic with mint' matters

Some launchers mint the token first, then come back later (sometimes hours later) to revoke authorities. This creates a window where authorities are active.

Sophisticated traders watch for this. If your token's first transaction is the mint and the second transaction is the revoke (with a gap of any duration), savvy traders flag the gap as a signal that you held the powers temporarily — and the dump charts are full of devs who minted, allocated to themselves, then revoked.

Atomic revocation: the mint instruction and the revoke instructions are in the same Solana transaction. The token has never had active authorities — Solscan shows null from block one. This is a trust signal that delayed-revoke launches can never claim.

Alchemii bundles all three revokes into the same transaction as the mint. The token is created and locked in one signed flow.

When NOT to revoke each authority

Mint authority — keep active for: utility tokens with planned inflation (game rewards, vesting unlocks, staking emissions). Transfer to a multisig like Squads instead of revoking.

Freeze authority — keep active for: regulated stablecoins (USDC, PYUSD). U.S. sanctions law requires them to freeze sanctioned addresses; revoking would break compliance.

Update authority — keep active for: projects that may need to fix typos, migrate image hosting, or update social links. Lower-risk than mint/freeze. Many serious projects keep this active on a multisig and revoke later once branding is final.

For memecoins: revoke all three regardless. The community expects it and exchanges/aggregators flag tokens with active authorities.

Verifying authorities are actually revoked

Solscan: paste the mint address. The 'Authorities' panel shows mint, freeze, and update authority. All three should display as 'null' or 'None' for a fully-revoked memecoin.

Solana Explorer: explorer.solana.com — same data, sometimes cleaner display.

DexScreener: the pair page shows authority status as part of the token's risk indicators.

RugCheck.xyz: automated authority detection plus other rug-vector checks. Good for a quick all-in-one verification.

Don't trust 'we revoked authorities' claims without on-chain verification. The Solscan panel is the source of truth.

Frequently asked questions

Are all three authority revokes really mandatory for memecoins?

For mint and freeze authority: yes, mandatory. Every credible memecoin launch revokes both, and most aggregators (Jupiter strict list, DexScreener verification) require it. For update authority: optional but recommended after final branding. Many launches keep update authority active for the first day or two to fix typos, then revoke.

Can a revoked authority ever be restored?

No. Solana's SPL Token Program (and Metaplex Metadata Program) have no restore mechanism. Once an authority is set to null, it's null forever — including past chain restarts, hardforks, or anything else. This is the entire point: irreversible commitment.

What if I revoke authorities and then need to add a missing social link?

If update authority is active: you can update metadata (add Twitter handle, fix description). If you've also revoked update authority: the metadata is locked. Plan branding decisions before revoking update authority — keep it active until you're sure the metadata is final.

How much extra does the all-three-revoke flow cost?

About +0.15 SOL on top of the base token creation cost (~0.07 SOL). So total for a fully-revoked memecoin: ~0.22 SOL (~$30-45 USD). Each revoke is a separate on-chain instruction with its own network fee + Alchemii service fee.

Can I revoke authorities on a token I made with a different tool?

Yes — if the mint address is one your wallet still controls. Paste the existing mint address into the form, leave other fields blank, check the revoke toggles, sign. The revocation transaction goes through regardless of which tool minted the original token.

Does revoking authorities affect the token's price?

Not directly — revocation is administrative. But announcing the revocation typically moves price upward because it removes a major risk factor. Tokens that revoke at launch (atomic with mint) tend to outperform tokens that revoke later in the launch flow, because the trust signal is cleaner.