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

fhe-gas-profiler

v0.1.2

Published

HCU-aware static cost analyzer for fhEVM (Zama) confidential contracts: signature-resolution cost model + three-axis confidence + whole-build call graph. The engine behind hardhat-fhe-profiler. No hardhat dependency.

Readme

fhe-gas-profiler

The static analysis engine behind hardhat-fhe-profiler — HCU-aware cost analysis for fhEVM (Zama) confidential contracts, with no hardhat dependency.

Looking for the CLI / CI gate? Install hardhat-fhe-profiler instead. This package is for tools that want to embed the analyzer directly (indexers, custom reporters, dashboards).

What it does

Given a solc build-info, it prices every FHE.* operation in HCU (Homomorphic Complexity Units) and returns a per-function cost report with a three-axis confidence grade.

The cost model does not infer semantics from syntax — it recovers them from the compiler's binding decisions:

MemberAccess.referencedDeclaration → FunctionDefinition → canonical signature → cost rule

Pricing is a constant lookup against @fhevm/mock-utils's getHCU table, so the analyzer is built on Zama's own HCU primitives rather than reimplementing them.

Use

npm i fhe-gas-profiler
import { analyzeBuildInfo, renderTable } from "fhe-gas-profiler";

const report = analyzeBuildInfo(buildInfo, {
  sourceFile: "contracts/MyContract.sol",
  contractName: "MyContract",
  projectRoot: ".",
});

console.log(renderTable(report));
for (const fn of report.functions) {
  console.log(fn.fn, fn.txHcu, fn.confidence, fn.confidenceReason);
}

Confidence (three orthogonal axes)

A function is HIGH only when all three are high; the report takes the minimum.

  • Semantic — every op is a resolved signature with a known, priced rule.
  • Control-flow — straight-line, or bounded? A loop (lower bound) or branch (upper bound) → MEDIUM.
  • Graph-completeness — are all in-tx call edges accounted for? An edge whose callee has no analyzable body (interface / external / abstract) → LOW + UNRESOLVED_CALL_EDGE.

An under-count is never silent and never HIGH. Every report carries a version fingerprint (@fhevm/solidity, @fhevm/mock-utils, solc).


Part of the fhe-gas-profiler monorepo.

MIT © Laolex