All posts
Tokens2026-05-1511 min read

The Complete SPL Token Toolkit: 8 Tools Every Solana Creator Needs

Launching a token is step one. The other ninety-nine steps need tools. Here are the eight that matter — multi-send, burn, metadata, gating, vesting, and more.

Launching Is the Easy Part

Anyone can deploy a token in 60 seconds. The work is everything that comes after: distributing supply to holders, burning to signal commitment, editing metadata when you change your project name, gating private content, locking team allocations on vesting schedules.

For every step, there's a tool. In 2026, eight tools cover roughly ninety percent of what a Solana creator needs post-launch. This guide is what they are and when you reach for each one.

1. Multi-Send (Airdrop Tool)

What it does: Sends an SPL token to up to 200 wallets in a single coordinated batch.

When you need it: Airdrops to community members. Distributing rewards to stakers. Sending tokens to whitelisted addresses pre-launch.

The mechanics: A standard SPL transfer involves one wallet → one wallet. The multi-send tool batches transfers into Solana transactions (about 20 transfers per transaction, due to tx size limits). For 200 wallets, this is about 10 transactions submitted sequentially.

Cost: 0.1 SOL platform fee + Solana network fees (~$0.005 per transaction).

Common pitfall: Some recipients don't have an Associated Token Account (ATA) for your token yet. If their ATA doesn't exist, the transfer to them silently fails. Solution: pre-create their ATAs as part of the airdrop, or document that recipients must "wake up" their ATA by interacting with the token first.

Open Multi-Send →

2. Burn Tool

What it does: Permanently destroys tokens by sending them to a burn address.

When you need it: Removing supply from circulation to increase scarcity. Burning your own dev allocation to signal commitment. Treasury burns funded by buyback programs.

The mechanics: The Solana SPL standard has a native Burn instruction. The tool calls it on the specified amount from your wallet. The burned tokens are removed from supply — total supply decreases by exactly the burn amount.

Cost: 0.02 SOL platform fee.

Common pitfall: Burning supply increases per-token value but is not enough on its own to pump price. The market needs to perceive the burn as a permanent supply shock, not a one-off marketing event. Communicate burns clearly — explain what was burned, what percent of total supply, and what the burn pattern will be going forward.

Open Burn Tool →

3. Metadata Editor

What it does: Updates the on-chain name, symbol, image, description, and social links of a token.

When you need it: Rebranding. Switching from a temporary logo to a final one. Adding social links after deployment. Correcting typos.

The mechanics: Solana tokens have metadata stored in Metaplex's metadata program. As long as the metadata account is still marked as mutable (and the update authority hasn't been revoked), you can edit these fields. The edit is signed by the update authority and propagates to Phantom, Solscan, DEXs, and Birdeye within minutes.

Cost: 0.05 SOL platform fee.

Common pitfall: If you revoked the update authority during deployment, the metadata is permanently locked. Don't revoke it until you're certain you won't need to edit. Some serious projects revoke immediately after deployment to signal permanence; others wait 30-60 days.

Open Metadata Editor →

4. Authority Revoker

What it does: Permanently disables mint authority, freeze authority, or both on your token.

When you need it: Eliminating rug-pull risk for holders. Building trust before promotion. Meeting the standard expected by most retail buyers.

The mechanics: Calls the SPL SetAuthority instruction with the new authority set to None. Permanent and irreversible. Tools like RugCheck and Solscan immediately reflect the new status.

Cost: 0.05 SOL platform fee.

Critical context: If you ever plan to mint more supply (staking rewards, future emissions), do not revoke mint authority. Move it to a multisig instead.

Open Authority Revoker →

5. Token Gating

What it does: Creates a verification link that gates Discord servers, paywalled content, or any other resource by token balance.

When you need it: Holder-only Discord channels. Premium content for tokenholders. Allowlists for future drops based on token holding.

The mechanics: Generates a verification URL that, when visited by a holder, checks their wallet's balance of your token. If they hold the required amount, they pass. If not, they fail. No tokens transfer during verification — it's a non-custodial balance check.

Cost: Free. Verification is server-less on-chain reads.

Common pitfall: Token gating requires the user to connect their wallet to your verification page. Phantom and Backpack make this trivial. But holders are sometimes paranoid about connecting wallets — clearly state that no transactions occur during verification, only a read.

Open Token Gating →

6. Vesting Planner

What it does: Plans a token vesting schedule for team allocations or investor rounds, then hands off to Streamflow for execution.

When you need it: Locking team tokens on a 4-year vest with 1-year cliff. Investor unlock schedules. Treasury bonding curves.

The mechanics: Solana doesn't have a single canonical vesting program. Streamflow has emerged as the most-used. ManagerNest's vesting tool helps you plan the schedule and exports it as a Streamflow-compatible CSV. You then upload the CSV to Streamflow for actual on-chain execution.

Cost: Free for planning. Streamflow charges its own fee for execution.

Best practices for vesting schedules:

  • Team (founders/employees): 4 years, 1 year cliff, monthly unlock thereafter
  • Investors (seed): 2 years, 6 month cliff, monthly unlock
  • Investors (private): 18 months, 3 month cliff
  • KOLs / Marketing: 6 months linear
  • Treasury: 3-5 years linear

Open Vesting Planner →

7. Validator

What it does: Audits a token's metadata against best practices and flags issues.

When you need it: Before promoting your token. After major changes. Whenever you want a second opinion on data quality.

The mechanics: Pulls your token's on-chain metadata (name, symbol, image URI, social links) and validates each field against standards: name length, symbol format, image accessibility, image dimensions, image file size, social URL formats, description quality.

Cost: Free. Pure read operation.

Output example: "Name: 12/32 chars. Symbol: 4/10 chars. Image: 200KB JPEG, 1024x1024 — OK. Twitter: valid URL. Telegram: missing — recommended for credibility."

Open Validator →

8. Token Dashboard

What it does: Shows every token you've created from your wallet — their supply, market data, and direct links to all tools.

When you need it: Managing multiple projects. Quick status checks. Finding the mint address of a token you created weeks ago.

The mechanics: Queries ManagerNest's database for tokens deployed by your wallet via our token creator. Displays them in a list with quick action links.

Open Token Dashboard →

The Typical Lifecycle

A real token's first 30 days touches most of these tools. Here is a typical sequence:

Day 0 (launch):

  • Use Token Creator to deploy with revoke flags set
  • Use Validator to verify the metadata looks correct

Day 1-3:

  • Use Multi-Send to airdrop allocations to early supporters
  • Use Token Gating to set up the holder-only Discord channel

Day 7:

  • Use Burn Tool to burn team's promotional allocation (if applicable)
  • Use Metadata Editor to add the Twitter and Telegram links

Day 14:

  • Use Vesting Planner to set up team vesting via Streamflow

Day 30:

  • Final pass on Metadata if anything needs adjusting
  • Revoke update authority for permanence

After this point, the token is mature and most operations are organic (trading, holders, community).

Frequently Asked Questions

Are all these tools non-custodial?

Yes. Every action is signed locally by your wallet. ManagerNest never holds keys or tokens.

Do they work for tokens not created on ManagerNest?

Yes. Most tools work with any SPL token, regardless of origin. The exceptions are tools that require server-side actions (Metadata Editor uses our backend signer; the rest are pure client-side).

Can I use these tools on devnet?

Yes. Set your wallet to devnet and the tools follow.

Are there volume discounts on bulk operations?

Not currently. We may add them in the future for repeat operations like recurring airdrops.

Ready to try it yourself?

Launch your first Solana token or NFT in under 60 seconds on ManagerNest.

Create a token Mint an NFT

Previous

Why You Should Revoke Mint and Freeze Authority on Your Solana Token

Next

Memecoin Anatomy: 12 Patterns Behind Solana's 1000x Launches