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

keeperhub-sdk

v0.3.1

Published

TypeScript SDK for KeeperHub — the onchain workflow automation platform

Readme

keeperhub-sdk

npm License

The core TypeScript SDK powering all KeeperHub agent integrations — direct REST API access, wallet management, workflow automation, and streaming.


Skill Install

npx agentskills install keeperhub

Install

npm install keeperhub-sdk

5-Minute Quickstart

// npm install keeperhub-sdk
// export KEEPERHUB_API_KEY=kh_...

import { KeeperHub } from "keeperhub-sdk";

const kh = new KeeperHub({ apiKey: process.env.KEEPERHUB_API_KEY! });

// Check wallet
const wallet = await kh.wallet.getWallet();
console.log("Wallet:", wallet.walletAddress);

// List supported chains
const chains = await kh.chains.getChains();
console.log("Chains:", chains.map(c => c.name).join(", "));

// Transfer tokens (testnet)
const tx = await kh.web3.transfer({
  network: "84532", // Base Sepolia
  recipientAddress: "0x1234...",
  amount: "0.001",
});
console.log("TX:", tx.transactionHash);

Get your API key at app.keeperhub.com → Settings → API Keys.


Key Modules

| Module | Description | |--------|-------------| | kh.wallet | Manage Turnkey-backed agentic wallets, check balances | | kh.chains | List 19 supported blockchains, fetch contract ABIs | | kh.web3 | Transfer tokens, read/write contracts, estimate gas | | kh.workflows | List, create, execute, duplicate, and version workflows | | kh.executions | Poll execution status, stream logs, cancel | | kh.protocols | Execute any of 396 DeFi protocol actions | | kh.ens | Resolve ENS names, reverse lookup, read text records | | kh.notifications | Send Discord/Slack/email/webhook notifications | | kh.analytics | Analytics streaming and execution metrics |


Used By

All 5 KeeperHub agent packages depend on this SDK:

| Package | Install | |---------|---------| | Python LangChain toolkit | pip install keeperhub-langchain | | TypeScript LangChain toolkit | npm install @ethglobal-openagent/langchain-keeperhub | | ElizaOS plugin | npm install @keeperhub/elizaos | | OpenClaw LangChain adapter | openclaw plugin install @ethglobal-openagent/openclaw-keeperhub | | OpenClaw ElizaOS adapter | openclaw plugin install @ethglobal-openagent/openclaw-eliza-keeperhub |

Use this SDK directly when you need low-level control over the KeeperHub API, want to build your own agent integration, or are working outside of LangChain/ElizaOS.


Links

  • GitHub: https://github.com/dhruv457457/keeperhub-eth-global/tree/staging/packages/sdk
  • KeeperHub platform: https://app.keeperhub.com
  • API docs: https://app.keeperhub.com/api/openapi

License

MIT