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

@kadena/wallet-adapter-metamask-snap

v0.2.0

Published

This package provides an adapter for the **MetaMask Snap for Kadena**. It extends a base adapter but uses the `"kda_"` RPC prefix defined by the Snap (matching Ecko Wallet's prefix for compatibility).

Readme

MetaMask Snaps Wallet Adapter

This package provides an adapter for the MetaMask Snap for Kadena. It extends a base adapter but uses the "kda_" RPC prefix defined by the Snap (matching Ecko Wallet's prefix for compatibility).

Installation

npm install @kadena/wallet-adapter-metamask-snap
# or
yarn add @kadena/wallet-adapter-metamask-snap
# or
pnpm add @kadena/wallet-adapter-metamask-snap

Manual Usage: Detection and Connect

If you need lower-level access, the following are also exported:

  • SnapAdapter: The actual adapter class, in case you want to instantiate it manually without relying on the lazy-loading factory.
  • detectSnapProvider: A standalone function that checks whether the MetaMask provider is present. It returns the provider if found, or null otherwise. Snap installation/enablement is handled during connect().
import {
  SnapAdapter,
  detectSnapProvider,
} from '@kadena/wallet-adapter-metamask-snap';

(async () => {
  const provider = await detectSnapProvider({ silent: true });
  if (!provider) {
    console.log('MetaMask not detected.');
    return;
  }
  const adapter = new SnapAdapter({ provider });
  await adapter.connect();
  console.log('Connected to MetaMask Snap directly!');
})();

Detection Behavior

  • Detection is non-invasive. It only checks for the injected MetaMask provider on window.ethereum and does not call wallet_getSnaps or other RPCs.
  • Any required prompts (unlocking MetaMask, installing/enabling the Kadena Snap) occur during adapter.connect().

Other Notes

  • The adapter internally calls kda_connect, kda_requestSign, kda_disconnect, etc., using the "kda_" RPC prefix required by the Snap.
  • If you support multiple wallets in your app, the lazy import in snapAdapterFactory helps reduce initial bundle size.
  • Ensure the user has MetaMask installed. The Kadena Snap will be installed or enabled during connect if needed.