Back to updates
New releaseSep 20, 2026

boha v0.20.2

Crypto bounties, puzzles and challenges data library

Share

@agntn/puzzles

npm version npm downloads license Ask DeepWiki

334 public crypto puzzles and bounties in twelve collections, as typed records. You ask for a puzzle, you get its address, its key material and what happened on chain.

Why?

Every puzzle thread has the same three things: the addresses, the prizes, and who solved what. Every scanner and tracker re-types them from the thread, slightly differently each time. So they live here once, as code. A puzzle is a TypeScript record. The type checker reads it before a test does. The CLI, the MCP server and the Pi and OMP extensions read one registry.

Docs, one page per puzzle and a live playground: puzzles.agntn.dev.

[!WARNING] Pre-1.0. The API, the CLI flags and the data model can still move. Pin an exact version if you build on it.

✨ Features

  • 🧾 Data as code. One PuzzleSpec literal per puzzle, built by a factory for its chain. No JSON, no build step.
  • 🕳️ Absent means absent. A puzzle without a solver or a prize has no such key. Nothing serializes as null.
  • 🔑 Key material in every shape. Hex, WIF, a BIP38 payload, a seed phrase, secret shares, or just a bit width. One builder.
  • 💤 Lazy registry. Importing the package loads no records. get("b1000/71") imports one collection module.
  • Verification is a value. A published key derives the address or it doesn't. Nothing throws for a bad record.
  • 💰 Live balances. puzzle.balance() through @agntn/explorers. Base units as bigint, API keys redacted from errors.
  • 🤖 Seven agent tools. One executor behind MCP, Pi and OMP. Same answer everywhere.
  • 🌐 Runs anywhere. Neutral ESM on the Fetch API. Node, browsers, edge workers.

📦 Install

pnpm add @agntn/puzzles

Node.js 24 or newer for the CLI.

🚀 First call

npx @agntn/puzzles stats
Total: 334
Solved: 132
Unsolved: 93
Claimed: 11
Swept: 96
Expired: 2
With pubkey: 237

No key, no config, no network. The records ship inside the package. The bare puzzles below is pnpm exec puzzles after a local pnpm add, or just puzzles after pnpm add -g @agntn/puzzles.

puzzles show b1000/71
b1000/71	unsolved	7.100226 BTC	1PWo3JeB9jrGwfHDNpdGK54CRas7fsVzXU

Commands

CommandWhat it prints
puzzles statsTotals and status counts. --json adds the prize sums
puzzles collectionsOne row per collection: key, counts, author
puzzles show <id>One puzzle. --json for the whole record
puzzles hints <id>The collection's hints, the puzzle's own, then its hint files. --json for both
puzzles list [collection]One puzzle per line. --status and --with-pubkey narrow it
puzzles verify [id]A published key against its address. --all for every puzzle, exit 1 on a mismatch
puzzles balance <id>The live balance. --api-key or ETHERSCAN_API_KEY for Ethereum
puzzles exportThe whole dataset with its data_version
puzzles mcpThe MCP server over stdio

--json is the same serializer everywhere, bigint as strings and absent fields left out. The flags and exit codes are in the CLI guide.

🧠 Library

import { get, stats, verifyPuzzle } from "@agntn/puzzles";
import { b1000 } from "@agntn/puzzles/collections/b1000";

const puzzle = await get("b1000/71"); // loads the b1000 collection, nothing else
puzzle?.address().value; // "1PWo3JeB9jrGwfHDNpdGK54CRas7fsVzXU"
puzzle?.keyRange(); // [2n ** 70n, 2n ** 71n - 1n]

verifyPuzzle(b1000.require(1)).verified; // true, key 1 derives its address
(await stats()).unsolved; // 93
(await b1000.require(71).balance()).totalUnits(); // 7.10190014 when I ran it, mempool.space decides

That's most of it, really. A collection is its own entry and everything on it is synchronous. The views that span collections await a load. Errors descend from PuzzlesError, balances have their own family under BalanceError. The rest is in the guides: records, registry, lookups, verification, balances.

🗺️ Collections

KeyPuzzlesChainsWhat it is
b1000256bitcoinKeys of 1 to 256 bits, one address each
rushwallet30bitcoinBrainwallets from a 2014 contest
zden15bitcoin, ethereum, litecoin, decredZden's visual puzzles
arweave12arweave, ethereumTiamat's weave puzzles
warp6bitcoinKeybase's scrypt brainwallet challenges
hash_collision6bitcoinPeter Todd's P2SH collision bounties
ballet3bitcoinBIP38 keys printed on physical wallets
bitimage2bitcoinSeeds hashed from photographs
bitaps1bitcoinA 3 of 5 secret sharing scheme
gsmg1bitcoinA multi phase image puzzle
movie_enigma1bitcoinFilm titles as seed words, solved 2026
ledger_donjon1bitcoinScissors Secret Sharing from the CTF

Identifiers are collection/name. The three singletons, gsmg, bitaps and movie_enigma, are just the key. Each collection has a page with the story, the quirks and every puzzle: puzzles.agntn.dev/collections.

🤖 Agents

claude mcp add puzzles --scope user -- npx -y @agntn/puzzles mcp
pi install npm:@agntn/puzzles
{
  "mcpServers": {
    "puzzles": { "command": "npx", "args": ["-y", "@agntn/puzzles", "mcp"] }
  }
}

Seven tools: puzzles_stats, puzzles_collections, puzzles_show, puzzles_hints, puzzles_list, puzzles_verify and puzzles_balance. Only the last one leaves the process, and its annotations say so. What the text carries and where the limits live: the agents guide.

🚫 What this does not do

It doesn't solve anything. No scanner, no kangaroo, no brainwallet cracker, and no guessing a status from a transaction list. solved, swept, claimed and expired are written down by hand, because a claim transaction plus a published key still means solved. Chain facts come from @agntn/chains, key derivation from @agntn/keys and balances from @agntn/explorers. This package doesn't reimplement any of them.

🧩 Adding a puzzle

One record file under src/collections/<key>/ and one line in the collection module. Then pnpm test runs the data gate: unique ids, address and txid formats, key derivation, BIP38 payloads, asset paths, no nulls. The shape of a record is in Puzzle records and the rules in CONTRIBUTING.md.

🛠️ Development

pnpm install
pnpm --dir docs install   # the docs site; lint and test read the Nuxt types it generates
pnpm lint         # oxfmt and oxlint, docs included
pnpm typecheck    # builds first, then checks src, Pi and OMP
pnpm test         # unit tests and the data gate
pnpm test:packed  # packs the tarball and runs every published entry without src/
pnpm docs         # the Docus site on localhost

💛 Thanks

This package exists thanks to the open source programs at Anthropic and OpenAI: Claude for Open Source and Codex for Open Source.

📄 License

MIT

Categories