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

@backchain/fusion

v0.2.0

Published

Backchain Fusion — Fuse and split NFT Boosters

Readme

@backchain/fusion

Fusion module for the Backchain DeFi ecosystem on opBNB. Fuse lower-tier NFTs into higher-tier boosters, or split them back down.

Install

npm install @backchain/fusion

Quick Start

import { FusionModule } from '@backchain/fusion';

const fusion = new FusionModule(context); // context from @backchain/core
const preview = await fusion.previewFusion(tokenId1, tokenId2);
await fusion.fuse(tokenId1, tokenId2); // combines 2 Bronze into 1 Silver

API

Write Methods

fuse(tokenId1: number, tokenId2: number): Promise<TransactionResult> Combine two NFTs of the same tier into one NFT of the next higher tier. Both input tokens are burned; one new token of the higher tier is minted. Automatically requests NFT transfer approval if not already granted. Tiers: Bronze(0) + Bronze(0) → Silver(1), and so on up to Diamond(3).

split(tokenId: number): Promise<TransactionResult> Split one NFT into two NFTs of the next lower tier. The input token is burned; two new tokens of the lower tier are minted. Cannot split Bronze (tier 0).

splitTo(tokenId: number, targetTier: number): Promise<TransactionResult> Cascade-split an NFT down to a target tier in a single transaction. For example, splitting a Gold (tier 2) to Bronze (tier 0) produces four Bronze NFTs. Automatically approves transfers as needed.

Read Methods

previewFusion(tokenId1: number, tokenId2: number): Promise<FusionPreview> Returns a preview of a fuse operation: input tiers, expected output tier, and the fusion fee in BNB. Returns an error description if the tokens are not eligible to fuse (e.g., mismatched tiers or already at Diamond).

previewSplit(tokenId: number, targetTier: number): Promise<SplitPreview> Returns a preview of a split or cascade-split: input tier, target tier, number of output tokens, and the total fee in BNB.

getStats(): Promise<FusionStats> Returns global fusion statistics: total fusions performed, total splits, total fees collected, and current fee rates per tier operation.

License

MIT