AUDIT

Token Status Audit

Check your token's on-chain status on Solscan. Verify authorities, metadata, and LP burns in under a minute.

You deployed a token, set up metadata, added liquidity. Now you need to make sure it actually looks right on explorers. This is the quick checklist. Each section is a standalone check that takes about 30 seconds. Key finding: tokens with missing metadata or active mint authority are flagged as high risk by RugCheck and similar audit tools within seconds of scanning.
CONCEPT // 01

CORE CONCEPTS

Check if mint authority is revoked

Open your token's page on Solscan. Look for the Authorities section. If the Mint Authority field shows null or None, the supply is locked forever. If it shows a wallet address, that wallet can still print new tokens. Most audit tools flag tokens with active mint authority as higher risk. If you haven't revoked yet, use the revoke mint authority guide.

Verify logo and metadata display

On your token's Solscan page, check the Metadata section. You should see your token name, symbol, and logo. If the logo shows a generic placeholder or the name says 'Unknown', the metadata URI is missing or broken. Click the URI link to open it in a browser. If the JSON file loads correctly but the logo still doesn't show, wait 1-5 minutes for indexers to refresh. If the URI returns a 404 or an error, you need to update the metadata URI. For a full walkthrough on creating metadata from scratch, see the metadata creator guide.

Confirm LP tokens are burned

Find your Raydium pool address on Solscan. Look for a transaction where LP tokens were sent to the burn address (11111111111111111111111111111111). If you see this transaction with a 'Burn' event, your liquidity is locked permanently. If you don't see it, the LP tokens are still in the deployer wallet, which means the liquidity can be pulled at any time. Traders will notice and avoid the pair. Learn more about why this matters in the rug pull prevention guide.

Review authority change history

Solscan shows a log of every SetAuthority instruction on your token. Scroll down to the Transactions tab and filter by 'SetAuthority'. You'll see a timestamped history of when mint authority was revoked, freeze authority was revoked, or update authority was changed. Useful for proving to auditors that your token's security setup was done correctly. If you see unexpected authority changes, something is wrong.
CONTEXT // 02

WHY BOTHER CHECKING?

Catch display issues early: Missing logo or wrong ticker scares off traders before they even click swap.
Prove security to holders: Mint authority revoked? LP tokens burned? Show, don't tell.
Pass automated audits: RugCheck and similar tools score your token based on on-chain data. You want that score clean before marketing starts.
Fix problems before they compound: A bad metadata URI is easy to fix if you catch it now. Six months later, nobody remembers how.
 

SYSTEM CAPABILITIES

MODULE // ACTIVE

Mint Authority Check

Verify on Solscan whether your token's supply is locked or still inflatable.
MODULE // ACTIVE

Metadata Display Check

Confirm your logo, name, and ticker show correctly on Solscan and Phantom.
MODULE // ACTIVE

LP Burn Verification

Check whether your Raydium liquidity pool tokens were burned or are still withdrawable.
MODULE // ACTIVE

Authority History

Review the full history of authority changes on your token mint.
FAQ // 03

FREQUENTLY ASKED QUESTIONS

Usually 1 to 5 minutes after the metadata transaction confirms. Phantom can take up to 24 hours to refresh its cache.
Means the metadata URI is missing, broken, or points to invalid JSON. Use the metadata creator to fix it.
Any Solana explorer works. Paste your mint address and look for the Authorities section. If Mint Authority is empty, it's revoked.
A transfer to the burn address with a 'Burn' event type. Amount should match your initial LP balance.
Yes. Each update is an on-chain transaction with a small network fee. Adding more data may also increase the rent deposit.
DEEP DIVE // 04

RELATED MODULES