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

@sparkleprotocol/core

v1.0.0

Published

Trustless atomic swaps for Bitcoin Ordinals via Lightning Network - Mainnet Validated

Readme


Overview

Sparkle Protocol enables trustless atomic swaps for Bitcoin Ordinals using Lightning Network payments. Trade inscriptions securely without intermediaries, custodial accounts, or private key exposure.

TL;DR: Pay Lightning, get Ordinal. Trustless. No custody risk.


Quick Start

Installation

npm install @sparkle-protocol/core

Basic Usage

import {
  createSparkleSwapAddress,
  generatePreimage,
  computePaymentHash,
} from '@sparkle-protocol/core';

// 1. Generate preimage and payment hash
const { preimage, preimageHex } = generatePreimage();
const paymentHash = computePaymentHash(preimage);

// 2. Create swap address
const swapAddress = createSparkleSwapAddress({
  sellerPubkey: SELLER_PUBKEY,
  buyerPubkey: BUYER_PUBKEY,
  paymentHash: paymentHashHex,
  timelockHeight: currentBlock + 144,
  network: 'mainnet',
});

// 3. Seller locks inscription to swapAddress.address
// 4. Buyer pays Lightning invoice
// 5. Buyer claims with preimage

Run Coordinator Server

git clone https://github.com/ProtocolSparkle/Sparkle-Protocol
cd Sparkle-Protocol && npm install
npx tsx src/coordinator/server.ts

Mainnet Proof

The protocol has been validated on Bitcoin mainnet:

| Component | Transaction ID | |-----------|---------------| | Lock TX | a3c6b08ed820194ee... | | Sweep TX | 9422e6cb358295d86... |

See proofs/ for full verification details.


How It Works

1. Seller creates Lightning hold invoice
2. Seller locks inscription in Taproot address with:
   - Claim path: requires preimage (revealed when buyer pays)
   - Refund path: available after timelock (if buyer abandons)
3. Buyer pays Lightning invoice
4. Payment reveals preimage
5. Buyer uses preimage to claim inscription
6. Seller receives Lightning payment

Result: Atomic exchange - both succeed or neither does

Security Properties

| Property | Guarantee | |----------|-----------| | Atomicity | Payment and transfer occur together or not at all | | Non-custodial | No third party holds funds or inscriptions | | Trustless | No trust required between buyer and seller | | Recoverable | Seller can always reclaim via timelock refund |


Coordinator API

| Endpoint | Method | Description | |----------|--------|-------------| | /health | GET | Health check and stats | | /api/swaps | GET | List active swaps | | /api/swaps/:id | GET | Get swap details | | /api/swaps | POST | Create new swap | | /api/stats | GET | Coordinator statistics |


Repository Structure

Sparkle-Protocol/
├── docs/               # Protocol documentation
├── proofs/             # Mainnet validation evidence
├── src/                # TypeScript SDK source
│   ├── core/          # Core swap primitives
│   ├── coordinator/   # Coordinator server
│   └── adapters/      # Wallet integrations
├── examples/           # Usage examples
├── tests/              # Test suite
└── LICENSE             # MIT License

Technical Specification

  • Taproot (BIP-341) for script-path spending
  • SHA256 hashlocks bound to Lightning payment hashes
  • CLTV timelocks for seller refund protection
  • Hold invoices for atomic settlement

Full specification: docs/SPECIFICATION.md


License

MIT License - see LICENSE


Links

  • Website: https://sparkleprotocol.com
  • NPM: https://www.npmjs.com/package/@sparkle-protocol/core
  • Specification: docs/SPECIFICATION.md