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 🙏

© 2025 – Pkg Stats / Ryan Hefner

npm-demo-1112

v1.0.0

Published

A TypeScript project for message signing functionality

Downloads

3

Readme

Bitcoin Message Verification (TypeScript)

A modular TypeScript codebase for verifying Bitcoin messages and signatures, including BIP322, Taproot (P2TR), and P2WPKH support.

Features

  • ✅ Verify Bitcoin messages using standard and BIP322 methods
  • 🟢 Supports Taproot (P2TR) and P2WPKH signature verification
  • 🧩 Modular, testable, and well-documented code
  • 🦾 TypeScript strict typing

Project Structure

src/
├── index.ts           # App entry point and usage example
├── bitcoinUtils.ts    # Bitcoin network and hash utilities
├── validators.ts      # Schnorr and ECDSA signature validators
├── verifiers.ts       # BIP322, P2TR, and P2WPKH verification logic
├── types.ts           # Shared types and enums

Installation

  1. Install dependencies:
    npm install
  2. Build the project:
    npm run build
  3. Run the example:
    npm start

Usage Example

import bitcoinMessage from 'bitcoinjs-message';
import { NetworkType } from './types';
import { verifySignatureOfBIP322Simple_P2TR, verifySignatureOfBIP322Simple_P2PWPKH } from './verifiers';

const address = "2MzjGy4UPamASW7faK3NZ1u5hx8uXgHjabR";
const message = "2MzjGy4UPamASW7faK3NZ1u5hx8uXgHjabR-1750289075338";
const signature = "I2UYNblWSj1Q/5V+73v3PT6ULC7zi30v2pKTkGky3UMeKZ7A4ZslO2ul+MCxEg67Ttbm8dd5GQx7VmhpSg+G5D8=";

// Standard bitcoinjs-message verification
const isValidStandard = bitcoinMessage.verify(message, address, signature);
console.log("Standard bitcoinjs-message.verify ==> ", isValidStandard);

// BIP322 Taproot (P2TR) verification
const isValidP2TR = verifySignatureOfBIP322Simple_P2TR(address, message, signature, NetworkType.TESTNET);
console.log("BIP322 P2TR verify ==> ", isValidP2TR);

// BIP322 P2WPKH verification
const isValidP2WPKH = verifySignatureOfBIP322Simple_P2PWPKH(address, message, signature, NetworkType.TESTNET);
console.log("BIP322 P2WPKH verify ==> ", isValidP2WPKH);

API Reference

bitcoinUtils.ts

  • toPsbtNetwork(networkType: NetworkType): Network — Convert a network type to a bitcoinjs-lib network object.
  • bip0322_hash(message: string): string — Compute the BIP0322 message hash.

validators.ts

  • schnorrValidator(pubkey, msghash, signature): boolean — Validate a Schnorr signature.
  • validator(pubkey, msghash, signature): boolean — Validate an ECDSA signature.

verifiers.ts

  • verifySignatureOfBIP322Simple_P2TR(address, msg, sign, networkType?): boolean — Verify a BIP322 Taproot (P2TR) signature.
  • verifySignatureOfBIP322Simple_P2PWPKH(address, msg, sign, networkType?): boolean — Verify a BIP322 P2WPKH signature.

types.ts

  • NetworkType — Enum for Bitcoin network types (MAINNET, TESTNET, REGTEST).

Development

  • Modular code for easy testing and extension
  • Strict TypeScript configuration

License

MIT