npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@unclaimedsol/spl-burn-close-sdk

v1.2.1

Published

SDK to burn and close SPL token accounts via the Unclaimed SOL program (with a built-in 5% fee).

Readme

Burn and Close Solana SPL Tokens SDK

A lightweight Solana SDK to burn SPL tokens and close token accounts with a fixed 5% protocol fee. This library only builds unsigned transactions – you handle signing and sending them, whether in the browser (Wallet Adapter) or server (Keypair).

✨ Features

  • 🔥 Burn all tokens in provided ATAs.
  • 🧹 Close token accounts, reclaiming rent to the user.
  • 💸 Automatic 5% protocol fee (hardcoded in program).
  • ⚡ Automatic batching (default 12 ATAs per transaction).
  • 🪙 Supports SPL Token and Token-2022.
  • 🔐 Supports frontend partial signing and backend full signing workflows.
  • 🚀 No hidden config: single function to integrate.

🧩 How It Works

  1. The SDK prepares TransactionInstructions for your on-chain burn+close program.
  2. Program burns tokens in each ATA, then closes it, sending rent back to the owner.
  3. A 5% fee is enforced on-chain and sent to the hardcoded recipient.
  4. The SDK never asks for private keys — you sign & send transactions yourself.

📦 Installation

npm i @unclaimedsol/spl-burn-close-sdk

We use @solana/web3.js in peerDependencies to avoid version conflicts, so make sure you already have it installed.

Requires Node 18+.


🔑 Usage

Signing with Keypair

import { Connection, Keypair, PublicKey } from "@solana/web3.js";
import {
  buildBurnAndCloseTransactions,
  PROGRAM_ID,
} from "@unclaimedsol/spl-burn-close-sdk";

const connection = new Connection("https://api.mainnet-beta.solana.com");
const keypair = Keypair.fromSecretKey(/* Uint8Array */);
const user = keypair.publicKey;

// You can get easily obtain pairs using getTokenAccountsByOwner method
const pairs = [{ mint: new PublicKey("MINT_1"), ata: new PublicKey("ATA_1") }];

const txs = await buildBurnAndCloseTransactions(
  connection,
  PROGRAM_ID,
  user,
  pairs
);

for (const tx of txs) {
  tx.partialSign(keypair);
  const sig = await connection.sendRawTransaction(tx.serialize());
  let latestBlockhash = await connection.getLatestBlockhash(
    connection.commitment
  );
  await connection.confirmTransaction({
    signature: sig,
    blockhash: latestBlockhash.blockhash,
    lastValidBlockHeight: latestBlockhash.lastValidBlockHeight,
  });
  console.log("✅ Sent:", sig);
}

Signing with Wallet Adapter

import { Connection, PublicKey } from "@solana/web3.js";
import {
  buildBurnAndCloseTransactions,
  PROGRAM_ID,
  TOKEN_2022_PROGRAM_ID,
} from "@unclaimedsol/spl-burn-close-sdk";

const connection = new Connection("https://api.mainnet-beta.solana.com");
const user = wallet.publicKey; // Wallet Adapter

// You can get easily obtain pairs using getTokenAccountsByOwner method
const pairs = [
  { mint: new PublicKey("MINT_1"), ata: new PublicKey("ATA_1") },
  { mint: new PublicKey("MINT_2"), ata: new PublicKey("ATA_2") },
];

const txs = await buildBurnAndCloseTransactions(
  connection,
  PROGRAM_ID,
  user,
  pairs
);

// For Token-2022 accounts, pass TOKEN_2022_PROGRAM_ID and consider using a smaller chunkSize:
// const txs = await buildBurnAndCloseTransactions(
//   connection,
//   PROGRAM_ID,
//   user,
//   pairs,
//   { chunkSize: 2 },
//   TOKEN_2022_PROGRAM_ID
// );

// Sign
const signed = wallet.signAllTransactions
  ? await wallet.signAllTransactions(txs)
  : await Promise.all(txs.map((t) => wallet.signTransaction!(t)));

// Send
for (const stx of signed) {
  const sig = await connection.sendRawTransaction(stx.serialize());
  let latestBlockhash = await connection.getLatestBlockhash(
    connection.commitment
  );
  await connection.confirmTransaction({
    signature: sig,
    blockhash: latestBlockhash.blockhash,
    lastValidBlockHeight: latestBlockhash.lastValidBlockHeight,
  });
  console.log("✅ Sent:", sig);
}

🌐 Cluster support

This SDK targets the Unclaimed SOL mainnet program (PROGRAM_ID) and fee recipient (FEE_RECIPIENT). Transactions will only succeed on a cluster where that program is deployed.


💻 Demo

There is a nice tutorial guide with a demo repository that shows the usage of the SDK to burn and close all token accounts for the wallet. You can find it here.


📜 Disclaimer

This SDK only builds transactions to burn tokens and close accounts. You are solely responsible for signing and sending them. We are not liable for any loss of funds.


📃 License

MIT © Unclaimed SOL