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

tenzro-sdk

v0.1.0

Published

Tenzro Network SDK — wallets, identity, agents, inference, bridge, crypto, TEE, ZK proofs, custody, and settlement

Readme

Tenzro SDK for TypeScript

npm License Docs

The official TypeScript/JavaScript SDK for Tenzro Network -- build AI-native applications with wallets, identity, agents, inference, cross-chain bridge, crypto, TEE, ZK proofs, and settlement.

Installation

npm install tenzro-sdk

Quick Start

import { TenzroClient, TESTNET_CONFIG } from 'tenzro-sdk';

const client = new TenzroClient(TESTNET_CONFIG);

// Create wallet
const wallet = await client.wallet.createWallet();
console.log('Address:', wallet.address);

// Register identity
const identity = await client.identity.registerHuman('Alice');
console.log('DID:', identity.did);

// List AI models
const models = await client.inference.listModels();
console.log(`${models.length} models available`);

// Run inference
const result = await client.inference.request('gemma3-270m', 'Hello!', 100);
console.log(result.output);

AppClient (Developer Pattern)

import { AppClient } from 'tenzro-sdk';

// Developer funds a master wallet, users never see gas
const app = await AppClient.create('https://rpc.tenzro.network', process.env.MASTER_KEY!);

// Create user wallet (funded from master)
const user = await app.createUserWallet('alice', 1000000000000000000n);

// Sponsor inference (master pays)
const result = await app.sponsorInference(user.address, 'gemma3-270m', 'Hello');

Modules

| Module | Key Methods | |--------|------------| | wallet | createWallet(), getBalance(), sendTransaction() | | identity | registerHuman(), resolveDid(), setUsername() | | agent | register(), spawnAgent(), createSwarm(), delegateTask() | | inference | listModels(), request(), estimateCost() | | token | createToken(), listTokens(), crossVmTransfer() | | nft | createCollection(), mintNft(), transferNft() | | bridge | bridgeTokens(), getRoutes(), getBridgeStatus() | | settlement | createEscrow(), releaseEscrow(), openPaymentChannel() | | payment | createChallenge(), payMpp(), payX402() | | compliance | registerCompliance(), checkCompliance(), freezeAddress() | | crypto | signMessage(), encrypt(), decrypt(), hashSha256() | | tee | detectTee(), getAttestation(), sealData() | | zk | createProof(), verifyProof(), listCircuits() | | custody | createMpcWallet(), exportKeystore(), authorizeSession() | | streaming | chatStream(), subscribeEvents() | | app | AppClient -- master wallet, paymaster, user management | | governance | listProposals(), vote(), getVotingPower() | | staking | stake(), unstake(), getRewards() | | task | postTask(), listTasks(), completeTask() | | marketplace | registerAgentTemplate(), spawnAgentFromTemplate() | | contract | deployContract(), callContract(), encodeFunction() | | debridge | searchTokens(), getChains(), createTx() | | events | getEvents(), subscribeEvents(), registerWebhook() | | canton | listDomains(), submitCommand() | | skill | listSkills(), registerSkill() | | tool | listTools(), registerTool() |

Live Testnet

| Endpoint | URL | |----------|-----| | JSON-RPC | https://rpc.tenzro.network | | MCP Server | https://mcp.tenzro.network/mcp | | A2A Server | https://a2a.tenzro.network |

Documentation

Contact

License

Apache 2.0. See LICENSE.