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

solnet-sdk

v1.2.2

Published

High-availability decentralized RPC infrastructure for Solana. Resilient, verified, and community-owned edge routing protocol.

Readme

solnet-sdk

High-availability decentralized RPC infrastructure for the Solana network. Optimizes request routing, minimizes latency through edge-caching, and provides resilient access to blockchain state via a community-owned mesh protocol.

npm version License: MIT

Integration Guide

npm install solnet-sdk
// BEFORE — one company controls your uptime
import { Connection } from '@solana/web3.js'
const connection = new Connection(
  'https://api.mainnet-beta.solana.com'
)

// AFTER — decentralized mesh, zero single point of failure
import { SolnetConnection } from 'solnet-sdk'
const connection = new SolnetConnection()

// Everything else stays identical. Zero code changes.
const balance = await connection.getBalance(publicKey)
const slot = await connection.getSlot()
const tx = await connection.sendTransaction(transaction)

Why SOLNET?

Today every Solana app secretly routes through 2-3 centralized companies. If they go down, your app goes down. SOLNET replaces them with a self-healing P2P mesh where thousands of independent nodes route your traffic and earn SOL for doing it.

| | Standard RPC | SOLNET | |---|---|---| | Single point of failure | YES | NO | | Monthly cost | $500+ | ~$350 | | Censorship resistant | NO | YES | | Response verification | NO | YES | | Privacy mode | NO | YES | | Open source | NO | YES |

Advanced Configuration

import { SolnetConnection } from 'solnet-sdk'

const connection = new SolnetConnection({
  // Your node or the public SOLNET network
  endpoint: 'https://solnet-production.up.railway.app',
  
  // Auto-fallback if SOLNET unreachable (silent)
  fallback: 'https://api.mainnet-beta.solana.com',
  
  // Request timeout
  timeoutMs: 8000,
  
  // Onion routing — hides your IP from node operators
  privacy: true,
  
  // Merkle proof verification on every response
  verify: true,
  
  // Called when falling back to standard RPC
  onFallback: (reason) => {
    console.warn('SOLNET fallback:', reason)
  },
  
  // Called on every cryptographically verified response
  onVerified: (proof) => {
    console.log('Verified at slot:', proof.slot)
  },

  // Client Telemetry Routing (Enterprise Feature)
  // Route underlying network telemetry to your own observability stack
  telemetryEndpoint: 'https://metrics.your-enterprise.com/ingest',
})

Node Stats

// Check your node earnings and uptime
const stats = await connection.getNodeStats()
console.log(`Earned: ${stats.earningsSol} SOL`)
console.log(`Requests: ${stats.requestsServed}`)
console.log(`Uptime: ${stats.uptimeSeconds}s`)

// Session analytics
const session = connection.getSessionStats()
console.log(`Reliability: ${session.reliability}`)

Run Your Own Node

Earn SOL by running a SOLNET node on any device:

git clone https://github.com/Zach-al/solana-nervous-system
cd solana-nervous-system/sns-daemon
cargo run --release

Your device joins the mesh and starts earning SOL automatically for every request it routes.

Privacy & Telemetry

solnet-sdk sends anonymous performance metrics:

  • Request success/failure counts
  • Hole punch success rates
  • Latency percentiles
  • SDK version

No IP addresses. No wallet addresses. No PII. Ever.

Opt out at any time: // Node.js process.env.SOLNET_NO_TELEMETRY = 'true'

// Browser localStorage.setItem('SOLNET_NO_TELEMETRY', 'true')

Links

  • GitHub: https://github.com/Zach-al/solana-nervous-system
  • Dashboard: https://solnet.vercel.app
  • Node: https://solnet-production.up.railway.app/health

License

MIT — © 2026 SOLNET Enterprise. All rights reserved.