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

@certblockchain/sdk

v1.0.0

Published

Official JavaScript SDK for CERT Blockchain - Encrypted Attestations and CertID

Readme

CertID Sybil Resistance SDK

JavaScript SDK for CertID's Sybil Resistance API. Validate user authenticity and filter bots from your Web3 applications.

Installation

npm install @certid/sybil-sdk
# or
yarn add @certid/sybil-sdk

Quick Start

const CertIDSybil = require('@certid/sybil-sdk');

const client = new CertIDSybil('YOUR_API_KEY');

// Check a single address
const result = await client.check('cert1abc...');
console.log(`Trust Score: ${result.trust_score}`);
console.log(`Is Human: ${result.is_likely_human}`);

Features

Single Address Check

const result = await client.check('cert1abc...');
// Returns: { address, trust_score, is_likely_human, factors, checked_at }

Batch Check

const results = await client.batchCheck(['cert1abc...', 'cert1xyz...'], 60);
// Returns: { results: [...], summary: { total, likely_real, suspicious } }

Filter Real Users

const addresses = ['cert1abc...', 'cert1xyz...', 'cert1def...'];
const realUsers = await client.filterReal(addresses, 50);
// Returns only addresses with trust_score >= 50

Filter Suspicious Accounts

const suspicious = await client.filterSuspicious(addresses, 30);
// Returns only addresses with trust_score < 30

Get Detailed Factors

const factors = await client.getDetailedFactors('cert1abc...');
// Returns: { kyc_verified, social_verifications, onchain_activity, account_age_months, staked_amount, attestations_received }

Trust Score Factors

| Factor | Max Points | Description | |--------|------------|-------------| | KYC Verification | 30 | Completed identity verification | | Social Accounts | 40 | 10 pts per verified platform | | On-Chain Activity | 20 | 5 pts per transaction | | Account Age | 10 | 1 pt per month | | Staked Amount | 20 | 0.01 pts per CERT staked | | Attestations | 20 | 2 pts per attestation received |

Total Maximum Score: 100

Use Cases

Airdrop Protection

const eligible = await client.filterReal(airdropAddresses, 60);
// Only airdrop to addresses with 60+ trust score

Governance Gating

const result = await client.check(voterAddress);
if (result.trust_score >= 70 && result.factors.kyc_verified) {
  allowVote();
}

NFT Minting

const result = await client.check(minterAddress);
if (result.is_likely_human) {
  allowMint(1); // Limit mints for verified humans
}

API Reference

Constructor

new CertIDSybil(apiKey, options)
  • apiKey (string): Your CertID API key
  • options.baseUrl (string): Custom API URL (default: https://api.c3rt.org/api/v1)
  • options.timeout (number): Request timeout in ms (default: 10000)

Methods

| Method | Parameters | Returns | |--------|------------|---------| | check(address) | address: string | SybilCheckResponse | | batchCheck(addresses, threshold?) | addresses: string[], threshold?: number | BatchCheckResponse | | filterReal(addresses, minScore?) | addresses: string[], minScore?: number | string[] | | filterSuspicious(addresses, maxScore?) | addresses: string[], maxScore?: number | string[] | | getDetailedFactors(address) | address: string | TrustFactors |

Pricing

| Tier | Monthly | Requests/Day | Support | |------|---------|--------------|---------| | Free | $0 | 100 | Community | | Developer | $49 | 10,000 | Email | | Enterprise | $499 | 1,000,000 | Priority |

Get your API key at c3rt.org/api-dashboard

Links

License

MIT