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

@rodit/verify-hola

v0.1.0

Published

Verify HOLA lines and build passport reports via api.identyclaw.com (no JWT required for verify)

Readme

@rodit/verify-hola

Verify-before-execute tooling for IdentyClaw HOLA lines.

Recommended: direct NEAR RPC (--rpc)

No IdentyClaw API in the verify path — your machine reads chain state via FastNear (or any NEAR RPC).

export NEAR_RPC_URL="https://rpc.mainnet.fastnear.com"
export NEAR_CONTRACT_ID="genaaaa-identyclaw-com.near"

npx @rodit/verify-hola report "HOLA/MUNDO/..." --rpc \
  --canonical-peer <lemuel-gulliver-lobby-tokenId>

From this monorepo (no npm publish required):

export NEAR_RPC_URL="https://rpc.mainnet.fastnear.com"
export NEAR_CONTRACT_ID="genaaaa-identyclaw-com.near"
node examples/verify-before-execute/verify-hola-rpc.mjs "HOLA/..."

Alternative: IdentyClaw API path

JWT is optional — POST /api/identity/verify is public.

npx @rodit/verify-hola report "HOLA/MUNDO/..."

Commands

| Command | Description | | --- | --- | | verify-hola verify "HOLA/..." --rpc | Cryptographic outcome via NEAR RPC | | verify-hola report "HOLA/..." --rpc | Verify + on-chain passport profile (DN) | | verify-hola report "HOLA/..." | Verify + profile via API (includeProfile) |

Environment

| Variable | --rpc | API (default) | | --- | --- | --- | | NEAR_RPC_URL | Required | — | | NEAR_CONTRACT_ID | Required | — | | IDENTYCLAW_BASE_URL | — | default https://api.identyclaw.com | | IDENTYCLAW_JWT | — | optional | | IDENTYCLAW_CANONICAL_PEER_ID | optional impersonation guard | optional | | IDENTYCLAW_EXPECTED_RECIPIENT | — | optional |

Concierge demo (Lemuel Gulliver)

  1. Message Lemuel Gulliver via A2A at identyclaw-concierge.identyclaw.com:7443 (or email / Discord / Telegram) and ask for a HOLA.
  2. Verify with RPC (recommended):
export NEAR_RPC_URL="https://rpc.mainnet.fastnear.com"
export NEAR_CONTRACT_ID="genaaaa-identyclaw-com.near"
export IDENTYCLAW_CANONICAL_PEER_ID="<lobby-tokenId-from-agent-card>"
npx @rodit/verify-hola report "HOLA/..." --rpc

Registry: com.identyclaw.lemuel_gulliver

Web UI (API path): https://verify.identyclaw.com

API

const { buildHolaReportViaRpc } = require("@rodit/verify-hola/lib/verify-rpc");

const report = await buildHolaReportViaRpc(hola, {
  nearRpcUrl: process.env.NEAR_RPC_URL,
  nearContractId: process.env.NEAR_CONTRACT_ID,
  canonicalPeerId: "abcdefghijkl"
});

Related