Mint Solana Token
Create the mint account and issue its entire supply in one signed transaction — no CLI, no Rust, no keypair files.
Set name, symbol, supply, decimals and logo, approve once, and the mint account, your token account, the full supply and the on-chain Metaplex metadata all exist — 0.5 SOL. Already have a token and need more of it? That is a different job, and the next section says exactly what it takes.
Mint Your Token BelowTwo Things People Mean by “Mint a Solana Token”
Both are called minting, and they are not the same job. Find yours before you spend anything.
1. Mint a token that does not exist yet
You want a new token: its own mint address, its own supply, its own name and logo. That is what the form above does — the mint account is created and its entire supply is minted to your wallet in the same transaction, for 0.5 SOL. This is what most people searching for a Solana token minter are after.
Mint a new Solana token →2. Mint more of a token you already have
You want to increase the supply of an existing mint. This tool cannot do that — it creates new mints, it does not top up existing ones. Whether anyone can depends on one thing: if you still hold that token's mint authority, you can mint more yourself from that wallet (spl-token mint <MINT_ADDRESS> <AMOUNT>, or any SPL-compatible tool signing with it). If mint authority has been revoked, the supply is fixed permanently and nothing can change it.
How to Mint a Solana Token
Connect a Solana wallet
Phantom, Solflare, Backpack, or any wallet implementing the Solana Wallet Adapter standard. Hold ~0.56 SOL — the 0.5 SOL fee plus roughly 0.01 SOL of account rent and network fees. Your keys never leave your wallet.
Set supply, decimals and metadata
Token name (up to 32 characters), symbol (up to 10), total supply, decimals from 1 to 9, and a logo — the logo is required, since it is what wallets and explorers display. Description and social links are optional.
Approve one transaction
A single signature creates the mint account, initializes it with your decimals and authorities, opens your associated token account, mints the entire supply into it, and writes the on-chain Metaplex metadata. You get the mint address and an explorer link back.
What the Single Transaction Actually Does
One signature, six instructions, in this order. Worth knowing before you approve anything that spends your SOL — including here.
| # | Instruction | What it does |
|---|---|---|
| 1 | SystemProgram.transfer | The 0.5 SOL platform fee. It rides in the same transaction as the mint, so if the mint fails, the fee is not taken. |
| 2 | SystemProgram.createAccount | Allocates the 82-byte mint account and funds its rent exemption. This account is your token's permanent on-chain identity. |
| 3 | initializeMint | Writes your decimals and sets mint authority and freeze authority to your wallet. |
| 4 | createAssociatedTokenAccount | Opens the associated token account that will hold your balance of your own token. |
| 5 | mintTo | Mints the entire supply — supply × 10^decimals base units — into that account. This is the minting step itself. |
| 6 | createMetadataAccountV3 | Writes the Metaplex metadata account: name, symbol, logo URI and links, mutable so you can still correct them while you hold update authority. |
Because the fee transfer is instruction 1 of the same transaction, it succeeds or fails with the mint. There is no state where you are charged and no token exists.
What You Need Before You Mint
Every limit the form enforces, so nothing stops you halfway through. Decimals and supply in particular are decisions, not defaults.
| Field | Accepted | Why it matters |
|---|---|---|
| Token name | 1–32 characters | Rejected above 32 — the Metaplex metadata field length. |
| Symbol | 1–10 characters | What wallets and DEX pairs display. Shorter is conventional. |
| Decimals | 1 to 9 | 9 matches SOL and is the usual default; 6 suits stablecoin-style tokens. 0-decimal tokens are not supported by this form. Permanent once minted. |
| Total supply | Any amount above 0 | Minted in full at creation. More is only possible later if you keep mint authority. |
| Logo | Required | Creation will not proceed without one — it is what every wallet and explorer shows. |
| Wallet balance | ~0.56 SOL | The 0.5 SOL fee plus roughly 0.01 SOL of rent for the three accounts created and the network fee. |
What This Minting Tool Does
No CLI, No Keypair Files
Replaces spl-token create-token, create-account and mint-to, plus a separate Metaplex metadata call. No Rust, no local keypair, no funded CLI wallet — a browser and your own wallet.
One Signed Transaction
The mint account, your token account, the whole supply and the metadata account are created in a single transaction you approve once. Not a multi-step wizard that leaves you half-finished if a step fails.
The Supply Lands in Your Wallet
The full supply is minted straight to your own associated token account. Nothing is held back, vested, or routed through us — we never custody your tokens or your SOL.
On-Chain Metaplex Metadata
Name, symbol, logo, description and links are written on-chain via createMetadataAccountV3, so Phantom, Solscan, Jupiter and DEX Screener render your token from the moment it exists.
You Keep All Three Authorities
Mint, freeze and update authority are all set to your wallet at creation — there is no authority checkbox in this form. Revoking any of them is a separate step afterwards at 0.1 SOL each.
The Rest of the Launch Is Here
Same site, same wallet: open a Raydium pool, create an OpenBook Market ID, burn or lock LP, remove liquidity, revoke authorities. Minting is a step here, not the end of the product.
What Minting Costs
One price to mint, and nothing held back for an upsell. Everything below the first row happens after the token exists and is genuinely optional — most launches do not need all of it.
| Step | Cost | What it includes |
|---|---|---|
| Mint a new Solana token | 0.5 SOL | Mint account, full supply, associated token account, on-chain Metaplex metadata, logo hosting, mainnet deployment |
| Revoke mint authority | 0.1 SOL | Optional, afterwards — permanently fixes supply, so nobody can ever mint more |
| Revoke freeze authority | 0.1 SOL | Optional, afterwards — guarantees holders can always transfer and sell |
| Revoke update authority | 0.1 SOL | Optional, afterwards — makes the metadata permanent; irreversible |
Pools, Market IDs and LP burning are priced on the pricing page, or total your own launch with the cost calculator.
After You Mint
- 1Verify the mint on an explorerOpen the mint address on Solscan and confirm supply, decimals and authority status match what you configured. This takes a minute and catches a mistake while it is still cheap to work around.
- 2Decide on the authorities you keptYou hold mint, freeze and update authority by default. Revoking mint authority is what proves the supply is fixed; revoking freeze authority proves holders can always sell. 0.1 SOL each, whenever you are ready.
- 3Make it tradeableA minted token with no liquidity cannot be bought. Open a Raydium CPMM pool, or an AMM V4 pool — our pool tool builds the OpenBook market it requires in the same flow, so there is no separate Market ID to buy.
- 4Claim your listing dataOnce trading starts, submit your logo and socials to DEX Screener so your pair displays properly rather than as an unnamed contract.
Revoke authorities · Create a liquidity pool · Burn or lock LP
Minting a Solana Token — FAQ
Ready to Mint Your Solana Token?
Name, symbol, supply, decimals, logo — one signature and the mint exists with its full supply in your wallet. 0.5 SOL, and the rest of the launch path is on this site too.
Mint Your Token Now