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

@codeswithroh/reckon-sdk

v0.0.1

Published

Drop-in Reckon SDK for Monad: pre-flight and safe-send transactions, guard an EIP-1193 wallet provider, or route batches through the on-chain GuardedExecutor.

Readme

@codeswithroh/reckon-sdk

A drop-in SDK for Reckon — a transaction seatbelt for Monad. Pre-flight and safe-send transactions, guard an EIP-1193 wallet provider so doomed or risky transactions never reach the wallet, or route a batch through the on-chain GuardedExecutor.

Install

npm install @codeswithroh/reckon-sdk viem

Pre-flight and safe-send

import { createReckonClient } from "@codeswithroh/reckon-sdk";

const reckon = createReckonClient({ account: myAccount });

const verdict = await reckon.preflight(tx);
if (verdict.willRevert) throw new Error(verdict.revertReason);

const { hash } = await reckon.safeSend(tx); // pre-flights, then broadcasts only if safe

Guard a wallet provider

One line protects a whole dApp's users: every eth_sendTransaction is pre-flighted first, and a doomed or critically-risky call (an unlimited approval, an NFT operator grant) is blocked before the wallet even prompts — the user never signs it, never burns MON on a failure.

import { createGuardedProvider } from "@codeswithroh/reckon-sdk";

const provider = createGuardedProvider(window.ethereum);
// use `provider` anywhere you'd use window.ethereum

Route a batch through the on-chain guard

await reckon.guardedExecute([
  { target: "0x...", data: "0x...", gasCap: 100_000n },
]);

Why this exists

On Monad you pay for the gas limit you declare, not the gas you use, even when your transaction reverts, verified empirically to the wei (see the project README). Reckon pre-flights every transaction so you stop paying for failures and oversized limits, and flags approval/permission-escalation risk that a naive revert check would miss.

License

MIT