Everything you need to know about Solana SPL token metadata — from the Metaplex standard to on-chain and off-chain data, token names, symbols, logos, descriptions, and social links. Create your token with perfect metadata using CoinRoot in under 60 seconds.
Solana token metadata is the foundational layer of information that gives an SPL token its identity. Without metadata, a Solana token is nothing more than a raw mint address — a string of alphanumeric characters that carries no human-readable meaning. Metadata transforms that address into a recognizable digital asset with a name, symbol, logo, description, and additional properties that wallets, block explorers, decentralized exchanges, and portfolio trackers can display to end users.
In the Solana ecosystem, token metadata is governed primarily by the Metaplex Token Metadata Standard, which is the most widely adopted protocol for attaching rich information to SPL tokens and NFTs. This standard was developed by Metaplex Foundation and has become the de facto mechanism through which every major Solana wallet (Phantom, Solflare, Backpack), every DEX aggregator (Jupiter, Raydium, Orca), and every block explorer (Solscan, SolanaFM, Solana Explorer) reads and displays token information.
When you create a token on the Solana blockchain, the SPL Token Program handles the core mechanics: minting, transferring, burning, and managing authorities. However, the SPL Token Program itself does not include any mechanism for storing human-readable metadata. This is where the Metaplex Token Metadata Program steps in. It creates a separate on-chain account — known as a Program Derived Address (PDA) — that is deterministically linked to the token's mint address. This PDA stores the token's name, symbol, and a URI that points to a JSON file containing extended metadata.
💡 Pro Tip: With CoinRoot, you don't need to understand the technical details of Metaplex PDAs or JSON schemas. Simply fill in your token's name, symbol, description, and upload your logo. CoinRoot handles the entire metadata creation process — including IPFS upload and on-chain registration — automatically. Each action costs just $0.08.
Understanding Solana token metadata requires recognizing that it operates on two distinct layers: on-chain metadata and off-chain metadata. Both layers work together to provide a complete picture of your token to the outside world.
On-chain metadata is stored directly on the Solana blockchain within the Metaplex metadata account (PDA). This data is immutable once the update authority is revoked, and it is the primary source of truth for wallets and applications. The on-chain metadata account contains the following key fields:
Off-chain metadata is the JSON file that the URI field in the on-chain metadata points to. This file contains the richer, more detailed information about the token that would be too expensive or impractical to store entirely on-chain. The standard JSON structure for Solana token metadata follows this format:
Standard Metadata JSON Structure:
The JSON file includes fields such as: name (token name matching on-chain), symbol (ticker matching on-chain), description (detailed description of the token's purpose), image (URL to the token logo in PNG or JPG format, typically on IPFS), external_url (link to the project website), and attributes (array of custom key-value properties). Additionally, the extensions object can include social links like Twitter/X handle, Telegram group, Discord server, and website URL.
The off-chain JSON file is typically hosted on decentralized storage networks like IPFS (InterPlanetary File System) or Arweave. IPFS uses content-addressing, meaning the file's URI is derived from its content hash — if the content changes, the URI changes too, ensuring data integrity. Arweave offers permanent storage with a one-time payment model. CoinRoot uses IPFS by default for all metadata storage, ensuring your token's information is permanently accessible and decentralized.
CoinRoot handles all metadata fields automatically. Name, symbol, logo, description, social links — all set in 60 seconds.
Create Token Now — $0.08Before diving deeper into metadata specifics, it is essential to understand the foundation: SPL tokens. SPL stands for Solana Program Library, and the SPL Token Program is the core smart contract (program) on Solana that governs the creation, transfer, and management of all fungible and non-fungible tokens on the network. Think of SPL tokens as Solana's equivalent of ERC-20 tokens on Ethereum — but faster, cheaper, and more efficient.
The SPL Token Program defines several key concepts that every token creator should understand. The Mint Account is the central authority of a token — it stores the total supply, decimal precision, and authority addresses. When you "create a token" on Solana, you are essentially creating a new Mint Account. The Token Account (also called Associated Token Account or ATA) is the individual wallet that holds a specific user's balance of a particular token. Each wallet address has a unique Token Account for each SPL token it holds.
The SPL Token Program supports both fungible tokens (where every unit is identical and interchangeable, like a currency or utility token) and non-fungible tokens (where each unit is unique, like an NFT). For the purposes of this guide, we focus primarily on fungible SPL tokens — the type most commonly created for meme coins, utility tokens, governance tokens, and DeFi applications on Solana.
Every SPL token on Solana has several fundamental properties that are set during creation and can significantly impact the token's functionality and trustworthiness:
Supply and Decimals: The total supply defines how many token units exist, while decimals determine the smallest divisible unit. For example, a token with 1,000,000,000 supply and 9 decimals has a total of 1 billion tokens, where the smallest unit is 0.000000001 tokens. Most Solana tokens use 9 decimals (matching SOL's native precision), though you can choose any value from 0 to 9. A meme coin might use 9 decimals with a supply in the billions, while a governance token might use 6 decimals with a supply in the millions.
Mint Authority: The mint authority is the Solana account that has the power to create (mint) new tokens, increasing the total supply. After the initial token creation and supply minting, the mint authority can be revoked — meaning no one can ever create additional tokens. This is a critical trust signal for buyers and investors because it guarantees a fixed supply. On CoinRoot, revoking mint authority costs just $0.08 and takes one click.
Freeze Authority: The freeze authority is the Solana account that can freeze (lock) individual token accounts, preventing the holder from transferring or trading their tokens. While this feature has legitimate use cases in regulated securities, for most community tokens and meme coins, having an active freeze authority is a red flag — it means the creator could lock anyone's tokens at any time. Revoking freeze authority removes this power permanently. CoinRoot offers freeze authority revocation for $0.08.
Update Authority (Metadata): As mentioned earlier, the update authority controls whether the token's metadata can be modified after creation. Keeping update authority allows you to fix typos, update logos, or add new social links. Revoking it makes the metadata permanently immutable — which is a strong trust signal showing that the token's identity cannot be altered.
If you are coming from the Ethereum ecosystem, understanding the differences between SPL tokens and ERC-20 tokens is crucial for making informed decisions about where to launch your project. The differences span cost, speed, architecture, and tooling.
Transaction Cost: Deploying an ERC-20 token on Ethereum can cost anywhere from $50 to $500+ in gas fees depending on network congestion. On Solana, creating an SPL token costs a fraction of a SOL in network fees — typically under $0.01. When you add CoinRoot's $0.08 per action fee, the total cost of creating a fully-featured token with metadata, minted supply, and revoked authorities is still under $1. This makes Solana the overwhelmingly preferred choice for independent creators, small teams, and meme coin communities.
Transaction Speed: Ethereum processes approximately 15-30 transactions per second with block times of 12-15 seconds. Solana processes 65,000+ transactions per second with block times of 400 milliseconds. This means your token creation, metadata updates, and liquidity pool additions happen in sub-second timeframes on Solana — compared to minutes on Ethereum during peak congestion.
Token Architecture: ERC-20 tokens are smart contracts deployed individually on Ethereum. Each token has its own contract address and code. SPL tokens, by contrast, are all managed by a single, shared program (the SPL Token Program). This architectural difference means SPL tokens benefit from a standardized, audited codebase — reducing the risk of smart contract vulnerabilities that plague many ERC-20 tokens.
Metadata Handling: ERC-20 tokens store their name and symbol directly in the smart contract code. There is no standardized mechanism for attaching logos, descriptions, or social links — each project handles this differently, often through centralized token lists. Solana's Metaplex Token Metadata standard provides a universal, decentralized solution that every wallet and DEX can read, giving SPL tokens a significant advantage in discoverability and presentation.
🔄 Solana vs Ethereum — Quick Comparison: Solana offers sub-$0.01 fees, 65,000+ TPS, sub-second finality, standardized metadata via Metaplex, and a growing DeFi ecosystem with Jupiter, Raydium, and Orca. Ethereum has higher fees, lower throughput, and no standardized metadata for fungible tokens. For token creators, Solana with CoinRoot provides the fastest, cheapest, and most feature-rich path to launch.
The Metaplex Token Metadata Program is the backbone of token identity on Solana. Originally created by the Metaplex Foundation to support NFTs, the standard has been widely adopted for fungible tokens as well. Understanding how this program works gives you complete control over how your token appears across the entire Solana ecosystem.
When you create token metadata using CoinRoot, the following process happens behind the scenes in a single, atomic transaction:
First, a Program Derived Address (PDA) is calculated. The PDA is a deterministic address derived from three seeds: the string "metadata", the Metaplex program ID, and your token's mint address. This means there is exactly one metadata account for each mint — no ambiguity, no duplicates. Any application that knows the mint address can derive the metadata PDA and look up the token's information.
Second, the metadata account is initialized with your token's name, symbol, and URI. The name can be up to 32 characters, the symbol up to 10 characters, and the URI can be up to 200 characters. These character limits are enforced by the Metaplex program itself.
Third, the off-chain JSON file is uploaded to IPFS. This file contains the extended metadata: logo image URL, description, social links, and any custom attributes. The IPFS content hash (CID) is used to construct the URI stored on-chain, creating a verifiable link between the on-chain pointer and the actual metadata content.
Fourth, the update authority and other control fields are set according to your preferences. You can choose to retain update authority (allowing future changes) or immediately revoke it (making metadata immutable). CoinRoot gives you this choice during the token creation flow.
The token name is the primary human-readable identifier for your SPL token. It appears in wallet balances, DEX trading pairs, block explorer token pages, and portfolio trackers. Choosing the right name is critical for branding and discoverability. Best practices for naming include keeping it concise (ideally under 20 characters), making it memorable and unique, avoiding special characters that may not render properly in all wallets, and considering SEO implications if you want your token to be discoverable through search engines. On CoinRoot, you enter the token name in a simple form field — no technical knowledge required.
The token symbol is the short abbreviation used to identify your token in trading contexts. Just like BTC for Bitcoin, ETH for Ethereum, and SOL for Solana, your token's symbol is what traders and community members will use most frequently. The Metaplex standard allows up to 10 characters for the symbol, but best practice is to keep it between 3-5 characters. Symbols should be all uppercase, easy to type and remember, not conflicting with existing major tokens, and reflective of your token's name or brand. CoinRoot lets you set the symbol during token creation with instant preview.
The token logo is the visual identity of your SPL token. It appears as the icon in wallet balances, DEX charts, portfolio views, and block explorer pages. A professional, high-quality logo significantly impacts trust and adoption. Technical requirements for token logos on Solana include: PNG or JPG format (PNG preferred for transparency support), square aspect ratio (recommended 512×512 or 1024×1024 pixels), file size under 100KB for fast loading, and clear, recognizable design at small sizes (32×32 and 64×64 pixels). CoinRoot allows you to upload your logo directly during token creation. The image is automatically uploaded to IPFS and linked in the metadata JSON.
The description field in the off-chain JSON metadata provides a detailed explanation of your token's purpose, utility, and community. This description appears on block explorers like Solscan and in advanced wallet views. A good description should explain what the token is for, mention key features or unique selling points, reference the community or ecosystem (Telegram, Discord, Twitter/X), and be clear and professional — avoiding excessive hype or misleading claims. CoinRoot provides a text area for entering your description, which is included in the metadata JSON automatically.
The metadata JSON supports an extensions object that can include links to your project's social media and web presence. Common fields include Twitter/X handle, Telegram group link, Discord server invite, website URL, and any other relevant links. These social links are displayed by block explorers like Solscan and DexScreener, making it easy for potential buyers and community members to find your official channels. CoinRoot lets you enter all social links during the creation flow — they are automatically formatted and included in the metadata JSON.
Name, symbol, logo, description, social links — CoinRoot handles everything. No CLI, no code, no JSON editing.
Start for $0.08Now that you understand the theory behind Solana token metadata, let's walk through the practical process of creating a fully-featured SPL token with complete metadata using CoinRoot. This guide covers every step from initial setup to final deployment on Solana mainnet.
The first step is to visit coinroot.app and connect your Solana wallet. CoinRoot supports all major Solana wallets including Phantom, Solflare, Backpack, and any WalletConnect-compatible wallet. Your private keys never leave your device — CoinRoot only builds the transaction, which you sign and approve from your own wallet. You will need a small amount of SOL in your wallet to cover the Solana network fee (typically under $0.01) and the CoinRoot action fees ($0.08 per action).
Once your wallet is connected, CoinRoot presents a clean, intuitive form where you enter all your token information. This includes the token name (what your token will be called), the symbol or ticker (the short abbreviation), the total supply (how many tokens to mint), decimal precision (typically 9 for Solana tokens), logo upload (PNG or JPG image), description (what your token is about), and social links (Twitter, Telegram, Discord, website). CoinRoot shows a real-time preview of how your token will appear in wallets and explorers as you fill in each field.
After entering your token details, CoinRoot gives you the option to configure the three authority types that control your token post-creation. Mint authority determines whether new tokens can be minted in the future — revoking it fixes the supply permanently. Freeze authority determines whether token accounts can be frozen — revoking it ensures no one can lock holders' tokens. Update authority determines whether the metadata can be changed — revoking it makes the token's identity immutable. Each authority revocation is a separate action costing $0.08 on CoinRoot. For maximum trust, most creators revoke all three authorities immediately during creation.
CoinRoot displays a final review screen showing all your token details, metadata, and authority settings. You can verify everything is correct before proceeding. When you click "Create Token", CoinRoot builds a single Solana transaction that creates the mint account, uploads the metadata JSON to IPFS, initializes the Metaplex metadata account with name, symbol, and URI, mints the specified supply to your wallet, and applies any authority revocations you selected. You sign this transaction in your wallet, and within seconds, your fully-featured SPL token is live on Solana mainnet with complete metadata.
After creation, CoinRoot provides you with your token's mint address and direct links to view it on Solscan, SolanaFM, and Solana Explorer. You can verify that all metadata fields are correctly set, authorities are properly configured, and the total supply matches your specification. Your token is immediately visible in your wallet (Phantom, Solflare, etc.) with the correct name, symbol, and logo.
Minting is the process of creating new token units and adding them to circulation. When you create a token on CoinRoot, you specify the initial supply that gets minted directly to your wallet. This is typically the entire planned supply of the token. For example, if you create a meme coin with a supply of 1,000,000,000 tokens, all 1 billion tokens are minted to your wallet address during creation.
After the initial mint, the mint authority holder can create additional tokens at any time. This is why revoking mint authority is so critical for token credibility — it proves to buyers that the supply cannot be inflated. Without mint authority revocation, a token creator could theoretically mint unlimited additional tokens, diluting existing holders. CoinRoot makes mint authority revocation a simple toggle during creation ($0.08).
Liquidity is what makes your token tradeable on decentralized exchanges. Without a liquidity pool, your token exists but cannot be bought or sold on the open market. Adding liquidity involves creating a trading pair — typically your token paired with SOL — on a DEX like Raydium.
When you create a liquidity pool, you deposit a quantity of your token along with a corresponding amount of SOL into a shared pool smart contract. This pool enables automatic market-making (AMM), allowing anyone to swap between your token and SOL at a price determined by the ratio of tokens in the pool. CoinRoot offers integrated liquidity pool creation on Raydium for $0.08, making it easy to go from token creation to a live trading pair in minutes.
Once a Raydium liquidity pool exists for your token, it automatically becomes discoverable on Jupiter DEX aggregator — the largest swap interface on Solana. Your token will also appear on tracking platforms like DexScreener, Birdeye, and GeckoTerminal, dramatically increasing visibility and trading volume.
Authority revocation is one of the most important steps in launching a credible Solana token. The three authorities — mint, freeze, and update — each serve different purposes, and understanding when and why to revoke each one is essential for building trust with your community and potential buyers.
What it does: Permanently prevents anyone from creating new tokens beyond the current supply. Why it matters: Buyers check mint authority status on Solscan before investing. A token with active mint authority means the creator could inflate supply at any time, destroying value for existing holders. When revoked, the total supply is fixed forever — this is the single most important trust signal for any token launch. CoinRoot price: $0.08.
What it does: Permanently removes the ability to freeze (lock) individual token accounts. Why it matters: An active freeze authority means the creator could lock any holder's tokens, preventing them from selling or transferring. This is a major red flag for buyers — it essentially gives the creator the power to trap funds. Revoking freeze authority guarantees that every holder retains full control of their tokens at all times. CoinRoot price: $0.08.
What it does: Makes the token's metadata permanently immutable — no one can change the name, symbol, logo, description, or any other metadata field. Why it matters: Without update authority revocation, a creator could change the token's identity after launch — swapping the name, logo, or description to mislead buyers. While there are legitimate reasons to retain update authority temporarily (fixing typos, updating social links), revoking it demonstrates maximum commitment to the token's identity. CoinRoot price: $0.08.
🛡️ Authority Revocation Best Practices: For maximum trust, revoke all three authorities (mint, freeze, update) immediately during token creation. This costs just $0.24 total on CoinRoot ($0.08 × 3 actions) and establishes your token as a credible, transparent project. Buyers and investors will verify these settings on Solscan — having all authorities revoked is the strongest possible signal of legitimacy.
One of the most common questions from token creators is: "How do I get my token listed on Jupiter, Raydium, DexScreener, and other platforms?" The answer is directly tied to metadata quality. DEX aggregators and token tracking platforms automatically discover tokens based on their on-chain metadata and liquidity pool activity. Proper metadata is not optional — it is the prerequisite for visibility.
Jupiter is the largest DEX aggregator on Solana, routing trades across multiple liquidity sources for the best prices. Jupiter automatically indexes tokens that have a Raydium, Orca, or other supported DEX liquidity pool. When Jupiter indexes your token, it reads the Metaplex metadata account to display the token name, symbol, and logo in its swap interface. If your metadata is missing or incomplete, your token may appear as "Unknown Token" — severely undermining trading confidence.
DexScreener and Birdeye are the two most popular platforms for tracking Solana token prices, charts, and trading activity. Both platforms automatically detect new liquidity pools and begin tracking token performance in real-time. They pull metadata directly from the Metaplex metadata account, displaying your token's name, symbol, logo, description, and social links on their respective pages. Having complete metadata ensures your token's DexScreener and Birdeye pages look professional and trustworthy.
Solscan is the most widely used Solana block explorer, and having a well-presented token page on Solscan is essential for credibility. Solscan reads metadata from the Metaplex metadata account and displays all available information including name, symbol, logo, description, social links, authority status, and holder distribution. Tokens with complete metadata and revoked authorities appear more professional and trustworthy to potential investors browsing Solscan.
Create your token, set metadata, and add a Raydium liquidity pool — all from CoinRoot. Your token will be live on Jupiter, DexScreener, and Birdeye within minutes.
Create Token Now — $0.08A crucial decision every token creator faces is whether to keep metadata mutable (changeable) or make it immutable (permanent). This decision has significant implications for trust, flexibility, and long-term project management.
Mutable metadata allows the update authority to change any field at any time — name, symbol, URI (and therefore logo, description, social links). This is useful during early development when you might need to correct errors, update branding, or add new community channels. However, mutable metadata carries a trust cost: sophisticated buyers will note that the token's identity could change at any time.
Immutable metadata, achieved by revoking update authority, permanently fixes all metadata fields. Once revoked, no one — not even the original creator — can change anything. This is the gold standard for trust because it guarantees that the token's identity is locked in place forever. The tradeoff is obvious: you cannot fix mistakes after revocation. For this reason, CoinRoot recommends carefully reviewing all metadata fields before revoking update authority.
The URI field in the Metaplex metadata account supports several storage backends, each with different properties. IPFS (InterPlanetary File System) is the most popular choice for token metadata. IPFS uses content-addressed storage, meaning the URI is derived from the file's content hash. If the content changes, the hash changes — providing built-in integrity verification. CoinRoot uses IPFS by default. Arweave offers permanent, pay-once storage that guarantees data availability indefinitely. Some projects prefer Arweave for its permanence guarantees, though IPFS with pinning services offers equivalent practical durability. Centralized servers (HTTP URLs) are sometimes used for metadata URIs but are strongly discouraged — if the server goes down, the metadata becomes inaccessible, and wallets will show missing or broken information.
Solana's newer Token-2022 program (also known as Token Extensions) introduces native metadata support directly within the token program — eliminating the need for a separate Metaplex metadata account. Token-2022 extensions include on-chain metadata fields, transfer fees, interest-bearing tokens, confidential transfers, and permanent delegate support. While Token-2022 is gaining adoption, the Metaplex standard remains the dominant approach for most token launches. CoinRoot supports both standards, automatically selecting the appropriate program based on your configuration.
For projects managing multiple tokens or migrating from one metadata standard to another, CoinRoot provides tools for efficient metadata management. You can update metadata for existing tokens (if update authority is retained), migrate between storage providers (e.g., from HTTP to IPFS), and batch-process metadata changes across multiple tokens. These advanced features are available through CoinRoot's dashboard at the standard $0.08 per action rate.
Meme coins are the most popular use case for Solana token creation, driven by the network's low fees and fast transaction speeds. Successful meme coin launches require eye-catching metadata: a memorable name, a catchy symbol, a viral-worthy logo, and an engaging description. The metadata is what gives a meme coin its personality — it is literally the first thing potential buyers see. With CoinRoot, meme coin creators can go from idea to live, tradeable token in under 60 seconds. The typical meme coin launch on CoinRoot includes creating the token with 1B+ supply, uploading a meme logo, setting social links (Twitter/X and Telegram are essential), revoking mint and freeze authorities, and creating a Raydium liquidity pool. Total cost: under $1.
Utility tokens provide access to services, features, or ecosystems within a specific platform or application. These tokens require professional, descriptive metadata that clearly communicates the token's purpose and the platform it serves. The description field is particularly important for utility tokens — it should explain what the token does, how it's used within the platform, and what benefits holders receive. CoinRoot supports all metadata fields needed for professional utility token launches.
Governance tokens give holders voting rights over protocol decisions, treasury management, and development direction. These tokens typically have more conservative supplies (millions rather than billions) and require metadata that conveys professionalism and trustworthiness. Revoking all authorities is especially important for governance tokens — the community needs absolute confidence that the token's properties are immutable.
Community tokens represent membership, reputation, or contribution within online communities. They might be used for tipping content creators, accessing exclusive channels, or rewarding participation. Metadata for community tokens should reflect the community's brand and values, with social links pointing to the community's primary platforms (Discord, Telegram, etc.).
Tokens used in DeFi protocols — such as LP tokens, yield-bearing tokens, or synthetic assets — require precise metadata that clearly identifies the underlying mechanism or asset. These tokens often retain update authority to accommodate protocol upgrades while using conservative naming conventions that describe the token's function (e.g., "Raydium SOL-USDC LP").
Before deploying your token to Solana mainnet, ensure every metadata field meets professional standards. Your token name should be unique and not conflicting with existing major tokens, memorable and easy to spell, under 20 characters for optimal display, and free of special characters that might not render in all wallets.
Your symbol should be 3-5 uppercase characters, not conflicting with existing tickers, easy to type and search, and representative of your token name or brand.
Your logo should be a square PNG image (512×512 or 1024×1024 pixels), under 100KB for fast loading, clearly recognizable at small sizes (32×32), and professionally designed with clean edges.
Your description should be 1-3 sentences explaining the token's purpose, free of excessive hype or misleading claims, grammatically correct and professional, and including key features or unique selling points.
Your social links should include at least Twitter/X and Telegram (the two most important for Solana tokens), point to active, maintained accounts, and use the correct URL format for each platform.
Many token creators make avoidable mistakes with their metadata that can significantly impact their token's credibility and discoverability. Some of the most common issues include leaving the description empty (wallets and explorers will show a blank description, making your token look incomplete), using a low-resolution or non-square logo (this causes distortion in wallets and DEXs), setting the symbol to lowercase (convention on Solana is all-uppercase tickers), using HTTP URLs instead of IPFS for the metadata URI (centralized hosting is a single point of failure), and revoking update authority before double-checking all fields (you cannot fix metadata after revocation). CoinRoot helps you avoid all these mistakes by providing a guided creation flow with real-time previews and validation.
The Metaplex Token Metadata account is a Program Derived Address (PDA) with seeds ["metadata", metaplex_program_id, mint_pubkey]. The account data includes a 1-byte key field (metadata key type = 4 for MetadataV1), a 32-byte update authority public key, a 32-byte mint public key, a variable-length name string (max 32 chars padded with null bytes), a variable-length symbol string (max 10 chars padded), a variable-length URI string (max 200 chars padded), seller fee basis points (u16), an optional creators array, a primary sale happened flag, and an is mutable flag. The total account size varies but is typically around 679 bytes. Rent exemption for this account costs approximately 0.0056 SOL.
The JSON file referenced by the metadata URI should conform to the Metaplex Token Standard. Required fields include name (string, matching on-chain name), symbol (string, matching on-chain symbol), and image (string, URL to logo image). Recommended fields include description (string, detailed token description), external_url (string, project website URL), and attributes (array of objects with trait_type and value keys). The extensions object can include twitter (handle or URL), telegram (group URL), discord (invite URL), website (project URL), and any custom key-value pairs.
IPFS uses content-based addressing where each file is identified by its CID (Content Identifier) — a cryptographic hash of the file's content. For Solana token metadata, the typical URI format is ipfs://[CID] or https://ipfs.io/ipfs/[CID]. CoinRoot uses reliable IPFS pinning services to ensure your metadata remains accessible permanently. The content-addressing model means that if the metadata JSON file's content changes, its CID changes — providing built-in tamper detection.
The SPL Token Program (Token Program ID: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA) is the core program that manages all token operations on Solana. Key instructions include InitializeMint (creates a new mint account), MintTo (mints new tokens to a token account), Transfer (moves tokens between accounts), Burn (destroys tokens permanently), SetAuthority (changes or revokes mint/freeze authority), and FreezeAccount/ThawAccount (freezes or unfreezes a token account). CoinRoot constructs and submits these instructions on your behalf through a user-friendly interface.
Major Solana wallets read token metadata differently, but all rely on the Metaplex metadata account as the primary source. Phantom wallet displays the token name, symbol, logo, and current balance. It reads metadata from the on-chain PDA and fetches the logo from the URI's image field. Solflare provides similar display plus advanced features like metadata inspection. Backpack shows metadata with additional NFT-focused features. All wallets cache metadata to reduce RPC load, meaning new tokens may take a few minutes to appear with full metadata after creation.
While the Metaplex metadata account provides the base layer of token identity, some platforms maintain additional verification layers. Jupiter's Token List is a curated list of verified tokens that appear prominently in the Jupiter swap interface. Getting on this list requires a verified token with complete metadata, active liquidity pools, and community support. DexScreener allows projects to verify their token pages by proving ownership of social media accounts linked in the metadata. Birdeye offers similar verification features. Having complete, professional metadata is a prerequisite for all verification processes.
CoinRoot provides a complete toolkit for creating Solana tokens with professional-grade metadata — no coding required.
Set token name, symbol, description, and social links through a simple form. CoinRoot handles Metaplex metadata account creation and IPFS upload automatically.
Upload your token logo in PNG or JPG format. CoinRoot automatically uploads it to IPFS for permanent, decentralized storage and links it in the metadata JSON.
Revoke mint, freeze, and update authorities with one click each. Build maximum trust with your community by proving your token's properties are permanently fixed.
Create a Raydium liquidity pool directly from CoinRoot. Your token becomes instantly tradeable on Jupiter, DexScreener, Birdeye, and other platforms.
From form to mainnet in under a minute. CoinRoot builds and submits a single atomic transaction — no multi-step processes, no CLI commands, no waiting.
Supports Phantom, Solflare, Backpack, and WalletConnect wallets. Your private keys never leave your device — CoinRoot only builds the transaction.
Add Twitter/X, Telegram, Discord, and website links directly in your token metadata. These appear on Solscan, DexScreener, and Birdeye token pages.
Test your token on Solana devnet before going live. Use the same creation flow with free devnet SOL to verify everything is perfect before committing to mainnet.
See exactly how your token will appear in wallets, DEXs, and explorers before deployment. CoinRoot shows a live preview as you fill in each metadata field.
No CLI, no Rust, no JSON files. CoinRoot handles everything from a single dashboard.
Visit coinroot.app and connect your Phantom, Solflare, or Backpack wallet. You need a small amount of SOL for network fees.
Enter your token name, symbol, supply, decimals, description, and upload your logo. Add social links for Twitter, Telegram, and Discord.
Choose authority settings (revoke mint, freeze, update). Review the preview and click "Create Token". Sign the transaction in your wallet.
Your token is live on Solana mainnet with full metadata. Add a Raydium liquidity pool to make it tradeable on Jupiter and other DEXs.
No hidden fees, no subscriptions, no tiers. Every action on CoinRoot costs exactly $0.08.
Create your SPL token with full metadata on Solana mainnet.
Token + metadata + all authority revocations + liquidity pool.
Create a Raydium liquidity pool for your existing token.
All prices are per action. Solana network fees (~$0.01) are separate. No subscriptions, no hidden costs.
See why 10,000+ creators choose CoinRoot over alternatives like CoinFactory, Smithii, and Orion Tools.
| Feature | CoinRoot | CoinFactory | Smithii | Orion Tools |
|---|---|---|---|---|
| Price per Action | $0.08 | $0.1 – $0.5 | $0.2 – $1.0 | $0.15 – $0.3 |
| Full Metadata Support | ✓ Complete | ◐ Partial | ✓ Yes | ◐ Limited |
| Deploy Speed | 60 seconds | 2-3 minutes | 1-2 minutes | 3-5 minutes |
| Logo Upload to IPFS | ✓ | ✓ | ✓ | ✗ |
| Social Links in Metadata | ✓ | ✗ | ◐ | ✗ |
| Revoke Mint Authority | ✓ $0.08 | ✓ $0.3 | ✓ $0.5 | ✓ $0.15 |
| Revoke Freeze Authority | ✓ $0.08 | ✓ $0.3 | ✓ $0.5 | ✗ |
| Raydium Liquidity Pool | ✓ $0.08 | ◐ Extra fee | ✓ $1.0 | ✗ |
| Devnet Testing | ✓ Free | ✗ | ✓ | ✗ |
| No-Code Interface | ✓ | ✓ | ✓ | ◐ |
| UI / UX Quality | ⭐⭐⭐⭐⭐ | ⭐⭐⭐ | ⭐⭐⭐⭐ | ⭐⭐ |
| Tokens Created | 10,000+ | 5,000+ | 8,000+ | 2,000+ |
Solana's architecture is fundamentally different from other blockchain networks, and understanding these differences helps explain why token creation on Solana is so fast and affordable. Solana uses a unique combination of consensus mechanisms — Proof of History (PoH) and Tower BFT — that enables the network to process up to 65,000 transactions per second with sub-second finality. This means that when you create a token on CoinRoot, the entire process from transaction submission to on-chain confirmation happens in less than one second.
The Solana runtime processes transactions in parallel using a technique called Sealevel. Unlike Ethereum, where transactions are processed sequentially, Solana can execute thousands of non-conflicting transactions simultaneously. Token creation, metadata updates, and authority revocations are all processed as individual instructions within a single transaction — and CoinRoot bundles all your selected actions into one atomic transaction for maximum efficiency.
Transaction costs on Solana are determined by a combination of base fees and priority fees. The base fee for a standard transaction is 0.000005 SOL (5 lamports per signature). Priority fees are optional and used during periods of high network demand. For token creation, the total network cost is typically under $0.01, making Solana orders of magnitude cheaper than Ethereum for token operations.
The SPL Token Program is a Solana system program that implements the entire token standard. It is deployed at a fixed program address and is maintained by Solana Labs. Every SPL token on the network — from USDC to the smallest meme coin — is managed by this same program. This shared program model has several advantages over Ethereum's individual smart contract approach.
Security is the primary benefit: because all tokens share the same program code, there is no risk of individual smart contract vulnerabilities. The SPL Token Program has been extensively audited and battle-tested with billions of dollars in value flowing through it daily. When you create a token on CoinRoot, you benefit from this same audited, proven codebase.
Efficiency is another advantage: because the program is already deployed and initialized, creating a new token only requires creating new accounts (Mint Account and Metadata Account) — not deploying new code. This is why token creation on Solana takes seconds instead of minutes.
Solana uses an account-based model where all data is stored in accounts. Each account must maintain a minimum balance of SOL to remain "rent-exempt" — otherwise, the account would be garbage-collected after a certain period. For token creation, the relevant accounts and their approximate rent-exempt costs are: Mint Account (approximately 0.0014 SOL), Metadata Account via Metaplex (approximately 0.0056 SOL), and Associated Token Account for the creator (approximately 0.002 SOL). These costs are covered by the SOL in your wallet when you sign the creation transaction through CoinRoot. The total rent deposit for a new token with metadata is approximately 0.01 SOL ($1-2 at typical SOL prices), and this SOL is not lost — it remains deposited in the accounts and can be recovered if the accounts are ever closed.
Token metadata plays a crucial role not only in on-chain discoverability but also in traditional search engine optimization. When potential buyers search for your token on Google, Bing, or other search engines, the metadata you set becomes the foundation of how your token appears in search results. Block explorers like Solscan and SolanaFM are heavily indexed by search engines, and the token information displayed on these pages comes directly from your Metaplex metadata.
Choosing a unique, descriptive token name improves your chances of appearing in relevant search results. A generic name like "Moon Token" will be buried among thousands of similar results, while a distinctive name like "SolanaRoot" or "CryptoVine" stands out and is easier to find. The description field in your off-chain metadata JSON also contributes to search engine visibility — Solscan and other explorers display this description on the token's page, and search engines index this content.
The social links in your token metadata serve as verified connection points between your on-chain token and your off-chain community presence. When explorers display your Twitter/X handle, Telegram group, and Discord server, they create clickable links that potential buyers can use to verify the project's legitimacy and engage with the community. DexScreener, in particular, prominently displays social links and uses them as part of their token verification process.
For maximum social media visibility, ensure your metadata includes your Twitter/X handle (the most important social signal in the Solana ecosystem), your Telegram group link (essential for community building), your Discord server invite (for deeper community engagement), and your project website URL (for comprehensive project information). CoinRoot makes it easy to add all these links during the token creation process.
Security should be a top priority for every token creator. The decisions you make during token creation — particularly around authority management — have permanent implications for your token's security profile and your holders' safety.
The most critical security action is revoking unnecessary authorities. As discussed earlier, mint authority, freeze authority, and update authority each represent a potential vector for abuse. A malicious or compromised creator with active mint authority could inflate the supply, destroying value. Active freeze authority could be used to lock holders' tokens. Active update authority could be used to change the token's identity. By revoking all three authorities through CoinRoot ($0.08 each), you eliminate these risks entirely.
Wallet security is equally important. The wallet you use to create the token becomes the initial holder of the entire supply and, if authorities are retained, has powerful control over the token. Use a hardware wallet (Ledger) or a well-secured software wallet (Phantom with strong password and backup). Never share your seed phrase or private key. CoinRoot never asks for or has access to your private keys — all transactions are signed locally in your wallet.
The Solana ecosystem, like all cryptocurrency networks, has its share of bad actors. Understanding common scam patterns helps legitimate creators differentiate themselves and build genuine trust. Honeypot tokens appear tradeable but contain code or liquidity configurations that prevent buyers from selling. The SPL Token Program's standardized code prevents code-level honeypots, but liquidity manipulation is still possible. Rug pulls involve a creator adding liquidity, waiting for buyers to purchase tokens at increasing prices, then removing all liquidity — leaving holders with worthless tokens. Creating a Raydium liquidity pool through CoinRoot and then locking or burning the LP tokens prevents this scenario. Metadata bait-and-switch involves creating a token with legitimate-looking metadata, attracting buyers, then changing the metadata to something else. Revoking update authority through CoinRoot prevents this permanently.
As a legitimate token creator, the best way to distinguish yourself from scammers is to revoke all authorities, lock or burn LP tokens, maintain active and transparent social media presence, engage honestly with your community, and use a professional platform like CoinRoot that implements all security best practices by default.
Decentralized exchanges on Solana use Automated Market Makers (AMMs) — specifically, the constant product formula (x × y = k) — to enable trading without traditional order books. When you create a liquidity pool for your token on Raydium through CoinRoot, you are establishing a trading pair where buyers and sellers interact with a pool of assets rather than with each other directly.
The initial liquidity you add determines the starting price of your token. For example, if you deposit 1,000,000 of your tokens and 10 SOL into a pool, the initial price is 0.00001 SOL per token. The more SOL you add relative to tokens, the higher the starting price. The total amount of liquidity also affects price stability — more liquidity means less price impact per trade (lower slippage).
Raydium is the most popular choice for new Solana token launches, and it is the DEX supported by CoinRoot for liquidity pool creation. Raydium's concentrated liquidity pools are integrated with the Jupiter DEX aggregator, meaning any token with a Raydium pool is automatically available for trading through Jupiter — the most-used swap interface on Solana. Orca is another major Solana DEX that supports liquidity pools. Orca uses a similar AMM model with some differences in fee structures and pool types. Some projects create pools on both Raydium and Orca for maximum liquidity depth. CoinRoot currently supports Raydium pool creation for $0.08.
When you create a liquidity pool, you receive LP (Liquidity Provider) tokens representing your share of the pool. These LP tokens can be held, transferred, or burned. Burning LP tokens is a strong trust signal — it means the initial liquidity is permanently locked in the pool and cannot be withdrawn (preventing rug pulls). Many successful meme coin launches include LP token burning as part of their launch strategy. CoinRoot can help you manage LP tokens after pool creation.
CoinRoot handles token creation, metadata, authority revocation, and Raydium liquidity pool creation from a single dashboard.
Create Token Now — $0.08Jupiter has established itself as the dominant DEX aggregator on Solana, routing the majority of swap transactions across the network. Understanding how Jupiter discovers and lists tokens is essential for any token creator. Jupiter automatically indexes tokens that have active liquidity pools on supported DEXs (Raydium, Orca, Lifinity, Meteora). When a new pool is created, Jupiter's indexer detects it and adds the token to its swap interface. The token's metadata — name, symbol, and logo — is pulled from the Metaplex metadata account to display in Jupiter's UI.
Jupiter also maintains a Verified Token List — a curated set of tokens that have passed verification criteria including active community, sufficient liquidity, and complete metadata. Being on the Verified Token List gives your token a verification badge in Jupiter's interface, significantly increasing trading confidence. Having complete, professional metadata set through CoinRoot is a prerequisite for verification consideration.
These three platforms are the primary tools traders use to discover and analyze new Solana tokens. DexScreener provides real-time price charts, trading volume, liquidity data, and token information. It automatically detects new liquidity pools and begins tracking them immediately. Token metadata from the Metaplex account is displayed on the token's DexScreener page, including name, symbol, logo, and social links. Birdeye offers similar functionality with additional portfolio tracking and wallet analysis features. GeckoTerminal (by CoinGecko) provides DEX analytics with integration into the broader CoinGecko ecosystem. All three platforms rely on Metaplex metadata for token display — making proper metadata setup through CoinRoot essential for professional appearance on these platforms.
The Solana wallet ecosystem is robust and growing. Phantom is the dominant wallet with millions of active users, offering a clean interface for managing SOL, SPL tokens, and NFTs. Solflare provides advanced features including staking, DeFi integration, and detailed token management. Backpack offers a unique programmable wallet experience with extension support. All three wallets read token metadata from the Metaplex metadata account to display token names, symbols, and logos. When you create a token with proper metadata through CoinRoot, it appears correctly in all these wallets immediately after creation.
A successful token launch requires more than just technical execution. The marketing and community building that happens before and during launch can make the difference between a token that gains traction and one that fades into obscurity. Before creating your token on CoinRoot, establish your social media presence by creating dedicated Twitter/X and Telegram accounts for your project. Build early awareness and community before the token goes live. Prepare your visual branding including logo, banner images, and color scheme. Write a clear project description that explains the token's purpose and value proposition.
On launch day, use CoinRoot to create your token with all metadata fields properly set. Include your established social media links in the metadata so they appear on explorers and tracking platforms immediately. Revoke all authorities to establish trust from minute one. Create your Raydium liquidity pool to enable trading. Share the token address and DexScreener/Birdeye links with your community. The speed of CoinRoot's 60-second deployment means you can go from zero to a live, tradeable token in under a minute — minimizing the window between announcement and availability.
After launch, consistent community engagement and transparency drive growth. Monitor your token's performance on DexScreener and Birdeye. Respond to community questions in Telegram and Discord. Provide regular updates on project developments. Consider partnerships, listings on additional DEXs, and ecosystem integrations. The professional metadata you set through CoinRoot serves as the foundation — it ensures your token looks legitimate and trustworthy on every platform where it appears.
If you create a Solana SPL token without metadata, it will exist on-chain as a raw mint address with no human-readable information. Wallets will display the full mint address instead of a name, there will be no symbol or logo, block explorers will show it as an "Unknown Token", DEXs will display a generic token icon, and potential buyers will have no way to identify or trust the token. In short, a token without metadata is effectively invisible and untradeable. CoinRoot ensures that every token created includes complete metadata from the start.
If you created a token without metadata (using CLI or another tool), you can still add metadata by creating a Metaplex metadata account for the existing mint. This requires the mint authority or a specifically authorized account. CoinRoot supports adding metadata to existing tokens — simply provide the mint address and fill in the metadata fields. The cost is $0.08 for the metadata action.
The on-chain metadata fields have specific size limits enforced by the Metaplex program: name is up to 32 characters, symbol is up to 10 characters, and URI is up to 200 characters. The off-chain JSON file (pointed to by the URI) has no strict size limit, but best practice is to keep it under 1KB for fast loading. The logo image should be under 100KB. CoinRoot's form validates all these limits in real-time to prevent errors.
On-chain metadata is available immediately after the transaction is confirmed (under 1 second on Solana). Off-chain metadata hosted on IPFS may take a few minutes to propagate across IPFS gateway nodes. In practice, most wallets and explorers can resolve the metadata within 1-5 minutes of creation. Jupiter and DexScreener may take slightly longer (5-30 minutes) to index new tokens and display their metadata. CoinRoot uses premium IPFS pinning services to minimize propagation delays.
On-chain metadata (the Metaplex metadata account) can be closed by the update authority, which would remove the metadata from the blockchain and return the rent-exempt SOL deposit. However, this is almost never desirable — removing metadata makes the token unidentifiable. The off-chain JSON file on IPFS is content-addressed and cannot be deleted from the network, though it may become unavailable if all pinning services stop hosting it. CoinRoot's IPFS pinning ensures long-term availability of your metadata files.
CoinRoot supports the Metaplex Token Metadata Standard (the dominant standard for Solana tokens) and is actively adding support for Token-2022 extensions (the newer standard with native metadata fields). For the vast majority of token launches — meme coins, utility tokens, governance tokens, and community tokens — the Metaplex standard is the recommended choice, as it has the widest support across wallets, DEXs, and explorers.
See what token creators say about their experience with CoinRoot.
CoinRoot is incredible. I launched my meme coin in under a minute — complete with logo, metadata, revoked authorities, and a Raydium pool. The $0.08 pricing is unbeatable. I tried CoinFactory before and it was three times more expensive with fewer features.
The metadata setup on CoinRoot is flawless. I added my token name, symbol, description, logo, and all social links — everything showed up perfectly on Solscan and DexScreener within minutes. No other tool makes this so easy.
I compared CoinRoot, Smithii, and Orion Tools before choosing. CoinRoot won hands-down — cheapest pricing, fastest deployment, and the cleanest interface. The metadata preview feature saved me from a typo in my symbol that would have been permanent.
As a non-technical founder, CoinRoot was exactly what I needed. I created a governance token for our DAO with full metadata and all authorities revoked. The whole process took about 90 seconds and cost less than a dollar. Highly recommended.
We launched our community token using CoinRoot and the experience was seamless. The IPFS upload for our logo worked perfectly, all social links appeared on Birdeye immediately, and the Raydium pool creation was one-click. Best Solana token creator out there.
Everything you need to know about Solana token metadata and creating tokens with CoinRoot.
The Solana ecosystem currently supports two token programs: the original SPL Token Program and the newer Token-2022 (also called Token Extensions). Understanding the differences between these two programs is essential for making the right choice for your project.
The original SPL Token Program is the established standard that powers the vast majority of Solana tokens, including USDC, wrapped SOL, and most meme coins. It offers proven stability, universal wallet support, full DEX compatibility, and the widest ecosystem integration. CoinRoot uses the SPL Token Program by default because it has the broadest support across the Solana ecosystem.
Token-2022 introduces several new features as "extensions" that can be enabled during token creation. Transfer fees allow the token creator to automatically collect a percentage of every transfer. Confidential transfers enable privacy-preserving transactions using zero-knowledge proofs. Interest-bearing tokens can accrue interest automatically. Native metadata fields allow storing token information directly in the mint account without the Metaplex program. Permanent delegate allows a designated account to transfer or burn tokens from any holder.
While Token-2022 offers exciting new capabilities, ecosystem support is still catching up. Not all wallets, DEXs, and tools fully support Token-2022 extensions yet. For most token launches in 2024-2025, the original SPL Token Program with Metaplex metadata remains the recommended choice. CoinRoot supports both standards and can guide you toward the best option for your specific use case.
The Metaplex Token Metadata standard has evolved through several versions, each adding new capabilities. The current version (V1.3) supports fungible tokens, semi-fungible tokens, NFTs, and programmable NFTs. For fungible token metadata (the focus of this guide), the standard provides the name, symbol, URI, update authority, and mutability fields discussed throughout this page. CoinRoot implements the latest version of the Metaplex standard to ensure maximum compatibility.
The total supply of your token is one of the most important decisions you will make, and it is set as part of your token's creation on CoinRoot. Supply affects price perception, utility design, and community psychology. Understanding common supply strategies helps you make the optimal choice for your project.
High supply tokens (1 billion to 1 trillion units) are common for meme coins and community tokens. The psychological appeal is that individual tokens have a very low price (fractions of a cent), making buyers feel they own "a lot" of tokens. The large supply also allows for wide distribution across thousands of holders. Meme coins like BONK launched with supplies in the trillions.
Medium supply tokens (1 million to 100 million units) are typical for utility and governance tokens. These supplies result in per-token prices that are more intuitive for users — usually in the range of cents to dollars. Governance tokens often use this range because it aligns well with voting mechanisms.
Low supply tokens (1,000 to 100,000 units) are less common for fungible tokens but are used when the goal is to create a perception of scarcity and high per-unit value. Some premium community tokens and exclusive access tokens use low supplies.
The decimal value determines the smallest divisible unit of your token. On Solana, the standard is 9 decimals (matching SOL's native precision). This means a token with 1,000,000,000 supply and 9 decimals has a total of 10^18 base units (similar to how SOL has lamports). For most use cases, 9 decimals is the recommended choice. However, some specific applications may benefit from different decimal values: 0 decimals for tokens that should only exist in whole units (like tickets or votes), 6 decimals for stablecoin-like tokens, and 9 decimals for general-purpose tokens. CoinRoot lets you set decimal precision during creation.
PDAs are a fundamental concept in Solana that enable deterministic, program-owned accounts. The Metaplex metadata account for each token is a PDA, and understanding how PDAs work gives you deeper insight into how your token's metadata is stored and accessed.
A PDA is derived from a set of "seeds" — predetermined values that are combined with the program ID to produce a unique address. For Metaplex metadata, the seeds are the string "metadata", the Metaplex program ID, and the token's mint address. Because the derivation is deterministic, anyone who knows the mint address can calculate the PDA and look up the metadata — no registry or lookup table is needed.
PDAs have a special property: they are guaranteed to not be on the Ed25519 elliptic curve, which means they cannot have a private key. This makes them "program-owned" — only the program itself can sign transactions for these accounts. For metadata, this means only the Metaplex program can create or update the metadata account, ensuring the data follows the program's rules and validation logic.
One of Solana's most powerful features for token creation is the ability to compose multiple instructions into a single, atomic transaction. When you create a token with CoinRoot, the platform bundles all your selected actions — mint creation, metadata creation, supply minting, authority revocations — into one transaction. This atomicity is critical because either all actions succeed or none of them do. You never end up with a partially-created token.
A typical CoinRoot transaction might include five instructions: CreateMint (creates the mint account), CreateMetadataAccountV3 (creates the Metaplex metadata), MintTo (mints the initial supply to your wallet), SetAuthority (revokes mint authority), and SetAuthority (revokes freeze authority). All five execute in a single transaction, confirmed in under one second.
When you interact with CoinRoot, the platform communicates with Solana through RPC (Remote Procedure Call) nodes. These nodes process your transactions and provide blockchain data. CoinRoot uses premium RPC endpoints with high reliability and low latency to ensure your token creation transactions are processed quickly and reliably. The choice of RPC provider can affect transaction speed and success rate — CoinRoot abstracts this complexity so you never need to worry about infrastructure.
The Solana ecosystem continues to evolve rapidly, with new standards and tools emerging regularly. Several trends are shaping the future of token metadata on Solana. The Token-2022 program's native metadata extension is gaining adoption, offering a simpler alternative to Metaplex for basic metadata needs. Compressed tokens and state compression technologies are reducing the cost of storing token data on-chain. Cross-chain metadata bridges are being developed to enable token information to flow between Solana and other blockchains. Enhanced verification systems are being built by platforms like Jupiter and DexScreener to help traders identify legitimate tokens.
CoinRoot stays at the forefront of these developments, continuously updating its platform to support new standards and features as they gain ecosystem adoption. Whether you are launching your first meme coin or your hundredth utility token, CoinRoot provides the tools and infrastructure to create professionally-presented Solana tokens with industry-standard metadata.
As the Solana ecosystem matures and institutional adoption increases, the quality bar for token metadata continues to rise. Tokens with incomplete or unprofessional metadata are increasingly filtered out by wallets, DEXs, and tracking platforms. Verification programs by Jupiter, DexScreener, and CoinGecko place heavy emphasis on metadata completeness and accuracy. The message is clear: professional metadata is no longer optional — it is the minimum requirement for any serious token launch.
CoinRoot was built with this reality in mind. Every token created through CoinRoot is equipped with complete, properly-formatted, standards-compliant metadata that meets the requirements of every major platform in the Solana ecosystem. At $0.08 per action, there is no reason to compromise on metadata quality.
SPL Token — A token on the Solana blockchain managed by the SPL Token Program. SPL stands for Solana Program Library. All fungible tokens and most NFTs on Solana are SPL tokens.
Mint Account — The on-chain account that defines a token. It stores the total supply, decimal precision, mint authority, and freeze authority. Each unique token has exactly one Mint Account.
Metaplex Token Metadata — The standard protocol on Solana for attaching human-readable information (name, symbol, logo, description) to SPL tokens. Managed by the Metaplex Foundation.
PDA (Program Derived Address) — A deterministic address derived from seeds and a program ID. The Metaplex metadata account for each token is a PDA derived from the mint address.
URI (Uniform Resource Identifier) — The link stored in the on-chain metadata account that points to the off-chain JSON file containing the logo, description, and extended attributes.
IPFS (InterPlanetary File System) — A decentralized storage network used to host token metadata JSON files and logo images. IPFS uses content-addressing for integrity verification.
Arweave — A permanent, decentralized storage network. An alternative to IPFS for hosting token metadata with guaranteed permanent availability.
Mint Authority — The Solana account that can create new tokens (increase supply). Revoking mint authority permanently fixes the total supply.
Freeze Authority — The Solana account that can freeze individual token accounts. Revoking freeze authority prevents anyone from locking holders' tokens.
Update Authority — The Solana account that can modify the token's Metaplex metadata. Revoking update authority makes metadata permanent and immutable.
AMM (Automated Market Maker) — The algorithm used by DEXs like Raydium to enable trustless token trading through liquidity pools rather than order books.
LP Tokens (Liquidity Provider Tokens) — Tokens received when you provide liquidity to a DEX pool. They represent your share of the pool and can be redeemed for the underlying assets.
Raydium — The largest DEX on Solana, integrated with Jupiter for optimal trade routing. CoinRoot supports Raydium pool creation for $0.08.
Jupiter — The dominant DEX aggregator on Solana that routes trades across multiple DEXs for the best prices. Tokens with Raydium pools are automatically discoverable on Jupiter.
Solscan — The most popular Solana block explorer, used by traders and investors to verify token metadata, authority status, holder distribution, and transaction history.
DexScreener — A popular DEX analytics platform that tracks token prices, charts, and trading volume across multiple chains including Solana.
Birdeye — A Solana-focused token analytics platform offering real-time price data, portfolio tracking, and token discovery features.
Token-2022 (Token Extensions) — Solana's newer token program that supports advanced features like transfer fees, confidential transfers, and native metadata.
Associated Token Account (ATA) — A deterministic token account created for each wallet-token pair. ATAs simplify token management by providing a standard address for receiving tokens.
CoinRoot — The fastest, most affordable no-code Solana token creator. Supports full metadata, authority revocation, and Raydium liquidity pool creation at $0.08 per action. Visit coinroot.app to get started.
Comprehensive content, deep expertise, and real value for every Solana token creator.
Join 10,000+ creators who launched on Solana with CoinRoot — the fastest, cheapest, and most trusted no-code SPL token creator. Full metadata support, authority revocation, and Raydium liquidity — all at $0.08 per action.