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/pythia-client

v2.7.30

Published

Pythia client SDK — the dependency-light consumer surface for the AncientPantheon keyless transport gateway: generic dirty read, keyless broadcast, and tx-status poll.

Readme

@ancientpantheon/pythia-client

The dependency-light consumer SDK for Pythia, the keyless transport gateway of the AncientPantheon. It wraps the gateway's per-chain transport surface behind a small typed PythiaClient over a configurable base URL:

  • Dirty readclient.read(...) relays a caller-supplied Pact expression to a healthy node and returns the node response verbatim (never decoded).
  • Keyless broadcastclient.send(...) relays caller-SIGNED commands to the node's /send verbatim. Pythia holds no keys and signs nothing.
  • Tx statusclient.poll(...) returns per-request-key pending-vs-final status and confirmation depth; client.health() returns the gateway's liveness snapshot.
  • Connector protocolPythiaConnector drives Pythia's headless challenge/verify round trip against an injected signer + storage, holding a live ephemeral secret you can wire straight into PythiaClient as the x-pythia-key gated-access header.

Status

2.7.30 on public npmjs — proprietary release, all rights reserved (see LICENSE). Ships the PythiaClient class wrapping the keyless gateway endpoints (read, send, poll, health) over a configurable base URL with an injectable fetchImpl, and mirrors the service error taxonomy as client-side typed errors (PythiaValidationError, PythiaUnsupportedChainError, PythiaPoolExhaustedError) under a shared PythiaClientError root. Also ships PythiaConnector — the consumer-side orchestrator for Pythia's headless connector-auth protocol, holding no key material of its own (it signs through an injected ApolloSigner and persists through an injected SecretStorage) — with its own PythiaConnectorError taxonomy. Also ships splitDualLinkKey (validates + splits an on-chain dual-link-key into its two Apollo-account halves, alongside its APOLLO_ACCOUNT_LEN/DUAL_LINK_BAR constants) and DualLinkConnector (drives both halves of an already-active dual-Apollo pair on a schedule, reporting one unified status). Also ships maskSecret — a tiny, pure helper for masking an ephemeral secret in a UI (first7...last7). The package carries no runtime dependencies — it rests only on the runtime fetch and its own types.

Usage

import { PythiaClient } from "@ancientpantheon/pythia-client";

const client = new PythiaClient({ baseUrl: "https://pythia.ancientholdings.eu" });

// Dirty read — you supply the Pact code; the node response comes back verbatim.
const node = await client.read({ code: "(coin.get-balance \"k:abc\")" });

// Keyless broadcast — relay your OWN caller-signed commands.
const sent = await client.send({ cmds: mySignedCmds });

// Tx status — pending vs final + depth, per request key.
const status = await client.poll({ requestKeys: ["req-key-1"], chainId: 0 });

const health = await client.health();

Connector protocol (gated access)

If your Apollo account has an active on-chain dual link, PythiaConnector drives the headless challenge/sign/verify round trip for you and hands PythiaClient a live, auto-refreshing secret:

import { PythiaClient, PythiaConnector } from "@ancientpantheon/pythia-client";

// Your own signing capability — this package never holds key material.
const signer = {
  async sign({ apolloAccount, nonce, rp }) {
    return { signature: await myApolloSigner.sign(apolloAccount, nonce, rp) };
  },
};

const connector = new PythiaConnector({
  baseUrl: "https://pythia.ancientholdings.eu",
  apolloAccount: "₱.my-account...",
  signer,
  // storage defaults to in-memory; inject your own to persist across restarts.
});

const client = new PythiaClient({
  baseUrl: "https://pythia.ancientholdings.eu",
  // Resolved fresh on every request — stays wired to a live secret with no
  // manual refresh loop or client re-construction.
  pythiaKey: connector.keyProvider(),
});

const gatedRead = await client.read({ code: "(coin.get-balance \"k:abc\")" });

connector.ensureSecret() returns {status:"pending"} (not a thrown error) if your account's ownership is proven but its dual link isn't active on-chain yet — call it again later once activation lands.

Dual-link connector (an already-active dual-Apollo pair)

If you already have a dual-Apollo pair active on-chain and hold the composite dual-link-key (<standard-apollo>|<smart-apollo>, 325 chars), DualLinkConnector drives both halves' proof/refresh round trips for you and reports one unified, auto-refreshing secret:

import { PythiaClient, DualLinkConnector } from "@ancientpantheon/pythia-client";

const dualLink = new DualLinkConnector({
  baseUrl: "https://pythia.ancientholdings.eu",
  dualLinkKey: "₱...|Π...", // your on-chain PYTHIA|T|DualLinks composite key
  standardSigner,
  smartSigner,
});

const client = new PythiaClient({
  baseUrl: "https://pythia.ancientholdings.eu",
  pythiaKey: dualLink.keyProvider(),
});

const gatedRead = await client.read({ code: "(coin.get-balance \"k:abc\")" });

dualLink.status() reports both halves' individual state plus the single secret/expiresAt currently in use — whichever half is active first, since the gate never cares which half issued it.

Install

npm install @ancientpantheon/pythia-client

Version history

v2.7.30 — version alignment: jumps from 2.7.29 to 2.7.30 to align with the unified Pythia service version line. Service-side only (per-consumer transaction attribution in the Pyth ledger + /pyth byConsumer, and a live Activity "pulse") — no changes to this package's own source, API surface, or behavior.

v2.7.29 — version alignment: jumps from 2.7.28 to 2.7.29 to align with the unified Pythia service version line. Service-side only (the Connectors list gained a per-row copy button for the dual API link key) — no changes to this package's own source, API surface, or behavior.

v2.7.28 — version alignment: jumps from 2.7.27 to 2.7.28 to align with the unified Pythia service version line. Service-side only (the Activity tab's on-chain read no longer discards the ledger total when a gap day has no row) — no changes to this package's own source, API surface, or behavior.

v2.7.27 — version alignment: jumps from 2.7.26 to 2.7.27 to align with the unified Pythia service version line. Service-side only (keyed reads with an ephemeral x-pythia-key are now attributed to their consumer at the meter — previously miscounted as anon — so keyed usage reaches the hub) — no changes to this package's own source, API surface, or behavior.

v2.7.26 — version alignment: jumps from 2.7.25 to 2.7.26 to align with the unified Pythia service version line. Service-side only (the landing Activity tab now reads the on-chain Pyth ledger — "stone" — alongside the local backlog — "air") — no changes to this package's own source, API surface, or behavior.

v2.7.25 — version alignment: jumps from 2.7.24 to 2.7.25 to align with the unified Pythia service version line. Service-side only (petitions again count only client-served reads, not the automaton's own dirty reads; automaton transactions still counted) — no changes to this package's own source, API surface, or behavior.

v2.7.24 — version alignment: jumps from 2.7.23 to 2.7.24 to align with the unified Pythia service version line. Service-side only (Pythia's own automaton on-chain fires now count in her Pyth ledger — they previously bypassed the meter) — no changes to this package's own source, API surface, or behavior.

v2.7.23 — version alignment: jumps from 2.7.22 to 2.7.23 to align with the unified Pythia service version line. Service-side only (the connector panel's activation status line no longer freezes on "Checking status…" after the link lands) — no changes to this package's own source, API surface, or behavior.

v2.7.22 — version alignment: jumps from 2.7.21 to 2.7.22 to align with the unified Pythia service version line. Service-side only (Pythia adopted khronoton-core 0.7.0 + registered its event-driven resolver as evented for native scheduleless handling, plus a resolver roster) — no changes to this package's own source, API surface, or behavior.

v2.7.21 — version alignment: jumps from 2.7.20 to 2.7.21 to align with the unified Pythia service version line. Service-side only (a pre-existing evented cronoton is migrated off its stale schedule at boot, plus an override delete for system cronotons) — no changes to this package's own source, API surface, or behavior.

v2.7.20 — version alignment: jumps from 2.7.19 to 2.7.20 to align with the unified Pythia service version line. Service-side only (a server resolver may now bind only one cronoton — a duplicate commit is rejected) — no changes to this package's own source, API surface, or behavior.

v2.7.19 — version alignment: jumps from 2.7.18 to 2.7.19 to align with the unified Pythia service version line. Service-side only (picking an event-driven server resolver now forces its cronoton scheduleless — scheduling turns off) — no changes to this package's own source, API surface, or behavior.

v2.7.18 — version alignment: jumps from 2.7.17 to 2.7.18 to align with the unified Pythia service version line. Service-side only (dual-link activation is now truly event-driven/scheduleless — the link event fires A_LinkDualApiKey immediately, no schedule tick) — no changes to this package's own source, API surface, or behavior.

v2.7.17 — version alignment: jumps from 2.7.16 to 2.7.17 to align with the unified Pythia service version line. Service-side only (the connector verify flow now bridges into autonomous A_LinkDualApiKey activation, an automaton liveness green-check on /healthz, and Tier-3 admin URL routing) — no changes to this package's own source, API surface, or behavior.

v2.7.16 — version alignment: jumps from 2.7.15 to 2.7.16 to align with the unified Pythia service version line. Service-side only (the Pyth Flush cronoton now encodes its entry numbers as explicit Pact values so A_Flush type-checks) — no changes to this package's own source, API surface, or behavior.

v2.7.15 — version alignment: jumps from 2.7.13 to 2.7.15 to align with the unified Pythia service version line. Service-side only (Khronoton signing now delegates key derivation to Codex's own resolver instead of hand-rolling it) — no changes to this package's own source, API surface, or behavior.

v2.7.13 — version alignment: jumps from 2.7.12 to 2.7.13 to align with the unified Pythia service version line. Service-side only (Khronoton can now sign with a chainweaver/eckowallet operator seed) — no changes to this package's own source, API surface, or behavior.

v2.7.12 — version alignment: jumps from 2.7.11 to 2.7.12 to align with the unified Pythia service version line. Service-side only (the Khronoton simulate's real error now surfaces in the UI instead of a generic "network error") — no changes to this package's own source, API surface, or behavior.

v2.7.11 — version alignment: jumps from 2.7.10 to 2.7.11 to align with the unified Pythia service version line. Service-side only (a hotfix for a khronoton-core 0.6.0 crash that white-screened the Khronoton admin page) — no changes to this package's own source, API surface, or behavior.

v2.7.10 — version alignment: jumps from 2.7.9 to 2.7.10 to align with the unified Pythia service version line. Service-side only (the Khronoton Builder admin UI gained a Back button) — no changes to this package's own source, API surface, or behavior.

v2.7.9 — version alignment: jumps from 2.7.8 to 2.7.9 to align with the unified Pythia service version line. Service-side only (the Khronoton admin now surfaces a throwing handler's real error instead of a generic "network error") — no changes to this package's own source, API surface, or behavior.

v2.7.8 — version alignment: jumps from 2.7.7 to 2.7.8 to align with the unified Pythia service version line. Service-side only (the Khronoton Kadena signing-key picker now excludes Apollo-format keys by key shape, fixing a case v2.7.7's metadata filter missed) — no changes to this package's own source, API surface, or behavior.

v2.7.7 — version alignment: jumps from 2.7.6 to 2.7.7 to align with the unified Pythia service version line. Service-side only (Khronoton admin: the Server Resolver dropdown now offers the already-registered resolvers, and the Kadena signing-key picker excludes Apollo-curve keys) — no changes to this package's own source, API surface, or behavior.

v2.7.6 — version alignment: jumps from 2.7.5 to 2.7.6 to align with the unified Pythia service version line. Service-side only (Self Connector panel: seconds-ticking countdown + a normal, non-square Link button) — no changes to this package's own source, API surface, or behavior.

v2.7.5 — version alignment: jumps from 2.7.4 to 2.7.5 to align with the unified Pythia service version line. Service-side only (Self Connector panel layout fix + an already-linked pair no longer shows a false "Not linked" after a redeploy) — no changes to this package's own source, API surface, or behavior.

v2.7.4 — version alignment: jumps from 2.7.3 to 2.7.4 to align with the unified Pythia service version line. Service-side only (fixes a race where an in-flight blue-green deploy could silently undo an admin's Pyth ledger "Nuke") — no changes to this package's own source, API surface, or behavior.

v2.7.3 — version alignment: jumps from 2.7.2 to 2.7.3 to align with the unified Pythia service version line. Service-side only (the admin Self Connector panel now shows a single consolidated ephemeral secret, matching DualLinkConnector.status()'s own already-existing dedup, instead of two misleading per-half ones) — no changes to this package's own source, API surface, or behavior.

v2.7.2 — version alignment: jumps from 2.7.1 to 2.7.2 to align with the unified Pythia service version line. Service-side only (Self Connector's Link action now drives an immediate chain check instead of waiting up to 24h for the next scheduled tick) — no changes to this package's own source, API surface, or behavior.

v2.7.1 — version alignment: jumps from 2.7.0 to 2.7.1 to align with the unified Pythia service version line. A CI-flakiness fix on the service side only (test-timing budget, no production code changed) — no changes to this package's own source, API surface, or behavior.

v2.7.0 — version alignment: jumps from 2.6.0 to 2.7.0 to align with the unified Pythia service version line. Service-side only (Pythia's self-connector signing now routes through her own Codex instead of generating locally) — no changes to this package's own source, API surface, or behavior.

v2.6.0 — adds maskSecret(secret) (a tiny, pure, dependency-free helper masking an ephemeral secret to first7...last7 for display, returning short inputs — under 14 chars — unchanged), and fixes APOLLO_ACCOUNT_LEN/DUAL_LINK_BAR (from v2.5.0's dualLinkKey.ts) not having been re-exported from the package's top-level index.ts despite existing in source. No removals, no breaking changes to any existing export.

v2.5.0 — adds splitDualLinkKey (validates + splits an on-chain dual-link-key<standard-apollo>|<smart-apollo>, the literal PYTHIA|T|DualLinks table key, 325 chars — into its two Apollo-account halves, throwing PythiaConnectorValidationError naming the specific problem on malformed input) and DualLinkConnector (the class-shaped generalization of the service's own SelfConnectorLoop pattern: given a dualLinkKey plus a signer per half, drives both halves' proof/refresh round trips on a schedule with per-half error isolation, and reports one unified status() — both halves' state plus a single live secret/expiresAt — with a keyProvider() for direct PythiaClientOptions.pythiaKey wiring). The reusable primitive any consumer needs to actually USE an already-active on-chain dual-Apollo identity. No removals, no breaking changes to any existing export.

v2.4.3 — version alignment: jumps from 2.4.2 to 2.4.3 to align with the unified Pythia service version line. Fixes the actual on-box deploy failure (a Dockerfile runtime-stage bug) — no changes to this package's own source, API surface, or behavior.

v2.4.2 — version alignment: jumps from 2.4.1 to 2.4.2 to align with the unified Pythia service version line. Service-side only (a SealedStore.rotateMasterKey hardening fix) — no changes to this package's own source, API surface, or behavior.

v2.4.1 — version alignment: jumps from 2.4.0 to 2.4.1 to align with the unified Pythia service version line. CI-only fix (the ghcr image workflow now builds this package before its test gate) — no changes to this package's own source, API surface, or behavior.

v2.4.0 — version alignment: jumps from 2.3.0 to 2.4.0 to align with the unified Pythia service version line. Service-side only (Pythia adopting this SDK as her own third organ) — no changes to this package's own source, API surface, or behavior.

v2.3.0 — version alignment: jumps from 1.7.0 to 2.3.0 to align with the unified Pythia service version line. Adds PythiaConnector (headless challenge/sign/verify orchestration against an injected ApolloSigner + SecretStorage), the PythiaConnectorError taxonomy, InMemorySecretStorage, and PythiaClientOptions.pythiaKey (static string or live supplier, sent as x-pythia-key). No removals, no breaking changes to any existing export.

v1.7.0 — version alignment: jumps from 1.1.0 straight to 1.7.0, skipping 1.2.01.6.0, to align with the unified Pythia service version line. No API changes — the service and the client are now released together from a single git tag.

v1.1.0 — the gateway pivots from a decode-baked read service to a keyless generic transport gateway (pre-adoption reshape). Removes getBalance, getConfirmations, and rpc (plus the Balance/Confirmations types) and adds read (generic dirty read), send (keyless broadcast of caller-signed commands), and poll (per-request-key tx status). health() is unchanged. Node responses from read/send pass through verbatim; poll returns a typed PollResult.

v1.0.1 — adopt the AncientHoldings proprietary license (all rights reserved), matching the AncientPantheon family; ship the LICENSE in the package tarball. No API change.

v1.0.0 — first public release. Shipped the PythiaClient class over the original four gateway endpoints (getBalance, getConfirmations, rpc, health) with a configurable base URL, an injectable fetchImpl, and the client-side typed error taxonomy. Dependency-light (fetch + own types only); established the publishable package shape (sideEffects: false, public publishConfig, provenance-signed publish).

License

Proprietary — all rights reserved. © 2026 AncientHoldings. See LICENSE. No rights are granted; publication on npm is for AncientHoldings' operational convenience only and grants no license to any third party. For licensing inquiries: ancientholdings.eu.