Cardtel logo

Cardtel

Card Launchpad

Overview

Cardtel is a launchpad on Solana for tokens bound to individual graded Pokemon cards. A launch is sent from the creator's own wallet and produces one Raydium market, keyed to one card, with one pairing asset.

The primitives

A launch has four parts: the coin, the pairing asset, the bound card, and the deployment state. The first three are set by the launcher. The fourth is controlled by the host.

  • Coin: symbol, name and fixed total supply.
  • Pairing asset: the quote side of the market, one of SOL or USDC.
  • Bound card: one entry from the top 50 index, identified by its market symbol.
  • Deployment: staged until the host opens deploys, then live.

Lifecycle

// 1. define the coin and bind the card
launch.create({
  symbol: "CHZ1E",
  supply: 1_000_000_000,
  pair: "SOL",
  card: "CHZ1E"
})

// 2. host opens deployment for the queue
launchpad.setDeploysEnabled(true)

// 3. anyone pairs liquidity into the live market
market.pair({ id: "CHZ1E/SOL", amount: 5000 })

Data sources

Card ranks and sale figures come from confirmed public auction results. Where a public catalogue scan of a card face is not available, the index shows the slab reference instead of a substitute image.