How much does it cost to create a Solana token?
The Editor·8 min read·Updated 31 Aug 2026
The real cost to create a Solana token: refundable rent deposits, base and priority fees, pump.fun's 0 SOL creation fee, and the cost that actually matters.
Creating an SPL token costs a handful of small, refundable rent deposits plus transaction fees measured in fractions of a cent. On a launchpad it costs less: pump.fun charges 0 SOL to create, as of 31 August 2026, with roughly 0.015 SOL paid later at graduation. Neither figure is the real cost of launching, which is liquidity.
Most pages answering this query quote a single SOL figure. That figure is wrong for a structural reason worth understanding.
Why a single number is the wrong answer
Solana does not charge you a "token creation fee". There is no such line item in the protocol. What you pay is the sum of three different things with three different behaviours:
Rent deposits, which are refundable and sized by how many bytes an account occupies. Transaction fees, which are tiny and fixed per signature. Priority fees, which you choose and which move with network congestion.
Pages that quote one number are usually adding a stale rent estimate to a stale priority fee and presenting the total as a price. It is not a price, and two of the three components are not even costs in the ordinary sense.
Rent: a deposit, not a fee
Every account on Solana must hold enough lamports to be rent-exempt. The amount is proportional to the account's size in bytes, at a lamports-per-byte-year rate set by the network. If the account is ever closed, the deposit is returned to whoever can close it.
Creating a token means creating several accounts, each with its own deposit:
| Account | What it is | Size |
|---|---|---|
| Mint account | The token itself: supply, decimals, mint authority, freeze authority | 82 bytes for a standard SPL mint |
| Metadata account | Name, symbol and the URI pointing at your image and description | Larger and variable — it scales with the length of the strings you store |
| Associated token account | One per holder, per token — the account that actually holds a balance | 165 bytes |
The mint and metadata accounts you pay for once. Associated token accounts are the part that surprises people: every wallet that receives your token for the first time needs one created, and whoever submits that transaction pays its rent deposit. In normal trading the buyer pays for their own. If you airdrop to a list of wallets, you pay for every one of them, and at a few thousand recipients that stops being a rounding error.
To get the current figure rather than a number from an article, run solana rent 82 for a mint account or solana rent 165 for a token account against a mainnet RPC. The CLI returns the live rent-exempt minimum. That is the correct way to price this, and it is what every competing page should be telling you instead of quoting a figure that was true on the day it was written.
Transaction and priority fees
The base fee is 5,000 lamports per signature — 0.000005 SOL. A token creation flow involves a small number of signatures, so the base fee across the whole operation is negligible under any SOL price.
The priority fee is the variable one. You set it in micro-lamports per compute unit to bid for inclusion when blocks are full, and it can range from effectively zero on a quiet network to something that dwarfs everything else in this article during a congestion event. During a heavily contested launch it is the dominant cost of getting a transaction landed at all. What is a priority fee on Solana covers how to set one sensibly rather than by guesswork.
We do not print a priority fee figure here for the same reason we do not print gas figures anywhere: it would be stale before this page was indexed. Read the estimate your wallet shows on the confirmation screen.
What pump.fun and the other launchpads charge
Using a launchpad replaces most of the above with the platform's own flow.
| Venue | Creation fee | Trading fee | Graduation |
|---|---|---|---|
| pump.fun | 0 SOL | 1.25% total, split creator/protocol | ~0.015 SOL, migrating liquidity atomically to PumpSwap |
| Bags | Not published — read the interface | Creator earns 1% of every trade | Not published |
| Meteora Dynamic Bonding Curve | Set by the app built on top of it | Set by the integrator | Set by the integrator |
pump.fun's 0 SOL creation fee is the reason it hosted roughly 42,000 launches in 24 hours as of 10 June 2026 and took 85.9% of Solana token issuance on 8 February 2026 (Jupiter data). You still pay network fees to submit the transaction, and the ~0.015 SOL graduation cost only arises if the curve actually fills. What is pump.fun covers the bonding curve and fee split in detail.
Bags does not publish a creation fee. Neither do we, on its behalf. Open its create flow, connect a wallet, and read the cost on the confirmation screen before signing — that is the only number that is definitely current.
Meteora's Dynamic Bonding Curve is not a consumer launchpad at all: it is infrastructure that other apps build on, holding 6.65% of Solana issuance on 8 February 2026, second only to pump.fun. Its costs are whatever the app you are actually using sets.
The costs that are not creation costs
Here is the reframe. Add up everything above and, on a launchpad, you are looking at a total that rounds to the price of a coffee. Then come the items that decide the outcome.
Liquidity. On a bonding curve you can start with nothing. But setting an initial market cap above the platform default was the strongest single predictor of graduation in a study of 832,941 Solana mints between 8 May and 10 June 2026 — and setting it higher means committing your own SOL. If you mint directly and pair into a Raydium or Meteora pool yourself, the pool is exactly as deep as your capital makes it, you hold the other side of every trade, and there is no floor to how badly a thin pool behaves.
Revoking authorities. Revoking mint and freeze authority costs a transaction fee and nothing else, and buyer-side tools check both automatically. Skipping it is free in the short term and expensive the moment anyone runs your token through RugCheck. How to revoke mint and freeze authority covers the commands and the sequence.
Locking liquidity. If you deploy directly, the LP position is withdrawable by you until you lock or burn it, and every buyer can see that. A lock costs a service fee plus gas. How to lock liquidity — and why buyers check covers what it does and, more usefully, what it does not.
Tax on creator fees. If your token generates creator fee income, that is income in most jurisdictions at the moment you receive it, converted or not. Do you pay tax if you launch a memecoin covers why that timing catches people out.
What this page does not tell you
It does not give you a total in SOL, because the honest total is a formula rather than a figure: rent deposits at the current network rate, plus a handful of base fees, plus whatever priority fee the network is demanding, plus whatever liquidity you decide to commit. The first three are small. The fourth is the entire budget.
It does not price Bags, and it does not price venues that do not publish. A missing number is a small problem; a plausible-looking invented one that somebody budgets against is a large one.
And it does not tell you the cheap creation cost is good news. Since January 2024 pump.fun has hosted 11.9 million token launches, of which 18 have ever exceeded a $10M market cap and 96 have exceeded $1M (10 June 2026). Free creation is exactly why that ratio looks the way it does. The step-by-step route is in how to create a memecoin on Solana, the cross-chain comparison is in how much does it cost to launch a memecoin, and current per-venue launch and graduation data sits in the Meme Central analytics hub.
Frequently asked questions
How much SOL do I need to create a token?
Enough to cover rent deposits on the mint and metadata accounts, a few base fees at 5,000 lamports per signature, and a priority fee — plus anything you intend to buy of your own token. On a launchpad like pump.fun there is no creation fee at all, so the wallet balance requirement is small. Check the confirmation screen for the live figure.
Is Solana rent refundable?
Yes. Rent exemption is a deposit sized to the account's byte length, not a charge. Close the account and the lamports return to whoever holds close authority. That is why treating rent as a "cost of creating a token" overstates the true expense, though in practice a mint account is rarely closed.
What does it cost to launch on pump.fun?
0 SOL to create, as of 31 August 2026. You pay Solana network fees to submit the transaction. If the bonding curve fills and the token graduates, roughly 0.015 SOL is paid at migration to PumpSwap. The 1.25% trading fee is charged on trades rather than to you at launch, and part of it routes back to you as creator.
Why do associated token accounts matter for cost?
Because each holder needs one and somebody pays its rent deposit. In ordinary trading the buyer pays for their own, so it never appears in your budget. If you airdrop to thousands of wallets, you are creating and funding thousands of 165-byte accounts, and that is a real number rather than a rounding error.
Fixed supply and a lock, without the separate steps
Everything in the direct-mint route above — revoking authorities, creating the pool, locking the LP — is a separate transaction with a window between each one. MintPlus, Meme Central's sibling product from TrustSwap, mints a fixed-supply token with liquidity locked through Team Finance at creation, on Ethereum, Robinhood Chain, Polygon, Base and BNB. Note what that list does not include: MintPlus does not support Solana, so for an SPL token you are back to the manual sequence or a Solana-native launchpad.
Nothing here is financial, legal or tax advice. Memecoins are extremely high-risk: most lose most of their value, and the majority of tokens launched never reach a decentralised exchange at all. Never spend money you cannot afford to lose entirely. Meme Central does not recommend any specific token. Data described as Meme Central's own reflects tokens indexed by Meme Central and is not whole-market data.