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

legate-verify

v0.1.0

Published

Offline verifier for Legate cross-party proofs: verify a standing-covenant export or an Overlap diversification certificate with no server and no account. @noble crypto inlined, verifies fully offline. by ScopeBlind. scopeblind.com

Readme

legate-verify

Offline verifier for Legate cross-party proofs. Verify a standing-covenant export or an Overlap diversification certificate with no ScopeBlind server and no account. The cryptography (ristretto255 Pedersen commitments + bit-decomposition range proofs, Ed25519 signatures, all @noble) is inlined, so verification runs fully offline and the package is small enough to read.

npx legate-verify covenant-export.json
npx legate-verify diversification-certificate.json
cat artifact.json | npx legate-verify

Export either artifact from the browser: legate.scopeblind.com/covenant ("Download proof") or /overlap ("Download certificate"), then verify it here with our code removed.

Exit codes: 0 every proof verified, 1 something failed, 2 the input could not be read. A validly-proven breach reads as VALID (a signed alarm), which is not the same as an INVALID artifact: validity and health are separate questions, and the verifier says which.

What it checks

  • Covenant export — per epoch: the charter is co-signed by every roster member; the epoch is bound to that exact charter (cap, roster, cadence, and the breach-latch flag are all inside the digest); the roster is complete; every sealed value is signed by its party and its source tier attested against the exact commitment; every value is in range; and the resolution proves the aggregate under the cap (HEALTHY) or affirmatively over it (BREACHED, one bit). It then prints the covenant strip, honoring a sticky charter's latch.
  • Diversification certificate — every participant co-signed it, the clean bit is consistent with the counts, and it is bound to a match transcript digest (so it cannot be minted for a match that did not happen).

Honest scope

Confirms the math and the signatures. It does not, and cannot, establish that a charter's roster is complete (a counterparty never brought into the charter is outside the covenant; that is the paper's job) or that a self-reported input is true (the tier ladder names that gap). The certificate is an accountable attestation by the participants, not a trustless proof of an empty intersection. The verifier prints this scope.

Apache-2.0. Part of Legate by ScopeBlind. The core is generated from the open source at packages/scopeblind-pm/web/src/{covenant,covenant-v2,psi}.ts.