Quick Answer
A Solana token generator is a web tool that automates the full SPL token deployment process — from creating the on-chain mint account to uploading metadata and configuring authorities. You provide the parameters; the generator handles the blockchain interaction. No CLI, no Rust, no Solana SDK knowledge required.
What the Generator Handles for You
There are several on-chain operations that happen every time a Solana token is created. Done manually with the CLI, each one is a separate command. Our generator bundles them into a single workflow:
Mint Account Creation
Generates a unique keypair for your token mint and creates the on-chain account that tracks total supply and decimal precision.
Metadata Upload
Writes Metaplex-compatible metadata (name, symbol, description, image URI) directly to the blockchain so wallets and DEXs can display it correctly.
Logo Storage
Uploads your logo to IPFS for decentralised, permanent storage. The resulting URI is embedded in your on-chain metadata automatically.
Authority Configuration
Sets mint authority, freeze authority, and update authority according to your choices. You can revoke any of them immediately after creation.
Supply Minting
Mints the full token supply to your connected wallet address. Every token goes directly to you — we have no custody over your supply.
Account Rent
Covers the SOL rent deposit required to keep the mint account alive on-chain. This is a Solana protocol requirement, not a platform fee.
How to Use the Token Generator
The whole process takes about five minutes. Here's exactly what happens:
Connect your wallet
Click Connect Wallet and approve the connection in Phantom, Solflare, Backpack, or whichever Solana wallet you use. No seed phrase ever leaves your browser — the connection just lets the generator request transaction signatures.
Fill in your token parameters
Enter your token name, symbol (2–10 characters), total supply, and decimal count. Nine decimals is the Solana standard; six decimals works well for tokens designed as currencies. If you're unsure, our decimals guide explains the trade-offs in plain English.
Upload a logo (optional but recommended)
A 500×500px PNG works best. The generator uploads it to IPFS and stores the hash on-chain, so your logo shows up in Phantom, Jupiter, Raydium, and Solscan without any extra steps from you.
Set your authorities
Decide whether to keep or revoke mint authority (prevents future minting), freeze authority (prevents wallet freezing), and update authority (locks metadata permanently). Most serious token launches revoke mint and freeze authority immediately. See our authority guide if you're unsure.
Review and sign
The generator shows you a full summary before asking for your signature. Check the mint address preview, supply amount, and fee breakdown. When you're happy, sign in your wallet — typically one or two transactions.
Confirm on-chain
Within 30–60 seconds your token is live. You'll get the mint address, which you can look up on Solscan or Solana Explorer immediately.
Generator vs Solana CLI: What's the Difference?
You can create an SPL token manually using the spl-token CLI — but it requires Node.js, a local Solana keypair, manual IPFS uploads, separate Metaplex metadata transactions, and a good understanding of how rent works. Here's how that stacks up:
| Task | Token Generator | Manual CLI |
|---|---|---|
| Mint account creation | Automatic | spl-token create-token |
| Logo upload to IPFS | Automatic | Manual (NFT.storage or Pinata) |
| Metaplex metadata on-chain | Automatic | Separate metaboss command |
| Authority configuration | UI toggles | Multiple spl-token commands |
| Time to deploy | < 5 minutes | 30–90 minutes (first time) |
| Technical knowledge required | None | Node.js, Solana CLI, JSON RPC |
| Cost | From 0.1 SOL | Network fees only (~0.01 SOL) |
The CLI costs less but assumes you're comfortable with command-line tools and have time to debug RPC errors. For most people creating a token for a project or community, the generator is the practical choice.
Token Parameters Explained
Name & Symbol
The name can be anything up to 32 characters. The symbol (ticker) is typically 2–6 uppercase letters — think SOL, USDC, BONK. Longer symbols up to 10 characters are technically supported but look awkward in wallet UIs. Pick something short and memorable; it's very difficult to change later without update authority.
Supply
The total supply is set at generation time. If you revoke mint authority afterwards (which we recommend for most projects), this becomes the permanent maximum supply — no more tokens can ever be created. Common choices range from 1 billion to 1 quadrillion for community/meme tokens, or a more modest 100 million for project utility tokens. See our tokenomics guide for supply strategy considerations.
Decimals
Decimals control the smallest divisible unit of your token. With 9 decimals (the Solana default), one token can be split into 0.000000001 units — useful for tokens that will trade at high prices. With 0 decimals, your token is indivisible — useful for NFT-style or governance tokens where fractions don't make sense. Six decimals is a common middle ground. Full breakdown in our decimals guide.
Authorities
Three authorities control what can change after generation. Mint authority allows minting new tokens; revoke it to lock supply permanently. Freeze authority allows freezing individual token accounts; revoking it signals full decentralisation. Update authority allows changing metadata like the name, symbol, or logo — useful early on, worth revoking once everything is finalised. The generator lets you revoke any or all of these in the same transaction as creation.
Token Generator FAQ
What does the Solana token generator actually do?
How long does it take to generate a Solana token?
What information do I need before I start?
Can I generate a Token-2022 token?
What happens to my token if I lose the wallet?
Is the generator safe? Can it access my funds?
Related Resources
Step-by-Step Creation Guide
Detailed walkthrough for your first Solana token, including screenshots and common pitfalls.
Token Authority Management
When to revoke mint, freeze, and update authorities — and why it matters for trust.
Decimals & Supply Explained
Choose the right decimal count and supply size for your token's intended use case.
Token Generation Cost Breakdown
Full breakdown of what you're paying for: platform fee, rent, metadata, and optional add-ons.
Tokenomics Guide
Design a supply and distribution strategy that holds up after launch.
Post-Generation Launch Guide
What to do after your token is generated: liquidity, listings, and community.