The Two Most Powerful Permissions on a Solana Token
When you create an SPL token, you become its operator. Two specific permissions are assigned to your wallet:
- Mint Authority — the wallet that can create new tokens out of thin air
- Freeze Authority — the wallet that can freeze any holder's token account, preventing them from selling
These two powers are reasonable for a brand-new token that may need supply adjustments or fraud-response capability. They are unacceptable to retail holders who do not know you. Every serious project on Solana eventually revokes both.
This guide is what they do, why holders demand revocation, and exactly how to revoke each one.
What Mint Authority Lets You Do
If your wallet is the mint authority on token X, you can call the SPL MintTo instruction at any time to create any amount of additional supply. There is no notification, no governance, no on-chain barrier. You sign, and the new tokens appear.
For a legitimate project this can be useful — adjusting supply for staking rewards, adding inflation, fixing a deployment error. For a malicious actor it is the highest-leverage exit:
- Wait until your token pumps
- Mint 100x the existing supply to your own wallet
- Sell it all into the pool
- Walk away with the entire LP
This is one of the most common rug pulls on Solana. Mint authority makes it trivial.
What Freeze Authority Lets You Do
If your wallet is the freeze authority on token X, you can call FreezeAccount on any holder's token account. The frozen account cannot transfer, sell, or burn its tokens. The freeze persists until you call ThawAccount.
For a legitimate project this is useful for compliance — freezing wallets associated with sanctioned addresses, theft response, or KYC enforcement. For a malicious actor it is a different kind of trap:
- Let everyone buy
- Wait for the price to pump
- Freeze every wallet except your own
- Sell your supply into a now-illiquid pool while everyone else watches
This is the freeze-rug pattern. It is less common than mint-rug because it requires more orchestration, but it is just as devastating.
Why Holders Demand Revocation
In 2026, on-chain trust is everything. Sophisticated holders refuse to buy any token where either authority is still active. The reasoning:
- Even if the dev intends no harm, the wallet could be compromised
- The dev's circumstances can change — the wallet that was trustworthy in 2026 may not be in 2028
- The authority is a constant tail risk that cannot be diversified away
Tools like RugCheck explicitly score tokens by authority status. Solscan displays it. Phantom highlights it. The trust differential between revoked and unrevoked is enormous.
The market has priced this in: among tokens above $100K market cap, 95+ percent have revoked both authorities by the time they reach that point.
When You Should NOT Revoke
There are legitimate reasons to keep authorities:
1. Staking or inflation tokens. If your tokenomics involves ongoing emissions (staking rewards, validator rewards, gradual unlock schedules), the mint authority needs to stay alive to mint the emissions. Solution: move the mint authority to a governance contract or multisig, not a single wallet.
2. Stablecoins and asset-backed tokens. USDC, USDT, and similar tokens keep mint and freeze authorities because they need to mint against real-world deposits and freeze fraud-linked wallets. This is acceptable when the issuer is a known legal entity.
3. RWA tokens (Real World Assets). Tokenized real estate, securities, or other regulated assets need freeze authority for compliance.
In all three cases, the authority belongs to a multisig or governance contract, not a personal wallet. Personal-wallet authorities are essentially never appropriate after launch.
When You Should Revoke
For everyone else — meme coins, community tokens, gaming tokens, utility tokens with fixed supply — both authorities should be revoked shortly after launch. Specifically:
- After initial supply is distributed
- After any planned bonus mints (airdrops, liquidity provision)
- Before promoting to the community at scale
Most tokens revoke within 1 to 7 days of launch. Some revoke immediately at deployment if they have no planned post-mint operations.
How to Revoke on ManagerNest
If you launched via ManagerNest, the revoke checkboxes were available at deployment. If you skipped them, or launched elsewhere, you can revoke any time at managernest.com/tools/revoke:
Step 1. Open the revoke tool and paste the mint address.
Step 2. The tool loads the current authority state and confirms which authorities are still active.
Step 3. Tick the checkboxes for the authorities you want to revoke. Either one or both.
Step 4. Sign the transaction. Cost: 0.05 SOL platform fee plus ~$0.001 in Solana fees.
Step 5. Revocation is permanent. The on-chain authority field is now set to None. It cannot be restored.
Within seconds, RugCheck, Solscan, Phantom and all other tooling reflect the new state. Your token's trust score improves immediately.
What Revocation Looks Like to Holders
Before revocation, a token's Solscan page shows:
- Mint Authority: 6TC5erN8UQsHzafkTP6CBQuNBNuveRdLkTotxqxjS9t
- Freeze Authority: 6TC5erN8UQsHzafkTP6CBQuNBNuveRdLkTotxqxjS9t
After revocation, both fields show:
- Mint Authority: None
- Freeze Authority: None
ManagerNest's Token Health panel in the terminal trade view shows revocation status with green checkmarks. RugCheck shows a higher score. Phantom displays the token without warning badges.
Frequently Asked Questions
Can I revoke just one authority?
Yes. You can revoke mint authority and keep freeze, or vice versa. Most projects revoke both at the same time.
Can revocation be reversed?
No. Once revoked, the authority is permanently None. There is no way to restore it.
What if I forgot to revoke before promoting the token?
You can revoke at any time. The market will adjust within minutes once Solscan and RugCheck pick up the new state.
Does revoking affect existing holders?
No. Their balances, transfer ability, and ATA status are unchanged. Revocation only removes your power to add new supply or freeze accounts.
Do I still own the token after revoking?
You own the tokens in your wallet. You no longer have administrative powers over the mint itself. The mint becomes a pure SPL token with no privileged operators.
