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

@fairdatasociety/fds-id

v0.1.1

Published

FDS Identity - Decentralized identity management for Ethereum

Readme

FDS ID TypeScript

TypeScript implementation of FDS Identity Specification.

Features

  • Wallet: secp256k1 key management with EIP-55 checksummed addresses
  • Keystore: Web3 Secret Storage v3 format (MetaMask compatible)
  • HD Wallet: BIP-39/32/44 hierarchical deterministic wallets
  • Signing: EIP-191 personal_sign and EIP-712 typed data
  • SIWE: Sign-In with Ethereum (EIP-4361)
  • BYOENS: Bring Your Own ENS support
  • Swarm Backup: Encrypted backup storage on Swarm

Installation

npm install @fairdatasociety/fds-id

Quick Start

import { Wallet, HDWallet, Keystore, createSIWEMessage, verifySIWE } from '@fairdatasociety/fds-id'

// Create a new wallet
const wallet = Wallet.create()
console.log(wallet.address) // 0x...

// Create HD wallet from mnemonic
const hdWallet = HDWallet.create({ wordCount: 24 })
console.log(hdWallet.mnemonic) // 24 words

// Derive accounts
const account0 = hdWallet.deriveAccount(0)
const account1 = hdWallet.deriveAccount(1)

// Encrypt to keystore
const keystore = await Keystore.encrypt(wallet, 'password')

// Decrypt from keystore
const decryptedWallet = await Keystore.decrypt(keystore, 'password')

// Sign a message
const signature = wallet.signMessage('Hello, Ethereum!')

// SIWE authentication
const siweMessage = createSIWEMessage(
  { domain: 'example.com', uri: 'https://example.com' },
  wallet.address
)
const siweSignature = wallet.signMessage(formatSIWEMessage(siweMessage))
const result = verifySIWE(formatSIWEMessage(siweMessage), siweSignature)

Supported Standards

| Standard | Description | Status | |----------|-------------|--------| | EIP-55 | Mixed-case checksum addresses | ✅ | | EIP-191 | Personal message signing | ✅ | | EIP-712 | Typed structured data signing | ✅ | | EIP-1193 | Ethereum Provider API | ✅ Types | | EIP-1271 | Contract signature validation | 🔄 Planned | | EIP-4361 | Sign-In with Ethereum (SIWE) | ✅ | | EIP-6963 | Multi Injected Provider Discovery | ✅ Types | | BIP-39 | Mnemonic code | ✅ | | BIP-32 | HD Wallets | ✅ | | BIP-44 | Multi-Account Hierarchy | ✅ | | Web3 v3 | Secret Storage Definition | ✅ |

Security

  • Uses audited cryptographic libraries (@noble/, @scure/)
  • Constant-time MAC comparison
  • scrypt with N=131072 (Ethereum standard)
  • AES-256-GCM for Swarm backups

Related Projects

License

Apache-2.0