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

@577-industries/hashchain-audit

v1.0.0

Published

Tamper-evident audit trail with SHA-256 hash chaining, Ed25519 signatures, and Merkle tree anchoring

Readme

@577-industries/hashchain-audit

npm version License: Apache 2.0

A tamper-evident audit trail using three cryptographic layers: SHA-256 hash chaining, Ed25519 digital signatures, and Merkle tree anchoring. Zero runtime dependencies — uses Node.js built-in crypto.

Implements the core algorithm described in the "Hash-Chained Audit Ledger" patent (March 2026) by 577 Industries.

How It Works

  Entry N-1          Entry N            Verification
  ─────────         ─────────          ─────────────
  hash(N-1) ──────► prevHash           Recompute each
                    action    ──┐       hash from its
                    actor       ├─► SHA-256 ──► entryHash
                    timestamp   │               │
                    details   ──┘           Ed25519 ──► signature
                                                │
                              Merkle Root ◄─────┘ (periodic anchor)

Quick Start

npm install @577-industries/hashchain-audit
import { AuditLedger, generateKeyPair } from "@577-industries/hashchain-audit";

// Generate signing keys (or provide your own PEM)
const keys = generateKeyPair();
const ledger = new AuditLedger({ privateKey: keys.privateKey });

// Append entries — each is hash-chained to the previous
await ledger.append("user.login", "[email protected]");
await ledger.append("record.update", "[email protected]", {
  entityType: "invoice",
  entityId: "inv-123",
  details: { amount: 5000 },
});

// Verify chain integrity
const result = await ledger.verify();
console.log(result.valid);   // true
console.log(result.checked); // 2

// Create a Merkle anchor for range verification
const anchor = await ledger.createAnchor();
const anchorResult = await ledger.verifyAnchor(anchor);
console.log(anchorResult.valid); // true

API Reference

AuditLedger

| Method | Description | |--------|-------------| | new AuditLedger(config?) | Create a ledger with optional signing key and storage adapter | | append(action, actor, options?) | Append a hash-chained (and optionally signed) entry | | verify() | Verify the entire chain's integrity | | createAnchor() | Create a Merkle tree anchor over recent entries | | verifyAnchor(anchor) | Verify a Merkle anchor by recomputing the root | | getEntries(options?) | Retrieve entries with optional limit/offset |

Crypto Utilities

| Function | Description | |----------|-------------| | generateKeyPair() | Generate Ed25519 key pair (PEM-encoded) | | computeHash(...) | SHA-256 pipe-delimited hash | | signHash(hash, key) | Ed25519 signature | | verifySignature(hash, sig, key) | Verify Ed25519 signature |

Pluggable Storage

Implement StorageAdapter for custom persistence:

interface StorageAdapter {
  getLastEntry(): Promise<AuditEntry | null>;
  append(entry: AuditEntry): Promise<void>;
  getEntries(options?): Promise<AuditEntry[]>;
  getEntriesSince(entryId: string): Promise<AuditEntry[]>;
}

Built-in: InMemoryStorage (default).

Architecture

Three cryptographic layers:

  1. Hash Chain — Each entry's hash includes the previous entry's hash, creating a tamper-evident chain
  2. Digital Signatures — Ed25519 signatures on each hash prove authenticity
  3. Merkle Anchors — Periodic Merkle tree roots enable efficient range verification

Based on the "Hash-Chained Audit Ledger" patent by 577 Industries.


Extracted from FORGE OS by 577 Industries.