Jump2CoinJump2Coin
All guides
Token CreationBeginner
6 min read·

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

Creating an SPL token on Solana used to require deep technical knowledge and custom Rust programs. Today, platforms like Jump2Coin let anyone launch a professional-grade Solana token in under five minutes — no coding, no CLI, no infrastructure to manage.

This guide walks through every step, from picking a name to your token appearing on-chain.


What You Need Before Starting#

  • A Solana wallet — Phantom or Backpack are the most widely supported
  • At least 0.2 SOL for the platform fee + on-chain rent (devnet SOL is free via the faucet for testing)
  • A token name, symbol, and optionally a logo image (PNG or JPG recommended)

If you're testing, switch your wallet to Devnet first: Settings → Developer Settings → Change Network.


Step 1 — Connect Your Wallet#

Visit Jump2Coin /create and click Connect Wallet in the top-right. Phantom will ask you to approve the connection — this is a read-only handshake, no transaction is signed.

Once connected, you'll see your wallet address and SOL balance in the navbar.


Step 2 — Choose Token Standard#

You'll see two options at the top of the form:

  • SPL (Standard) — The classic Solana token standard. Compatible with all wallets, DEXs, and tools. Best for 99% of projects.
  • Token-2022 — The newer standard with optional extensions (transfer fees, non-transferable supply, permanent delegate). Advanced users only.

For a meme coin or community token, choose SPL.


Step 3 — Fill in Token Details#

Token Name — Up to 32 characters. Choose something memorable. This appears in wallets and on DEXscreener.

Symbol — 3–6 characters, all caps. This is the ticker that traders use (PEPE, BONK, WIF).

Decimals — Most tokens use 9 (same precision as SOL). Meme coins sometimes use 6 to display a larger whole-number price at small market caps.

Total Supply — Enter a whole number. Common choices:

  • 1,000,000,000 (1 billion) — most popular for meme coins
  • 1,000,000 (1 million) — higher per-unit price appearance
  • 21,000,000 — Bitcoin reference

You cannot increase the supply after launch if you revoke mint authority. Choose wisely.

Description — Optional but recommended. Shown on your token dashboard and improves discoverability.


Your logo is permanently stored on Arweave — a decentralized storage network where data is guaranteed to persist forever (unlike IPFS pinning, which can lapse).

  • Supported formats: PNG, JPG, GIF, SVG
  • Max file size: 2MB
  • Recommended size: 500×500px (square)

The logo is uploaded before the transaction is built, so only one Phantom popup appears at launch — not two.

Tip: Use a transparent PNG background. It renders cleanly on both dark and light explorer UIs.


Add your project's website, Twitter/X, Telegram, and Discord links. These appear on your token dashboard and are embedded in the on-chain metadata.

Social links are optional but strongly recommended — tokens with active social presence rank higher in trust signals.


Step 6 — Authority Settings#

Two toggles under Authority Settings control what can happen to your token after launch:

Revoke Mint Authority — Once enabled, no one (including you) can ever create more tokens. Supply is fixed forever. This is the single strongest trust signal for investors. +0.05 SOL fee.

Revoke Freeze Authority — Prevents any wallet from freezing token accounts (a freeze stops transfers). Disabling this prevents rug vectors where the project team locks holder wallets. +0.05 SOL fee.

Both options are one-way and irreversible. Most serious projects enable both. Tokens with both revoked are marked Safe in the trending list.


Step 7 — Review Fees and Launch#

The fee summary at the bottom shows the full cost:

ItemAmount
Platform fee0.15 SOL
Revoke Mint (optional)+0.05 SOL
Revoke Freeze (optional)+0.05 SOL
On-chain rent (est.)~0.003 SOL
Total~0.25 SOL

Click Create Token, approve the Phantom transaction, and wait 10–20 seconds for confirmation.


What Happens On-Chain#

When the transaction confirms:

  1. A new mint account is created at a unique address — this is your token's permanent address
  2. Your wallet receives the full token supply (minus any treasury allocation)
  3. Token metadata (name, symbol, logo URL, socials) is written via Metaplex Token Metadata
  4. If you chose revokes, those authority instructions execute in the same atomic transaction

Everything is bundled into a single transaction — no partial states possible.


After Launch#

Once your token is live:

  • Share the dashboard linkjump2coin.com/dashboard/[mint-address]
  • Add Raydium liquidity — Use /launch to create a trading pool so your token has a real market price
  • Airdrop tokens — Use /airdrop to distribute to early community members
  • Monitor analytics — DexScreener indexes your pair within 1–5 minutes of liquidity being added

Frequently Asked Questions#

Can I change the token name or logo after launch? If you chose immutable metadata, no. Otherwise, you can update metadata via your dashboard at any time.

Can I mint more tokens later? Only if you did not revoke mint authority. Once revoked, supply is permanently fixed — not even you can change it.

What is the difference between SPL and Token-2022? Token-2022 is Solana's newer token standard with programmable extensions. For simple meme coins, standard SPL is the right choice. See our Token-2022 guide for details.

Why does Jump2Coin take 1% of my supply? A small treasury allocation supports platform operations. You can see exactly how many tokens go to the treasury in the fee summary before signing.

How long until my token appears on DEX aggregators? After adding liquidity, DexScreener and Jupiter typically index the pair within 1–5 minutes.

Can I create a token on devnet first to test? Yes. Switch your wallet to Devnet, get free SOL from the faucet, and create a test token. Everything works identically — Jito bundles are the only feature disabled on devnet.

Share