Token mint

Create a Solana token

Create a new SPL Token or Token-2022 mint on Solana. Set the decimals, pick Token-2022 extensions if you want them, then your wallet signs. After creation, jump straight to minting supply, adding metadata, and revoking authorities.

Create token mint
New SPL or Token-2022 mint
Awaiting wallet

Connect a wallet to create a new token mint.

How it works

Pick a token program (classic SPL Token or Token-2022), set the decimals (9 is the Solana norm; many memecoins use 6), and choose whether to keep a freeze authority. For Token-2022, optionally enable extensions. SolKnife assembles the mint-creation transaction; your wallet and a fresh, browser-generated mint key sign it. The mint authority is set to your wallet, so you can mint supply afterwards. A small flat fee is shown before you sign. After confirmation, the result screen offers one-tap links to mint supply, add metadata (with built-in Arweave upload for logo + JSON), and revoke authorities — the mint address is pre-filled in each.

Decimals
How divisible the token is. 9 is the Solana norm; many memecoins use 6. It is fixed at creation and cannot be changed.
Mint authority
The address allowed to mint new supply. SolKnife sets it to your wallet so you can mint the supply afterwards. Revoke it later to permanently fix the supply.
Freeze authority
An address that can freeze any holder's account, so they cannot sell. SolKnife leaves it off by default; an active freeze authority is flagged as a risk by token-safety checkers, including SolKnife's own.
SPL Token vs Token-2022
Classic SPL Token is the original Solana token standard, simple and broadly supported. Token-2022 is the newer standard with optional extensions (fees, interest, privacy, hooks). Wallets and explorers support both transparently.
Confidential transfer
A Token-2022 extension that hides transfer amounts while sender and receiver stay public. Amount privacy, not anonymity, and not a mixer. Your wallet is the config authority; no auditor key is set. Cannot be combined with a transfer fee.
Transfer fee
A Token-2022 extension that takes a basis-point cut on every transfer, accruing in a config account the fee authority controls. Visible to every holder before they buy.

Frequently asked

How do I create a Solana token without writing code?
Connect a wallet, pick a token program (classic SPL Token or Token-2022), set the decimals, and optionally enable Token-2022 extensions. SolKnife builds the mint-creation transaction; your wallet co-signs with a fresh browser-generated mint keypair, and the mint goes on-chain. No CLI, no Anchor, no Solana Playground. The whole flow is one form and one signed transaction.
Should I use SPL Token or Token-2022?
If you don't need any of the new features, classic SPL Token is fine and broadly compatible — most memecoins and older tokens use it. If you want a transfer fee, interest-bearing, mint close authority, or confidential transfer (amount privacy), pick Token-2022. Wallets and explorers render both; the decision comes down to which extensions you need.
What decimals should I pick?
9 is the Solana ecosystem norm and what SOL uses. 6 is common for memecoins and matches USDC. Lower decimals (0–4) suit point/credit tokens where fractional amounts don't make sense. Decimals are FIXED at creation and cannot be changed afterwards — pick deliberately.
What does it cost to create a token on Solana?
Three things: the mint account's rent deposit (about 0.0015 SOL, refundable if you close the mint later with a mint-close authority), the Solana network fee (a few thousand lamports), and a small flat SolKnife fee shown in the review screen before you sign. Token-2022 extensions add a bit more rent but stay sub-cent at typical SOL prices.
Can I add a logo and name during creation?
Not in this tool — creation only sets the on-chain structural fields (decimals, authorities, program). Name, symbol, and image are off-chain metadata you set with the metadata tool. SolKnife's create-mint flow shows next-step links right after a successful creation, including the metadata tool with the mint address pre-filled and a built-in Arweave uploader for the image and JSON.
Is the mint authority transferable?
Yes, while it's active you can transfer it to another wallet via the SPL Token / Token-2022 set-authority instruction. SolKnife's revoke-authority tool handles the case where you want to permanently revoke it (set to None), which is one-way and irreversible — typically done after you've minted the final supply.
What is the confidential transfer extension?
A Token-2022 protocol feature where transfer amounts are encrypted (ElGamal + ZK proofs) while sender and receiver pubkeys stay public on-chain. It's amount privacy, not anonymity, and it is not a mixer. SolKnife's create-mint enables it as a flag; no auditor key is set, so your wallet is the only config authority. It cannot be combined with a transfer fee.
Should I keep a freeze authority?
Default to no. An active freeze authority lets you freeze any holder's account so they cannot sell — token-safety checkers (including SolKnife's own rug-checker) flag it as a risk. Keep it only if you have a concrete need (regulated stablecoin, compliance hold). Revoke it as soon as you can if you initially kept it.
Can I combine Token-2022 extensions?
Most combinations work (transfer fee + interest-bearing, mint close authority + anything, etc.). The one combination that's blocked at the protocol level is transfer fee + confidential transfer — they're structurally incompatible. SolKnife's form prevents this combination automatically.
Does the new mint show up in my wallet immediately?
The mint exists on-chain after confirmation, but wallets and explorers won't show it by name until you attach metadata (with the metadata tool) — until then it appears as just the mint address. The next-steps panel after creation links straight to the metadata tool with the mint pre-filled.

New to this? Read how to mint a Solana token without code.