All guides
TutorialSPLBeginner

How to Create a Solana Token in 2026 (No Code)

The clearest 2026 guide to creating a Solana token with no code: wallet setup, SPL mint, Metaplex metadata, authority revokes, and Raydium liquidity.

6 min read

Creating a token on Solana in 2026 takes under a minute and costs less than $20. You don't need to write Rust. You don't need to install the Solana CLI. You don't need a Pinata account. You need a wallet, a name, a logo, and one signed transaction. Here's the full walkthrough.

What you need before you start

  • Phantom wallet (or Backpack, Solflare — any Wallet Standard wallet) installed in your browser
  • ~0.15 SOL in that wallet (covers rent, network fees, the 0.1 SOL SolanaForge service fee, plus room for a small Raydium pool)
  • A name and ticker — 3–6 letter all-caps ticker, ideally unique
  • A logo — 512×512 PNG with a clear silhouette, under 1 MB

That's it. No GitHub repo, no node provider, no IPFS account.

Step 1 — Connect your wallet

Head to SolanaForge's create page and click Connect Wallet. Approve the Phantom popup. SolanaForge is non-custodial — your wallet signs every instruction, and we never hold keys, supply, or LP tokens.

Step 2 — Fill in token details

  • Name: the full token name (e.g. "Moon Coin")
  • Symbol: 3–6 letter ticker, all caps (e.g. "MOON")
  • Decimals: 9 is the Solana convention. Use 6 for stablecoin-style precision, 0 for NFT-like fungibles.
  • Total supply: memecoins use 1,000,000,000. Utility tokens can use anything.
  • Logo: 512×512 PNG works best. SolanaForge pins it to IPFS via Pinata so wallets render it forever.

Optionally add a description, website, Twitter, Telegram, and Discord links. These all live in the Metaplex metadata JSON pinned alongside your logo.

Step 3 — Choose your authority revokes

This is where most launches make or break trust. Before signing, toggle:

  • Revoke mint authority — fixes supply forever. No one (not even you) can ever mint more.
  • Revoke freeze authority — no wallet can be frozen mid-trade.
  • Revoke update authority — locks the metadata permanently.

For any community token or memecoin, revoke all three. For a real product with planned emissions (staking rewards, vesting unlocks), keep mint authority but revoke freeze.

Step 4 — Simulate, then sign

Click Simulate. SolanaForge runs the entire transaction against a recent Solana state and shows you exactly how many lamports you'll spend before signing. If it looks right, click Deploy — Phantom pops one signature request and the mint, ATA creation, supply minting, MetadataV3 account, IPFS pin, and revokes all settle atomically.

You either get a perfectly configured token or nothing changes on-chain. There's no partial failure mode.

Step 5 — Verify on Solscan

The success screen gives you the mint address and a Solscan link. Click through and confirm:

  • ✓ Name and symbol render correctly
  • ✓ Logo loads from IPFS
  • ✓ Mint authority shows None (if you revoked it)
  • ✓ Freeze authority shows None (if you revoked it)
  • ✓ The URL has no ?cluster=devnet parameter — you're on real Solana mainnet

Step 6 — Add Raydium liquidity (if you want trading)

A token without a pool isn't tradeable. From the same dashboard, open the Pool tab and create a Raydium CPMM pool against SOL or USDC. Typical first pool for a memecoin is 1% of supply paired against 0.5–2 SOL. Then burn the LP tokens to lock the pool — that's the trust signal aggregators look for.

What it costs

| Line item | Amount | | --- | --- | | Solana rent (mint + ATA + metadata) | ~0.0035 SOL | | Network base fee | <0.00001 SOL | | SolanaForge service fee | 0.1 SOL | | Total to mint | ~0.104 SOL (~$15–20) | | Raydium pool seed (optional) | your choice (0.5–2 SOL typical) |

No subscriptions, no per-trade tax, no permanent dependency on us.

Common gotchas

  • Devnet vs mainnet — many "free" launchpads deploy to devnet. Always verify the explorer link has no ?cluster=devnet. SolanaForge launches only on mainnet.
  • Skipping revokes — every scam-checker (Dexscreener, Birdeye, Phantom) flags tokens with live mint authority as unsafe. Holders dump within minutes.
  • Tiny pool — a 0.05 SOL Raydium pool means the first buyer eats 80% slippage. Aim for 0.5–2 SOL minimum.

Ready?

Create your Solana token →

Ready to launch your token?

One signature, 0.1 SOL service fee, IPFS metadata pinned via Pinata, mainnet only.

More guides