LogoLogo
  • Solscan Introduction
  • Solana Blockchain
  • Browsing the site
    • Home
    • Search Bar
    • Token Page
    • Blockchain Tab
    • Resources
      • Validators
      • Public API
    • SOLSCAN KNOWLEDGE BASE
      • General
        • What is Solscan?
        • Homepage
        • Analytic Dashboard
        • DeFi Dashboard
        • NFT Dashboard
          • Dashboard Overview
            • Collections
            • Marketplaces
              • Overview
              • Volume
              • Listing
              • Active Addresses
            • Activity
            • New NFT & All NFT
          • Collection Page
          • NFT Page
      • FAQs
      • Developer
      • Token & App
      • Tutorial
  • Transaction details
    • Labeling
    • Account
      • Asset Management / Token Holdings
    • Transaction Details
      • TX MAP
    • Program
    • Anchor Verified Programs
  • Integration
    • Solscan Integration Guideline
    • Update Token Details
    • Parse Instruction
    • Anchor Integration
    • Metaplex Integration
  • Solscan Tool
    • Download CSV Report
    • Interact With Program
  • Solscan Account
    • Create & Manage Your Account
    • Personal Label
    • Manage Watchlist
    • Notification Bot
  • API Access
    • Pro API Documentation
    • Pro API Endpoints
    • Solscan Pro API FAQ
    • How to generate your Solscan Pro API Key
    • Pro API Terms and Services
    • Pro API Error Type
  • Solscan Pro API Program Data Coverage
  • Solscan Pro API Postman Collection
Powered by GitBook
On this page

Was this helpful?

  1. Integration

Update Token Details

Solscan has switched to using Metaplex Metadata as the newest token standard across the network.

When you create a token, you want to make sure that the token shows up in user's wallets with a name, ticker, and image. Solana uses the Token Metadata Program from Metaplex to achieve this.

The metadata account address is derived from the mint account. The metadata field requires a JSON file to be populated with at least the following:

{
  "name": "Coin name",
  "symbol": "Symbol",
  "image": "Image link"
}

To attach the metadata to the mint account, you can use CreateMetadataV2.

Some background for users and developers:

The concept of tokens on Solana is not binary anymore as there are different types of tokens on Solana than simply “fungible” and “non-fungible” tokens.

The Metaplex’s token standard field can have the following values:

  • NonFungible: A non-fungible token with a Master Edition.

  • FungibleAsset: A token with metadata that can also have attributes, sometimes called Semi-Fungible.

  • Fungible: A token with simple metadata.

  • NonFungibleEdition: A non-fungible token with an Edition account (printed from a Master edition).

This section serves two goals: Assist developers with the process of creating new Token using Metaplex Token Standard: Also help them update “legacy tokens” metadata with the Metaplex standard.

The JSON schema for the tokens according to the Metaplex Fungible Token Metadata Standard includes the following:

  • More details from Metaplex docs

PreviousSolscan Integration GuidelineNextParse Instruction

Last updated 2 years ago

Was this helpful?