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-core

v0.0.1

Published

Reckon pre-flight engine: simulate a Monad transaction, detect reverts, flag approval/permission risk, and compute the tightest correct gas limit and true cost.

Readme

@codeswithroh/reckon-core

The pre-flight engine behind Reckon — a transaction seatbelt for Monad.

On Monad you pay for the gas limit you declare, not the gas you use, even when your transaction reverts. preflight() simulates a transaction before you send it, refuses to let you broadcast a doomed one, computes the tightest safe gas limit, and flags approval/permission- escalation risk (unlimited ERC-20 allowances, NFT operator grants, EIP-2612 permits) that a naive revert check would miss.

Install

npm install @codeswithroh/reckon-core viem

Usage

import { createPublicClient, http } from "viem";
import { monadTestnet, preflight } from "@codeswithroh/reckon-core";

const client = createPublicClient({ chain: monadTestnet, transport: http() });

const verdict = await preflight(client, {
  from: "0xYourAddress",
  to: "0xTargetContract",
  data: "0x...",
});

if (verdict.willRevert) {
  console.log("Would fail:", verdict.revertReason);
} else if (verdict.riskFlags.some((f) => f.severity === "critical")) {
  console.log("Critical risk:", verdict.riskSummary);
} else {
  console.log("Safe to send with gas limit", verdict.recommendedGasLimit);
}

What it does

  • preflight(client, tx, options?) — simulates via eth_estimateGas, decodes revert reasons, computes the tightest safe gas limit (static or adaptive), and flags approval risk. Never broadcasts.
  • safeSend(clients, tx, options?) — pre-flights, then broadcasts only if safe.
  • detectRiskFlags(tx) — pure, synchronous decoding of approve/increaseAllowance/ setApprovalForAll/permit calldata into severity-ranked risk flags.
  • fetchHistoricalGasUsage / computeAdaptiveBuffer / recommendAdaptiveGasLimit — an opt-in adaptive gas buffer learned from a contract's real historical execution variance, instead of a flat percentage.

Why this exists

Verified empirically, not assumed: a reverted transaction on Monad testnet paid its full declared gas limit, exact to the wei. See the verification writeup and the full project README.

License

MIT