Solana Token FAQ
Frequently asked questions about creating, managing, and launching SPL tokens on Solana. Practical answers for real-world scenarios.
Getting Started
Do I need technical knowledge to create a Solana token?
No. This tool handles all technical aspects. You need a Solana wallet, some SOL for fees, and your token details (name, symbol, supply). The interface guides you through each step.
Which wallets are supported?
Any wallet that implements the Solana Wallet Adapter standard: Phantom, Solflare, Backpack, Glow, Ledger, and more. Browser extension wallets and mobile wallets are both supported.
How much SOL do I need?
Typically 0.5-1 SOL covers service fees and network costs. The exact amount is displayed before you approve the transaction. See full cost breakdown.
Can I test on devnet first?
This tool deploys to mainnet. For devnet testing, use Solana CLI tools or a developer-focused interface. Devnet tokens have no real value and are used for testing only.
Token Parameters
Can I change the token name or symbol after creation?
Name and symbol can be updated via the token metadata program if you retain update authority. Decimals and the mint address cannot be changed once deployed.
How many decimals should I use?
9 decimals is standard for fungible tokens (like SOL itself). Use 0 for whole-number tokens (e.g., vouchers, NFTs). 6 decimals matches USDC/USDT. Choose based on your use case as this cannot be changed later.
What happens if I set supply to zero?
The mint is created but no tokens are issued initially. You can mint tokens later if you retain mint authority. This is useful if you plan to distribute supply gradually.
Where should I host my token image?
Use IPFS (e.g., Pinata, NFT.Storage), Arweave, or a reliable HTTPS server. Avoid temporary hosts or image-sharing services that may delete files. The image URL is stored in metadata and displayed in wallets and explorers.
Costs and Fees
Are there any hidden fees?
No. All fees (service and network) are displayed before you approve the transaction. Confirm the amounts in your wallet before signing.
Do I pay ongoing fees after creation?
No recurring fees. You pay once at creation. Standard Solana transaction fees apply for future actions like sending tokens or minting more supply (typically £0.0003-0.001 per transaction).
Can I recover rent-exempt SOL?
Yes. Rent-exempt SOL locked in token accounts can be recovered by closing the accounts. The mint and metadata accounts require you to close them explicitly to reclaim SOL.
Why is Solana cheaper than Ethereum?
Solana's architecture allows for much higher throughput and lower per-transaction costs. Network fees are typically £0.0003-0.001 on Solana versus £5-100+ on Ethereum. Full comparison.
Authority and Security
What is mint authority?
Mint authority is the permission to create new tokens and increase supply. By default, your wallet is the mint authority. You can revoke it (making supply fixed forever) or transfer it to another address.
Should I revoke mint authority?
If you want a fixed supply with no future minting, revoke mint authority. This increases trust but is irreversible. Retain it if you plan staking rewards, vesting unlocks, or future supply needs. Security best practices.
What is freeze authority?
Freeze authority allows you to freeze individual token accounts, preventing transfers. Most community tokens revoke this to signal trust. Retain it for compliance-focused or regulated tokens.
Is my private key exposed during creation?
No. This is a non-custodial tool. All transaction signing happens locally in your wallet. Your private key never leaves your device or is transmitted to the tool.
Can someone steal my mint authority?
Only if they gain access to your wallet's private key. Secure your seed phrase, use hardware wallets for high-value tokens, and never share your private key.
After Creation
How do I list my token on a DEX?
Create a liquidity pool on Raydium, Orca, or another Solana DEX. You deposit your token and SOL (or another paired token) to enable trading. The DEX provides a user interface for pool creation.
Will my token appear automatically in wallets?
Your tokens appear in your wallet immediately after creation. Other wallets may require users to manually add the token using its mint address until it gains visibility on token lists.
How do I verify my token on explorers?
Your token is automatically visible on Solscan and Solana Explorer using the mint address. Verification badges or "verified" status require submitting your token to community token lists or contacting the explorer.
Can I update the token metadata later?
Yes, if you retain update authority. Use the Metaplex Token Metadata program or a tool that supports metadata updates. Changes include name, symbol, image URL, and description.
How do I airdrop tokens to users?
Use a bulk transfer tool or script to send tokens to multiple addresses. Each recipient's wallet must create an associated token account (costing them approximately 0.002 SOL) unless you pre-fund those accounts.
Troubleshooting
Wallet connection failed
Ensure your wallet extension is installed, unlocked, and set to Solana mainnet. Refresh the page and try reconnecting. Clear browser cache if the issue persists.
Transaction failed or insufficient funds
Check your SOL balance covers both the service fee and network costs. Add more SOL to your wallet and retry. Ensure you are on mainnet, not devnet or testnet.
Token not showing in my wallet
Some wallets hide tokens with zero balance or require manual addition. Use "Add Token" or "Manage Tokens" in your wallet settings and paste the mint address.
Image or metadata not displaying
Verify the image URL is publicly accessible and returns a valid image file. Metadata updates can take several minutes to propagate to explorers and wallets. Clear wallet cache or wait and refresh.
I accidentally set the wrong decimals
Decimals cannot be changed after deployment. Your options are to create a new token with correct decimals and migrate users, or adjust your front-end display logic if you control the interface.
Technical Questions
What is an SPL token?
SPL (Solana Program Library) Token is the standard for fungible and non-fungible tokens on Solana. It is analogous to ERC-20 on Ethereum. All tokens created via this tool follow the SPL Token standard.
What is Token-2022?
Token-2022 (Token Extensions Program) is an upgraded SPL token standard with additional features like transfer fees, confidential transfers, and interest-bearing tokens. This tool currently uses the standard SPL Token program.
Can I create NFTs with this tool?
This tool creates fungible SPL tokens. For NFTs (non-fungible tokens), use a tool that supports the Metaplex NFT standard with unique metadata per token and 0 decimals.
How are tokens stored on Solana?
Tokens are stored in Associated Token Accounts (ATAs). Each wallet has one ATA per token mint. The ATA holds the balance, and the mint account defines the token's properties (supply, decimals, authority).
What RPC node does this tool use?
The tool uses reliable RPC providers for transaction submission and confirmation. Your wallet may use a different RPC endpoint. Both must be on Solana mainnet for successful deployment.
Still Have Questions?
Explore our comprehensive guides for more detailed information.