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

cantonjs-splice-scan

v0.4.0

Published

Public Scan reads for Splice networks

Readme

cantonjs-splice-scan

Public Scan client for Splice networks, layered on top of cantonjs.

This package exposes only the stable public Scan surface. Internal, deprecated, and pre-alpha Scan operations are intentionally excluded from the main entrypoint.

Status

  • Main entrypoint: GA for the public Scan surface on the Splice 0.5.x line
  • Vendored artifacts: currently pinned to vendor/splice/0.5.17
  • Experimental subpath: cantonjs-splice-scan/experimental, outside the GA promise and minor-release-breakable

Install

npm install cantonjs cantonjs-splice-scan

What Scan Is

Scan provides the public SV/DSO view of a Splice network: network metadata, public update history, public ANS lookups, public holdings snapshots, and similar read APIs.

It does not expose party-private ledger state. For party-scoped contract queries and commands, use the Canton Ledger API through cantonjs.

Quick Start

import { createScanClient } from 'cantonjs-splice-scan'

const scan = createScanClient({
  url: 'https://example.com/api/scan',
})

const dso = await scan.getDsoInfo()
const history = await scan.getUpdates({ page_size: 25 })

Auth is optional. Many Scan deployments allow public access without a token:

const publicScan = createScanClient({
  url: 'https://example.com/api/scan',
})

const authenticatedScan = createScanClient({
  url: 'https://example.com/api/scan',
  token: process.env.SPLICE_SCAN_JWT,
})

Per-request auth/session providers from cantonjs are also supported:

const scan = createScanClient({
  url: 'https://example.com/api/scan',
  session: async ({ request }) => {
    if (request.path === '/v2/updates') {
      return { token: await getToken() }
    }
    return undefined
  },
})

Iterating /v2/updates

iterateUpdates() advances /v2/updates by reusing the last item from the prior page as the next after cursor.

for await (const update of scan.iterateUpdates({ page_size: 100 })) {
  console.log(update.update_id, update.record_time)
}

Package Policy

  • Generated low-level types are committed in src/generated/scan.types.ts.
  • The main entrypoint exports only stable public Scan helpers and stable public derived types.
  • No network access is required at install time.
  • New code should prefer the GA entrypoint unless it truly depends on internal, deprecated, or pre-alpha Scan behavior.

Experimental APIs

[!WARNING] Experimental Scan imports are pinned to vendor/splice/0.5.17. They may break on any upstream release. Import them only from cantonjs-splice-scan/experimental.

The experimental subpath exposes the unstable portions of scan.yaml: internal, deprecated, and pre-alpha operations.

import { createExperimentalScanClient } from 'cantonjs-splice-scan/experimental'

const experimentalScan = createExperimentalScanClient({
  url: 'https://example.com/api/scan',
  token: process.env.SPLICE_SCAN_JWT,
})

const migration = await experimentalScan.getMigrationSchedule()
const bulkSnapshot = await experimentalScan.listBulkAcsSnapshotObjects({
  at_or_before_record_time: '2026-04-02T00:00:00.000Z',
})

The stable cantonjs-splice-scan entrypoint will continue to exclude these operations even when experimental wrappers exist.

License

Apache-2.0