Forge

Guide

How to create a Solana token

A complete walkthrough for launching your own SPL token on Solana — no coding, no command line. Takes about five minutes and one transaction.

What you'll need

Step-by-step

01

Install a wallet

Download Phantom or Solflare from their official sites and create a new wallet. Save your recovery phrase somewhere safe — anyone with it can access your funds.
02

Fund your wallet with SOL

You'll need enough SOL to cover the small network fee plus your chosen token-creation fee. A few dollars' worth is typically more than enough.
03

Connect your wallet to a launchpad

A launchpad like Forge handles the technical part — creating the mint account, setting decimals, and attaching metadata — through Solana's standard SPL Token program. Connect your wallet to get started.
04

Set your token's details

Choose a name and symbol, your total supply, and how many decimal places it uses (9 is standard for most tokens). Upload an image — this becomes your token's icon in wallets and explorers.
05

Decide on trust features (optional)

Serious projects often revoke mint authority (so no more tokens can ever be created, capping the supply permanently), revoke freeze authority (giving up the ability to freeze holders' tokens), and lock metadata so it can't be changed later. These are optional add-ons, not required to launch.
06

Sign and confirm

Review the total fee, sign once in your wallet, and the transaction creates your token on-chain — typically confirmed within seconds.
07

Verify it

Search your token's mint address on Solana Explorer to confirm the name, symbol, image, and supply all look right.

Ready to create yours?

Forge handles all of the above in one flow, starting at 0.03 SOL.

Create your token

Frequently asked questions

How much does it cost to create a Solana token?

Costs vary by platform, typically ranging from around 0.03 SOL for a basic token up to 0.4+ SOL on some platforms once you add trust features like revoking mint authority. The network fee itself is only a fraction of a cent — most of the cost is the platform's service fee.

Do I need to know how to code?

No. Launchpads like Forge handle the underlying Solana program interactions for you — you fill in a form and sign one transaction. Coding is only necessary if you're building the token creation tooling yourself.

What is mint authority?

Mint authority is the permission to create additional supply of a token after launch. Whoever holds it can mint more tokens at any time. Revoking it permanently removes that ability, which is why many buyers look for it as a trust signal.

What is freeze authority?

Freeze authority lets the holder freeze any wallet's token balance, preventing that holder from moving or selling it. Some projects revoke this to reassure buyers the tokens can't be arbitrarily locked.

Can I edit my token after it's created?

Name, symbol, and image can be updated later unless you choose to make metadata immutable at creation. Total supply and decimals cannot be changed after minting. Revoked authorities cannot be restored.

Is creating a token the same as launching a successful project?

No — creating the token is a five-minute technical step. Building an actual community, liquidity, and use case around it is a separate and much larger effort.