Revoke Freeze Authority
Revoke freeze authority on any Solana SPL token so no one can ever freeze holder accounts. Raydium requires it to open a pool, and buyers check it before they trade. From a flat 0.05 SOL.
Select a token you created, or paste any SPL mint address you control.
How to Revoke Freeze Authority
Connect your wallet
Connect Phantom, Solflare, or any Solana wallet that currently holds the freeze authority for the token.
Load your token
Paste the token's mint address, or pick from your tokens. Tokenry reads the authorities on-chain and confirms your wallet is the current freeze authority. It works on any SPL token, not only ones created here.
Revoke and sign
Confirm the 0.05 SOL fee and sign one transaction. The freeze authority is set to null, so no one can ever freeze a holder's account, and you can verify it on Solscan straight after.
No Code Required
Create and launch tokens without writing any code. Visual configuration for all features.
Fully Transparent
All token data is publicly visible and verifiable on block explorers.
Multi-Chain
Available on Solana, Ethereum, Base, Arbitrum, Polygon, and BNB Chain.
Full Ownership
You have full control. We never hold your keys, tokens, or authority.
Frequently Asked Questions
Why Revoke Freeze Authority on Your Solana Token
Freeze authority gives a wallet the power to freeze any holder's token account, which locks their tokens in place so they cannot be transferred or sold. Left active, it means the issuer can stop holders from ever selling, and buyers know it. Revoking the freeze authority sets it to null and removes that power for everyone, permanently, guaranteeing that every holder can always move their tokens.
There are two concrete reasons Solana projects revoke freeze authority. The first is trust: a token whose issuer can freeze wallets reads as a honeypot risk, and RugCheck, DexScreener, and Birdeye all flag it. The second is more immediate, and it is the one that catches most creators by surprise.
Freeze Authority and Raydium: A Hard Requirement
Unlike revoking mint authority, which is a trust norm rather than a rule, revoking freeze authority is a technical prerequisite for Raydium. Raydium's standard AMM will not create a liquidity pool while the freeze authority is still set; it returns an authority-enabled error and blocks the pool. So if you are trying to list on Raydium and cannot create the pool, an active freeze authority is almost always why.
The fix is exactly what this tool does: revoke the freeze authority, setting it to null, and the pool creation goes through. A common launch order is to mint your supply, revoke the freeze authority so Raydium will accept the pool, and revoke mint authority to lock the supply, then add liquidity.
Works on Any SPL Token, and How It Works
You do not need to have created your token with Tokenry. Paste any SPL token's mint address, and if your connected wallet is the current freeze authority, the tool builds the revoke transaction, whether the token came from another platform, a launchpad, or the Solana CLI.
Under the hood, Tokenry reads the mint account, confirms your wallet holds the freeze authority, and builds a single transaction that sets that authority to null. It is non-custodial: the server only prepares the transaction, and you sign it in your own wallet, so your keys never leave your device. It works on both standard SPL tokens and Token-2022 tokens.
Freeze, Mint, and Update Authority, and the CLI Alternative
A Solana token can carry three authorities: freeze authority controls whether holder accounts can be frozen, mint authority controls whether new supply can be created, and update authority controls whether the metadata can be changed, on Token-2022 tokens. Revoking the freeze authority only removes the ability to freeze accounts; it does not touch the mint or update authority, which Tokenry lets you revoke with separate tools.
The developer route is the Solana CLI command spl-token authorize with the mint and the freeze --disable flag, which sets the freeze authority to null. It works, but it means installing the CLI and handling your keypair on the command line, whereas this tool does the same thing in one click. One reminder: revoking removes the ability to freeze new accounts, but it does not unfreeze accounts that are already frozen, so thaw those first if you need to.