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

@ancientpantheon/codex

v0.8.0

Published

The consumer-facing multi-chain Codex aggregator — install this one package to get the whole wallet (core + UI + every chain module) exposed through provider/hooks/ui and per-chain subpath exports. The four internal member packages are bundled in; consume

Readme

@ancientpantheon/codex

The consumer-facing multi-chain Codex aggregator. Install this single package to get the whole wallet — the chain-agnostic core, the browser interface layer, and every chain module — re-exposed through subpath exports:

| Import | What you get | | --- | --- | | @ancientpantheon/codex | the chain-agnostic root: codec, vault, adapter/snapshot + foreign-chain contracts, connection/resolver factory (no React) | | @ancientpantheon/codex/provider | the composed top-level <CodexProvider> | | @ancientpantheon/codex/hooks | the React hooks (useCodex, useCodexAuth, useOuroAccounts, …) | | @ancientpantheon/codex/ui | the full UI (tabs, settings, cards, the debouncer) | | @ancientpantheon/codex/ouronet | the Ouronet (Kadena/Pact) chain module — adapter, connection, identity, resolver, state, errors, types | | @ancientpantheon/codex/arweave | the Arweave chain module — adapter, keyring, connection, panel | | @ancientpantheon/codex/ui.css | the merged stylesheet (import "@ancientpantheon/codex/ui.css") |

A React app gets the full multi-chain wallet from one dependency; a headless consumer imports only the core it needs without pulling React.

Install

npm install @ancientpantheon/codex @ancientpantheon/arweave-core

@ancientpantheon/arweave-core is the aggregate's one external @ancientpantheon dependency (published separately). You also provide the peers you already have: react, react-dom, the @stoachain/* chain primitives, @noble/curves, and lucide-react.

How the bundle works

The four internal member packages (codex-core, codex-ui, codex-ouronet, codex-arweave) stay private and are bundled — their compiled JS and types are inlined into this package's dist (via tsup). A consumer never installs or resolves them. Everything third-party (React, the @stoachain/* primitives, zustand, CodeMirror, arweave, @ardrive/turbo-sdk, …) stays external and is provided through this package's dependencies/peerDependencies.

Browser note: @ardrive/turbo-sdk ships a Node build at its root export. A browser consumer (Vite/Next/webpack) must alias it onto its /web build — the same aliasing arweave-core documents — so the browser crypto driver is bundled instead of the Node build.

Status

Version 0.8.0 on public npmjs. The aggregate: the six subpath barrels wired to the members and the members bundled in (JS + types self-contained — a TypeScript consumer type-checks against only this package + arweave-core).

Version history

v0.8.0 — additive, no breaking changes. Adds createHeadlessKadenaResolver, exported from @ancientpantheon/codex/ouronet: a server-safe, pre-bound Kadena KeyResolver for headless Khronoton automatons (Pythia, Mnemosyne). A consumer supplies a loadSnapshot + getPassword thunk pair and binds zero @stoachain crypto itself — all seedType-aware derivation (koala / chainweaver / eckowallet / pure-foreign, with the wrong-key refusal guard) is delegated to Codex's one canonical headless resolver instead of hand-rolled per consumer. Loads no React/DOM from /ouronet. codex-only release (arweave-core unchanged).

v0.7.0 — additive, no breaking changes. Adds autoSignApolloChallenge, exported from @ancientpantheon/codex/ouronet: lets a server-side Automaton (Pythia first) prove ₱./Π. Apollo-account ownership autonomously, on a recurring timer, with zero browser and zero human prompt. Reuses the exact canonical challenge message and dalos-apollo Schnorr signing already proven by the existing browser /apollo-verify flow, so a signature it produces verifies against Pythia's existing verifier unchanged. codex-only release (arweave-core unchanged).

v0.6.1 — dependency rename, no behaviour change. Released 2026-07-22. The Ouronet libraries moved to @ouronet/ouronet-core and @ouronet/dalos-crypto in the Phase-4 reorganisation; the old names are deprecated. The codec version gate now reflects the core's widened reader (accepts "1.2" and "1.3") while asserting the writer stays pinned at "1.2". 1570 specs pass.

v0.6.0 — Codex password rotation. New rekeyCodex(snapshot, old, new) — a pure, isomorphic transform (from @ancientpantheon/codex/ouronet) that re-encrypts the WHOLE secret inventory old→new (pre-flight verify, skip-not-drop, V2 output). Plus a changeCodexPassword store action wired as the default onChangePassword, so the change-password card works out of the box. Resolves Handoff 07.

v0.5.1 — Fix the zbom STOA fee mark (StoaChainCostDisplay): render the gold ❖ glyph inline instead of an <img> to a host-app asset that broke in consumers (e.g. Mnemosyne). Self-contained in the bundle. No API changes.

v0.5.0 — First functional aggregate: wired + bundled codex-core/codex-ui/codex-ouronet/codex-arweave through provider/hooks/ui/ouronet/arweave + ui.css; tsup dts-rollup so the .d.ts are self-contained.

v0.0.1 — Initial package skeleton (empty barrels).

Bundled member versions

| Member package | Version | | --- | --- | | @ancientpantheon/codex-core | 0.2.0 | | @ancientpantheon/codex-ui | 0.4.0 | | @ancientpantheon/codex-ouronet | 0.8.0 | | @ancientpantheon/codex-arweave | 0.2.0 | | @ancientpantheon/arweave-core | 0.2.0 |