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

@flyingwhale/receipt

v1.0.0

Published

FW-001 Execution Receipt Standard — Open standard for Bitcoin-native AI agent execution proofs

Readme

@flyingwhale/receipt

FW-001 Execution Receipt Standard — Open standard for Bitcoin-native AI agent execution proofs on Stacks.

Generate freely. Verify only here.

npm version License: MIT


What is FW-001?

FW-001 defines a standard execution receipt format for Bitcoin-native AI agents operating on Stacks. Any agent or tool can generate FW-001 receipts freely. Verification — the act of proving a receipt is legitimate — is centralized at Flying Whale and requires querying the on-chain trust graph.

On-chain IP: SP322ZK4VXT3KGDT9YQANN9R28SCT02MZ97Y24BRW.whale-ip-store-v1


Install

npm install @flyingwhale/receipt

Usage

Generate a Receipt (Free — No API Key)

import { createReceipt } from '@flyingwhale/receipt';

const receipt = createReceipt({
  executor:  'SP322ZK4VXT3KGDT9YQANN9R28SCT02MZ97Y24BRW',
  action:    'jingswap_v2_deposit_stx',
  txid:      'abc123def456...',
  block:     7500000,
});

// receipt.hash proves integrity
// receipt.standard === "FW-001"
console.log(receipt.hash);  // SHA-256 of canonical fields

Verify a Receipt (Requires Network)

import { verifyReceipt } from '@flyingwhale/receipt';

const result = await verifyReceipt(receipt);

if (result.fw_verified) {
  console.log(`✅ Verified. Score: ${result.score} | Tier: ${result.tier}`);
} else {
  console.log('❌ Unverified — Higher Risk');
}

Get Trust Score

import { getScore } from '@flyingwhale/receipt';

const { score, tier, allocation_pct } = await getScore('SP322...');
// score: 485 | tier: "Council" | allocation_pct: 100

Format for Display

import { formatReceipt } from '@flyingwhale/receipt';

console.log(formatReceipt(receipt));
// ╔══════════════════════════════════════════
// ║  FW-001 Execution Receipt
// ║  Flying Whale · zaghmout.btc · ERC-8004 #54
// ╠══════════════════════════════════════════
// ║  Executor : SP322ZK4VXT3KGDT9YQANN9R28SCT02MZ97Y24BRW
// ║  Action   : jingswap_v2_deposit_stx
// ║  TX       : abc123def456...
// ║  Block    : 7500000
// ║  Hash     : 5921c4a08aed4a71...
// ╚══════════════════════════════════════════

Receipt Format

interface FW001Receipt {
  standard:   "FW-001";   // Always this literal
  version:    "1.0";      // Format version
  executor:   string;     // ERC-8004:{id} or Stacks address
  action:     string;     // Tool name or function called
  txid:       string;     // Stacks transaction ID
  block:      number;     // Block height at execution
  timestamp:  string;     // ISO 8601
  hash:       string;     // SHA-256 of canonical fields
  signature?: string;     // SIP-018 (optional)
  route?:     string;     // Routing path (optional)
}

Canonical Hash

SHA-256("FW-001:{executor}:{action}:{txid}:{block}:{timestamp}")

Trust Score → Capital Tier

| Tier | Score | Allocation | Fee | |------|-------|-----------|-----| | Council | ≥ 485 | 100% | 0.10% | | Elite | ≥ 300 | 90% | 0.15% | | Agent | ≥ 100 | 70% | 0.25% | | Scout | ≥ 10 | 40% | 0.50% | | Unverified | 0 | 0% | — |


Verification API

Base URL: https://flying-whale-marketplace-production.up.railway.app

| Endpoint | Description | |----------|-------------| | GET /api/fw | Standard info | | GET /api/fw/score/:address | Trust score | | GET /api/fw/verify/:txid | TX verification + receipt | | GET /api/capital/tier | Full tier map | | GET /api/capital/route/:address | Execution suggestion |


License

MIT — COPYRIGHT 2026 Flying Whale — zaghmout.btc | ERC-8004 #54

Open standard. Free to implement. Verification centralized at Flying Whale.