Options Compared

The Best Way to Create a Solana Token

CLI, custom script, or browser creator — here is what each path actually requires, where launches usually break, and how to pick the one that fits your project.

Non-custodial · One signature · Metaplex metadata + IPFS · Deployed on mainnet

The three realistic options

You can create a Solana token with the command line, with your own script using @solana/spl-token and the Metaplex SDK, or with a browser creator that builds and simulates the transaction for you.

All three produce the same kind of on-chain asset. They differ in setup time, the number of manual steps, and how easy it is to forget something like metadata or authority handling.

  • CLI: full control, local keypair, separate metadata upload
  • Custom script: flexible, needs Node tooling and testing
  • Browser creator: one form, one signature, metadata and IPFS included

What a good launch includes either way

Whichever route you pick, the same things make a token look complete to wallets, explorers, and buyers.

  • Metaplex MetadataV3 written on-chain
  • Logo and JSON pinned to IPFS rather than a single server
  • A clear decision on mint and freeze authority
  • A liquidity pool if the token is meant to trade
  • A verifiable transaction on Solscan

Where to go next

The Solana token creator covers the browser route end to end. For extensions such as transfer fees, use the Token-2022 creator, and read the full walkthrough if you want every detail first.

How to choose, step by step

  1. Step 1. Decide how technical you want to be

    CLI and scripts require Rust or Node tooling and a funded keypair file. A browser creator needs only a wallet.

  2. Step 2. Check that metadata is included

    A mint without Metaplex metadata shows as an unknown token in wallets and explorers.

  3. Step 3. Confirm custody

    The mint should be owned by your own wallet, not by a third-party account.

  4. Step 4. Compare the real cost

    Rent for the mint, token account, and metadata account is unavoidable. Platform fees differ.

  5. Step 5. Create the token

    Fill in name, symbol, decimals, supply, and logo, simulate, then sign once.

  6. Step 6. Plan authorities and liquidity

    Revoke authorities if that fits your project, then create a pool if it should trade.

Start your token here

Type a name and ticker — we'll carry them straight into the creator. No wallet needed yet.

Frequently asked questions

Is the Solana CLI better than a browser creator?

The CLI gives you full control and is useful if you are already a Solana developer. It also requires a local keypair file and a separate metadata step, which is where most manual launches go wrong.

What usually goes wrong with copied scripts?

Missing Metaplex metadata, a logo hosted on a server that later disappears, and mint authority left open by accident.

Does a browser creator hold my token?

Not here. The transaction is built in your browser, signed by your wallet, and the mint is owned by your address.

What does this creator charge?

0.18 SOL as the platform fee, plus Solana's own mint rent and transaction cost. Pool creation, liquidity management, and revocation have their own separate fees.

Which route is best for a first launch?

If you are not already writing Solana programs, the browser flow removes the failure points without giving up ownership of the mint.

Keep reading

Ready to create your token?

Connect your wallet, fill the form, sign once. Your token is live on mainnet with on-chain metadata, a real logo, and optional authority revokes.