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

@lexifi/sdk

v1.0.0

Published

SDK for LexiFi compliance hooks on Base — integrate KYC/AML pools with EAS attestations and ZK-proofs

Readme

@lexifi/sdk

LexiFi — Compliance-as-a-Service for DeFi on Base.

Integrate KYC/AML-gated Uniswap V4 pools using EAS attestations and zero-knowledge proofs.

Installation

npm install @lexifi/sdk

Contracts (Base Mainnet)

| Contract | Address | |---|---| | MultiProviderComplianceHook | 0x607c0334cb4d00CdE6fB6dfcf35E4D2a98865BFb | | ZKPassProvider | 0x929E5aB25B8E5F37c85dF59792FB24aDe61Cb646 |

Usage

Get deployment addresses

import { getDeployment } from "@lexifi/sdk";

const base = getDeployment(8453);
console.log(base.contracts.multiProviderComplianceHook);
// 0x607c0334cb4d00CdE6fB6dfcf35E4D2a98865BFb

console.log(base.contracts.zkPassProvider);
// 0x929E5aB25B8E5F37c85dF59792FB24aDe61Cb646

Use ABIs with viem

import { createPublicClient, http } from "viem";
import { base } from "viem/chains";
import { MultiProviderComplianceHookABI, getDeployment } from "@lexifi/sdk";

const client = createPublicClient({ chain: base, transport: http() });
const deployment = getDeployment(8453)!;

// Check a user's compliance tier
const tier = await client.readContract({
  address: deployment.contracts.multiProviderComplianceHook,
  abi: MultiProviderComplianceHookABI,
  functionName: "getComplianceTier",
  args: ["0xYourUserAddress"],
});

console.log("Compliance tier:", tier);
// 0 = NONE, 1 = BASIC, 2 = ENHANCED, 3 = INSTITUTIONAL

Check ZK proof verification

import { ZKPassProviderABI, getDeployment } from "@lexifi/sdk";

const deployment = getDeployment(8453)!;

const isVerified = await client.readContract({
  address: deployment.contracts.zkPassProvider,
  abi: ZKPassProviderABI,
  functionName: "isVerified",
  args: ["0xYourUserAddress"],
});

Compliance Tiers

| Tier | Value | Description | |---|---|---| | NONE | 0 | No compliance — pool access denied | | BASIC | 1 | Coinbase Account attestation (KYC lite) | | ENHANCED | 2 | Coinbase Country + ZKPass proof | | INSTITUTIONAL | 3 | Full institutional verification |

Architecture

  • MultiProviderComplianceHook — A Uniswap V4 hook that enforces compliance checks via beforeSwap and beforeAddLiquidity.
  • ZKPassProvider — Accepts zero-knowledge proofs from zkPass TransGate, storing verified tiers on-chain without exposing raw identity data.
  • EAS Integration — Trusts attestations from Coinbase (and other issuers) registered on Ethereum Attestation Service.

License

MIT