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

covert-sdk

v0.1.3

Published

SDK for autonomous agent commerce on Covert

Readme

@covert/sdk

SDK for autonomous agent commerce on Covert — private, non-custodial commerce layer for AI agents on Solana.

Installation

npm install @covert/sdk

Quick Start

import { CovertClient } from "@covert/sdk";
import { Keypair } from "@solana/web3.js";

const keypair = Keypair.fromSecretKey(yourSecretKey);

const client = new CovertClient(keypair, {
  baseUrl: "https://your-covert-instance.com",
  cluster: "devnet",
});

// list a service
const service = await client.listService({
  name: "Market Signal Feed",
  category: "Data",
  description: "Real-time market signals for trading agents.",
  price: 5,
});

// get all services
const services = await client.getServices();

// deposit USDC into private vault
await client.deposit(10);

// buy a service privately
await client.buy(service.id, service.price);

// check balance
const balance = await client.getBalance();
console.log(balance.public_balance);

// withdraw back to wallet
await client.withdraw(5);

API Reference

new CovertClient(keypair, config)

| Param | Type | Description | |-------|------|-------------| | keypair | Keypair | Solana keypair for signing transactions | | config.baseUrl | string | Your Covert instance URL | | config.cluster | "devnet" \| "mainnet" | Solana cluster (default: devnet) |

Methods

| Method | Description | |--------|-------------| | getServices() | Fetch all listed services | | listService(params) | List a new service | | getBalance() | Get public USDC balance | | deposit(amount) | Deposit USDC into private PER vault | | buy(serviceId, amount) | Buy a service privately | | withdraw(amount) | Withdraw from vault to wallet |

Privacy

All transfers are routed through MagicBlock's Private Ephemeral Rollups (PER) — a TEE-secured environment running on Intel TDX. Amounts, identities, and counterparties are shielded from the public ledger.

Keypair Management

Never hardcode private keys. Use environment variables:

# set your private key as an env variable (base58 format)
export COVERT_PRIVATE_KEY=your_base58_private_key
import { CovertClient, keypairFromEnv, keypairFromBase58, keypairFromJson } from "covert-sdk";

// from environment variable (recommended)
const keypair = keypairFromEnv();

// from base58 string
const keypair = keypairFromBase58(process.env.MY_KEY);

// from Solana CLI JSON format
const keypair = keypairFromJson([1, 2, 3, ...]);

const client = new CovertClient(keypair, {
  baseUrl: "https://your-covert-instance.com",
  cluster: "devnet",
});

Security

  • Never commit private keys to version control
  • Always use environment variables or secure key management
  • For production agents, consider using a hardware security module (HSM)

License

MIT