Light Protocol Ecosystem Infra & Data Multi-file

compressed-token

by Light Protocol · Lightprotocol/skills · Agent view ↗

For compressed token operations on Solana ~400x cheaper than SPL: create mints with interface PDAs, mint, transfer, approve, revoke, compress, decompress, merge, and Token-2022 with compression. Compressed token accounts are always rent-free. @lightprotocol/compressed-token (TypeScript) with createRpc() from @lightprotocol/stateless.js.

Ecosystem skill — independently developed and maintained by Light Protocol, not the Solana Foundation. No security review is performed; evaluate before use.

One command for Claude Code, Cursor, Codex, Windsurf and other agents — installs from the upstream repo (current HEAD; it ships 5 skills — pick compressed-token when prompted).

$npx skills add Lightprotocol/skills

Skill contents

Compressed token client

Build token applications with @lightprotocol/compressed-token (TypeScript). Compressed token accounts are always rent-free. The SPL mint and interface PDA still pay rent, but each holder’s compressed token account costs a fraction of an SPL account.

Creation costSPLCompressed
Token account~2,000,000 lamports~5,000 lamports

Compressed token accounts store balance, owner, mint, and delegate like SPL token accounts. They require no associated token account (ATA) and no rent-exempt balance, and convert to and from SPL tokens at any time with compress() and decompress(). Wallets like Phantom and Backpack display them alongside SPL tokens.

When to use compressed tokens

  • Token distribution and airdrops without paying up-front rent per recipient
  • Sending Payments, Payroll, and similar flow etc.
  • Storing token balances rent-free
  • Token-2022 mints with metadata and other supported extensions

How it works

Compressed tokens use a standard SPL (or Token-2022) mint plus an interface PDA. The interface PDA is an omnibus account that locks SPL tokens while they are compressed and releases them on decompression. Create it with the mint via createMint(), or add one to an existing mint with createTokenPool().

SPL mint --register--> interface PDA (omnibus PDA)
mintTo / compress --> compressed token accounts (rent-free, in state tree)
decompress --> back to SPL token account

Each mint supports a maximum of 4 interface PDAs. They get write-locked during compression and decompression, so add more with addTokenPools() to raise per-block write-lock capacity for high-throughput distribution.

Prerequisites

Examples run on localnet by default. For devnet or mainnet, set the API_KEY env var (Helius or Triton RPC key) and provide a Solana keypair at ~/.config/solana/id.json. In production, load both from a secrets manager.

import { createRpc } from '@lightprotocol/stateless.js';

// Localnet (defaults to http://127.0.0.1:8899):
const rpc = createRpc();

// Devnet or mainnet:
const rpc = createRpc(`https://devnet.helius-rpc.com?api-key=${process.env.API_KEY!}`);

Domain references

TaskReference
Create a mint with interface PDA, add morereferences/create-mint.md
Mint compressed tokensreferences/mint-to.md
Transfer compressed tokensreferences/transfer.md
Approve and revoke delegatesreferences/approve-revoke.md
Compress and decompress SPL tokensreferences/compress-decompress.md
Merge fragmented compressed accountsreferences/merge-token-accounts.md
Token-2022 with compressionreferences/token-2022.md
Token distribution and airdropsreferences/distribution.md
Query balances, accounts, and historyreferences/queries.md

Operations

All functions are in @lightprotocol/compressed-token unless noted. RPC helpers come from @lightprotocol/stateless.js.

  • Mints and pools: createMint (SPL mint + pool), createTokenPool (pool for existing mint), addTokenPools (max 4 per mint).
  • Mint and move: mintTo, approveAndMintTo, transfer, transferDelegated.
  • Delegates: approve, revoke.
  • Compress and decompress: compress, decompress, decompressDelegated, compressSplTokenAccount.
  • Consolidate: mergeTokenAccounts (up to 8 accounts).
  • Instruction builders: CompressedTokenProgram.* methods (compress, decompress, transfer, createTokenPool, deriveTokenPoolPda) and the standalone createMintInstruction export.
  • Selection and pools: getTokenPoolInfos, selectTokenPoolInfo, selectTokenPoolInfosForDecompression, selectMinCompressedTokenAccountsForTransfer.
  • RPC (Rpc): createRpc, getValidityProof, getCompressedTokenAccountsByOwner, getCompressedTokenAccountsByDelegate, getCompressedTokenBalancesByOwnerV2, getCompressionSignaturesForTokenOwner, selectStateTreeInfo.
  • Build and send: buildAndSignTx, sendAndConfirmTx, dedupeSigner.

Reference repos

If cloned locally, scope Read, Glob, Grep to these repositories and the current project directory only.

Workflow

  1. Clarify intent. Recommend plan mode if not active. Use AskUserQuestion to resolve blind spots before execution.
  2. Identify references. Match the task to the domain references and reference repos above.
  3. Write a plan (YAML task format). Never guess; identify blockers (permissions, dependencies, unknowns) up front.
  4. Execute. Use Task subagents for parallel research; track progress with TodoWrite.
  5. When stuck, spawn a read-only subagent with Read, Glob, Grep, and DeepWiki MCP access, loading skills/ask-mcp. Scope reads to skill references, example repos, and docs.

Build and test

Install dependencies and run a script against localnet, devnet, or mainnet by setting the RPC URL in createRpc().

npm install @lightprotocol/stateless.js @lightprotocol/compressed-token @solana/web3.js @solana/spl-token
npx tsx your-script.ts

SDK references

  • @lightprotocol/compressed-tokenAPI docs
  • @lightprotocol/stateless.jsAPI docs

DeepWiki fallback

If no matching pattern in the reference repos, ask mcp__deepwiki__ask_question against Lightprotocol/light-protocol, for example “How to mint compressed tokens with @lightprotocol/compressed-token?”.

Security

This skill provides code patterns and documentation references only.

  • Declared dependencies. Devnet and mainnet examples require API_KEY (Helius or Triton RPC key) and read ~/.config/solana/id.json for the payer keypair. Neither is needed on localnet. In production, load both from a secrets manager.
  • User-provided configuration. RPC endpoints, wallet keypairs, and tokens are configured in the user’s application code. The skill demonstrates patterns; it does not store or transmit secrets.
  • Filesystem scope. Read, Glob, Grep must stay within the current project directory and the reference repos above.
  • Install source. npx skills add Lightprotocol/skills installs from the public GitHub repository (Lightprotocol/skills). Verify the source before running.
  • Audited protocol. Light Protocol smart contracts are independently audited. Reports are at github.com/Lightprotocol/light-protocol/tree/main/audits.