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

proofleger

v0.1.1

Published

A Web3 proof and identity ledger built on Stacks

Downloads

233

Readme

ProofLedger

Anchor documents to Bitcoin. Prove existence without revealing content.

ProofLedger lets you compute a SHA-256 hash of any document client-side, then anchor that hash permanently to the Bitcoin blockchain via Stacks. No file is ever uploaded. The proof lives on-chain forever.

Live: proofleger.vercel.app


What it does

  • Anchor any document hash to Bitcoin via Stacks
  • Verify a document existed at a specific block height
  • Attest to documents anchored by others
  • Mint soulbound NFT achievements for verified credentials
  • Build an on-chain reputation score from your verified documents
  • Share a public proof profile at /profile/[wallet]
  • Export a decentralized CV at /cv/[wallet]

Tech Stack

  • Next.js 16 (App Router)
  • @stacks/connect v8 for wallet integration
  • @stacks/transactions for contract calls
  • Clarity smart contracts on Stacks mainnet
  • Bitcoin-anchored finality

Contracts (Mainnet)

| Contract | Address | |---|---| | proofleger3 | SP1SY1E599GN04XRD2DQBKV7E62HYBJR2CT9S5QKK.proofleger3 | | credentials | SP1SY1E599GN04XRD2DQBKV7E62HYBJR2CT9S5QKK.credentials | | achievements | SP1SY1E599GN04XRD2DQBKV7E62HYBJR2CT9S5QKK.achievements |


UI Design - Neo-Brutalist

| Token | Value | |---|---| | Background | #0a0a0a | | Foreground | #f5f0e8 | | Accent | #F7931A (Bitcoin orange) | | Success | #00ff88 | | Error | #ff3333 | | Border | 3px solid with 6px 6px 0px hard shadows | | Heading font | Archivo Black | | Body font | Space Grotesk | | Mono font | Space Mono |


Local Development

git clone https://github.com/greyw0rks/proofleger.git
cd proofleger
npm install
npm run dev

Requires Hiro Wallet browser extension.


Project Structure

src/
  app/
    page.js                   # Main app (Anchor, Verify, My Records)
    profile/[wallet]/page.js  # Public proof profile
    cv/[wallet]/page.js       # Decentralized CV
  components/
    WalletButton.jsx          # Hiro wallet connect
    ErrorBoundary.jsx         # Runtime error handling
    SkeletonCard.jsx          # Loading skeletons
  lib/
    wallet.js                 # All blockchain interactions
  utils/
    formatters.js             # Display formatting helpers
    validators.js             # Input validation

Contributing

See CONTRIBUTING.md · SECURITY.md · ROADMAP.md