← docs

How to Verify a Token

Visit the Verify page and paste any Solana mint address.

We derive the expected JCv1 launch PDA using the seeds [b"jcv1", mint_pubkey] and the JCv1 program ID. We then read that account directly from the Solana chain.

If the account exists, is owned by the JCv1 program, and decodes cleanly to a valid LaunchState, we confirm it as a valid JCv1 token and display the creator, vault, and tokens_sold.

If it does not exist, or is owned by a different program, we report that clearly.

This verification reads the chain directly — not from our database. It is authoritative.