Solana Token Builder
A browser tool for creating and deploying SPL tokens on Solana without touching a command line.
Minting an SPL token normally means a CLI, a keypair and a sequence of transactions in the right order. This does it from a form — name, symbol, supply, decimals, and which capabilities the token keeps: minting, burning, freezing — then deploys to devnet, testnet or mainnet through whatever wallet is connected, with a live preview of what the token will look like before anything is signed.
The detail that turns out to matter most is metadata. Tokens deployed without a name, image or description get flagged as possible phishing by wallets, which is a bad first impression for something you cannot easily undo. So uploading the image to IPFS and writing proper Metaplex metadata is part of deployment here rather than a step left for later.
Built with Next.js and Tailwind, using the Solana web3 and SPL token libraries for the on-chain work.