How to Create a Solana Token (From-Scratch Guide)
Mint a Solana SPL token in two minutes, then handle the three post-launch moves that separate a real launch from a rugpull.

Minting a new Solana SPL token costs about six cents in network fees and takes two minutes of clicks. The harder question is what to do once the mint lands — that is the line between a real launch and a rugpull. This guide walks through both: the token creation flow, and the three post-launch moves that matter most.
What "creating a token" actually means on Solana
A Solana token is a Mint Account. That account stores the supply cap, the decimal count, who can mint new tokens (mint authority), and who can freeze holder accounts (freeze authority). The SPL Token program runs the same logic for every token — there is no smart contract to write.
The token exists the moment the mint account is created, but supply starts at zero. You then call the program with the mint authority to mint tokens into your wallet. From that point on the token can move, list, trade, and settle like any other SPL token.
Step by step: a fresh mint
1. Open the Token Creator
The Solana token creator takes the parameters in a single form: name, symbol (3-5 char ticker), decimals (typically 9), initial supply, description, image, and social links. The image field accepts a square PNG or JPG; it lands in the on-chain metadata and renders in wallets.
2. Connect a wallet, fill the form, sign once
Phantom, Solflare, Backpack — the wallet adapter detects whichever you use. Once the form is complete the cost card shows two numbers: Solana network fees (around 0.025 SOL for the mint account, rent, and metadata) and the J Tools platform fee (fixed, displayed on the page). The signature prompt is a single transaction. Approve it; confirmation lands in 1-2 seconds, depending on slot timing.
3. Verify on Solscan
Open Solscan, paste the tx hash, and click through to the mint address. The page should show Decimals matching your input, Mint Authority and Freeze Authority set to your wallet, Supply showing the initial mint amount, and Metadata with name, symbol, image (the image render may lag a few seconds).
Three post-launch moves that matter
Revoke mint authority
The new minimum trust signal: holders look at who holds the mint authority. If it is still open, the owner can dilute supply at any time and tank token value. The Solana mint authority revoke tool handles it in one form. The action is one-way, so do it after the final supply is settled.
Revoke freeze authority (usually)
Freeze authority left open reads as centralized risk to holders — the owner can lock any wallet at will. Freeze authority revoke closes that door. Exceptions: stablecoins or whitelist tokens that legally need the freeze power for compliance.
Add the first liquidity pool
A token cannot trade until a DEX pool exists for it. Three common venues: Raydium V4 for the deepest trading volume — create LP + buy opens the pool and places the first buy in one bundle. Meteora DLMM covers dynamic liquidity for active LPs. Pump.fun uses a bonding curve format and graduates to Raydium automatically once the curve fills.
Common mistakes
Setting decimals to 18. Solana SPL token decimals are 0 through 9. The standard is 9 (matches SOL). Setting 18 produces transactions that reject, or tokens that look wrong to other tools.
Broken image URL. The metadata image must point to IPFS or Arweave. A direct link from a third-party host renders in some wallets and not others. The token metadata update tool lets you fix it later.
Revoking mint authority too early. If allocation is not complete, you cannot mint more after revoke. Confirm the final supply, then revoke.
What to read next
After the mint lands, the questions move to liquidity strategy, holder distribution, and metadata immutability. The guides category covers launch checklists and holder analysis. Full tool catalogue is at all tools.


