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/api

v0.3.0

Published

Backchain API — Server-side helpers: Multicall, Express middleware, auto-generated REST routes

Readme

@backchain/api

Server-side helpers for building REST APIs and batched reads on top of the Backchain SDK.

Install

npm install @backchain/api

Quick Start

import express from 'express';
import { backchainMiddleware, setupBackchainRoutes } from '@backchain/api';

const app = express();
app.use(backchainMiddleware({ provider, addresses }));
setupBackchainRoutes(app);
app.listen(3000);

API

Multicall

Batches multiple read calls into a single eth_call using Multicall3 at 0xcA11bde05977b3631167028862bE2a173976CA11.

  • new Multicall(provider: Provider): Multicall
  • add(target: string, calldata: string): this — queue a call.
  • execute(): Promise<MulticallResult[]> — submit all queued calls in one RPC request and return decoded results.
  • executeTyped<T>(calls: TypedCall<T>[]): Promise<T[]> — typed variant that decodes results according to provided ABI fragments.
const mc = new Multicall(provider);
mc.add(addresses.BKCToken, iface.encodeFunctionData('totalSupply'));
mc.add(addresses.StakingPool, iface.encodeFunctionData('totalStaked'));
const [supply, staked] = await mc.execute();

backchainMiddleware(options: MiddlewareOptions)

Express middleware that constructs a BackchainContext and attaches it to req.backchain on every request.

  • options.provider — ethers.js v6 provider instance.
  • options.addresses — contract address map (loaded from deployment-addresses.json).
  • options.signerKey? — optional private key for server-side signing.

generateRoutes(modules: ModuleMap): Router

Introspects the provided module map and auto-generates GET routes for every public read method. Routes follow the pattern /:module/:method.

const router = generateRoutes({ swap: new SwapModule(ctx), staking: new StakingModule(ctx) });
app.use('/api', router);
// GET /api/swap/getCurrentPrice
// GET /api/staking/getTotalStaked

setupBackchainRoutes(app: Express, options?: SetupOptions)

Convenience function that calls backchainMiddleware() and generateRoutes() together and mounts all routes under /api (configurable via options.prefix).

Notes

  • Multicall3 is available on all major EVM networks at the canonical address.
  • backchainMiddleware is stateless; a new BackchainContext is created per-request.
  • Generated routes are read-only (GET). Write operations must be implemented manually with a signer.

License

MIT