The Register Every strike, burn, and pool — ranked on-chain. Reputation you can check, not claim. See the ledger →
Solana
SolForger

Token creation

How Much Does It Cost to Create a Solana Token? (2026 Fee Breakdown)

A Solana token costs about 0.21 SOL to create — network rent plus a service fee. Here is the full 2026 breakdown, why "free" is a myth, and how the costs compare.


“How much does it cost to create a Solana token?” has a short answer and a useful one. The short answer: about 0.21 SOL, or roughly $32 at a SOL price around $150. The useful answer is the breakdown — what each part pays for, which parts are unavoidable, and why “free” token creators aren’t actually free. Because the whole point of doing this honestly is that you should know the full price before it reaches your wallet.

The short answer, itemized

Here’s a standard SPL token with metadata and both authorities revoked — the setup most projects actually want:

Line itemCost (SOL)What it pays for
Network rent — mint account~0.0015Storing the token’s supply and authority data
Network rent — metadata account~0.006Storing name, symbol, and logo pointer on-chain
Metadata storage~0.001Uploading the logo and metadata JSON
Service fee0.20Building and submitting the transaction
Revoke mint authority0.10Fixing the supply forever (optional)
Revoke freeze authority0.10Removing the freeze capability (optional)
Total (with revocations)~0.41≈ $61 at $150/SOL
Total (create only)~0.21≈ $32 at $150/SOL

The exact figures shift a little with account sizes and the live SOL price, which is why the token creator calculates them for your specific token and shows the total in both SOL and dollars before you sign. That itemization isn’t a nicety — it’s the difference between knowing what you’re paying and trusting a bundled number.

What’s unavoidable vs what’s a fee

This is the distinction that matters, and most cost guides blur it.

Network rent is unavoidable. Solana charges rent to store data on-chain, and a token needs accounts to exist: a mint account for the supply and authorities, and a metadata account for the name and logo. Each needs a small SOL deposit. That’s roughly 0.01 SOL total, and no tool can make it zero — it’s the blockchain’s price, not the platform’s. (It’s also partly a deposit: close a token account later and Solana refunds its rent, which is the whole idea behind reclaiming SOL from empty accounts.)

Everything above rent is a service fee, and it’s where tools differ. Ours is a flat 0.2 SOL, collected atomically in the same transaction as the token — if the transaction fails, nothing is created and nothing is charged. Other platforms charge more or less; some bundle liquidity or extras into a single number. The number to compare isn’t the headline price, it’s what’s included.

Why “create a token for free” is a myth

Search for a Solana token creator and you’ll see “free” everywhere. Here’s what’s actually happening.

You cannot create a token with zero cost, because the network rent above always applies. What “free” usually means is one of two things:

  • A bonding-curve launchpad like pump.fun charges almost nothing up front and earns from trading fees instead. You don’t pay to create; you pay a cut on every buy and sell forever. For a token that trades a lot, that’s far more than 0.2 SOL over its life — the cost just moved from creation to trading.
  • A loss-leader that’s free to mint but charges for the things you actually need next: metadata, liquidity, authority revocations. The token is free; the launch isn’t.

Neither is dishonest, but neither is free. The honest framing is: creation has a small unavoidable network cost, plus whatever a tool charges, paid either once up front or continuously through trading. Decide which you’d rather pay.

How Solana compares to Ethereum

Cost is one of the real reasons tokens launch on Solana. Creating an ERC-20 on Ethereum costs $50–$200 or more in gas alone, before any platform fee, and that number spikes when the network is busy — you’re bidding for block space. Solana’s fees are a fraction of a cent per signature plus the fixed rent, so a complete token lands under $40 all-in and doesn’t swing with congestion. For anyone minting a community token or meme coin, that gap is decisive.

What changes the price

A few choices move your total:

  • Revoking authorities adds 0.1 SOL each. Worth it for almost any tradable token — fixing the supply and removing freeze are the first things buyers check.
  • A Token-2022 tax token costs a bit more than a standard SPL token because the transfer-fee extension adds account overhead.
  • Adding liquidity is a separate transaction with its own cost — opening a Raydium pool pairs your token with SOL, and you supply that SOL on top of the pool fee.
  • A logo and description cost a little storage but are worth every lamport; a token without them looks unfinished to buyers.

The real cost of doing it wrong

The cheapest mistake is skipping the parts that make a token trustworthy to save 0.2 SOL — no metadata, active authorities, no liquidity. That token costs less to make and far more to fix, because serious buyers won’t touch it and you’ll be re-doing the work anyway. The costs above aren’t overhead; they’re what turns an address into something people will actually hold.

When you’re ready, the token creator shows your exact total — rent, storage, and fee, line by line — before you sign a thing. That’s the assay line, and it’s the whole promise: no bundled number, no surprise after the fact.

Frequently asked questions

How much does it cost to create a Solana token in 2026?

About 0.21 SOL for a standard SPL token: roughly 0.01 SOL of network rent paid to Solana for the mint and metadata accounts, plus a 0.2 SOL service fee. At a SOL price around $150 that is close to $32. Revoking mint or freeze authority adds 0.1 SOL each. Every line is itemized on the signing screen before you approve.

Can I create a Solana token for free?

Not truly. Blockchain accounts require a small SOL rent deposit, so there is always a network cost of roughly 0.01 SOL. Bonding-curve launchpads advertise "free" because they charge almost nothing up front and earn from trading fees instead — you pay later, on every trade, rather than once at creation.

Why does creating a token cost SOL at all?

Solana charges rent to store data on-chain. A token needs a mint account and a metadata account, and each requires a small rent deposit to exist. That rent is the unavoidable network cost. Anything on top of it is a platform or service fee, which varies by tool.

Is it cheaper to make a token on Solana or Ethereum?

Far cheaper on Solana. An ERC-20 on Ethereum can cost $50–$200 or more in gas alone before any platform fee, and it fluctuates with network congestion. A full Solana token with metadata and revoked authorities typically lands under $40 all-in.

How much does it cost to revoke mint and freeze authority?

About 0.1 SOL each on SolForger. You can revoke both at creation in the same transaction, or later from the authorities bench. Revoking fixes the supply and removes the freeze capability permanently, and most buyers expect both to be done.

Written by

Marcus Feld

Solana engineer, SolForger

Marcus builds the transaction-signing tooling behind SolForger's benches, from the SPL create flow to the Token-2022 tax extension. He has been writing Solana programs and web3 clients since the 2021 token boom, and spends most of his time in the weeds of the Token program, Metaplex metadata, and the quirks of getting a versioned transaction through a wallet on mobile. He writes the step-by-step guides so the people who use the tools understand exactly what they are signing.

  • SPL Token program
  • Token-2022 extensions
  • Metaplex metadata
  • Transaction lifecycle
  • TypeScript & Rust