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

@ministryofmany/nullifier

v0.3.0

Published

Context-agnostic Poseidon nullifier derivation (poseidon2(toField(sub), contextId)) plus the server-side replay/uniqueness store contract.

Readme

@ministryofmany/nullifier

Poseidon/BN254 context nullifier — the circuit-usable, account-anchored nullifier primitive for the Ministry ecosystem (Discreetly RLN/membership, the Deforum user-sub-forum anchor). It derives a SNARK-friendly field element that is stable per (sub, contextId) and unlinkable across contexts without the sub.

import { deriveContextNullifier } from "@ministryofmany/nullifier";

// poseidon2(toField(sub), contextId % FIELD)
const nul = deriveContextNullifier(pairwiseSub, roomRlnIdentifier);

toField reduces an arbitrary string to a BN254 field element by big-endian base-256 accumulation mod FIELD (NOT a hash — it is the exact reduction Discreetly's toField performs, preserved byte-for-byte). Use deriveContextNullifierFromField when the first input is ALREADY a field element (e.g. a membership proof's nullifier) rather than an arbitrary string.

Two nullifier primitives — permanently distinct, never bridge

This ecosystem has two nullifiers. They are NOT interchangeable, there is no conversion between them, and mixing them is a correctness bug:

| | @ministryofmany/nullifier (this package) | Minister gating nullifier (MinisterGatingNullifier, mnv1:...) | |---|---|---| | Math | Poseidon / BN254 (poseidon2(toField(sub), contextId)) | RFC 9497 VOPRF (stage 1) + HMAC-SHA256 (stage 2) | | Anchor | the per-RP sub (account-anchored) | the credential (email, github id) | | Circuit-usable | YES — SNARK-provable (RLN, membership) | NO — gating-only, plaintext compare | | Catches | same-account-across-contexts linkage | same-credential-across-accounts Sybil | | Wire form | decimal BN254 field string | mnv1: + base64url |

Never bridge from mnv1:. The gating nullifier is a plaintext gating tag; it is not a field element and must never be fed into toField, poseidon2, or any circuit input. Doing so would produce a valid-LOOKING field element that silently conflates two unrelated anonymity namespaces. toField enforces this at runtime: it throws on any input matching ^mnv1:. A future circuit-usable credential nullifier must be a NEW Poseidon construction over an appropriate anchor, not a reduction of the gating tag.

The gating nullifier lives on @minister/client's VerifiedBadge.nullifier and is documented in src/types.ts (MinisterGatingNullifier). Gate on it for "one credential" (Sybil dedup, ban persistence); do not treat it as a unique-human oracle.