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

@jjjjacobx/deposit-widget

v0.7.2

Published

Drop-in deposit widget for Monad — QR deposits via Relay + wallet connect via Blink

Readme

@blink-testing/deposit-widget

Drop-in deposit widget for Monad. Users deposit from any chain/token via QR code (Relay) or Connect Wallet (Blink) and receive MON on Monad (chain 143).

Install

npm install @blink-testing/deposit-widget

Quick Start — Vanilla JS

import { DepositWidget } from "@blink-testing/deposit-widget";

const widget = new DepositWidget({
  recipient: "0x...userEmbeddedWallet...",
  signer: "/api/sign-payment",
});

widget.on("complete", (result) => {
  console.log("Deposit complete:", result.type, result.transferId);
});

widget.on("close", () => {
  console.log("Widget closed");
});

// Open the widget (renders in a modal overlay)
widget.open();

Quick Start — React

import { useDepositWidget } from "@blink-testing/deposit-widget/react";

function DepositButton({ walletAddress }: { walletAddress: string }) {
  const { open, status, result } = useDepositWidget({
    recipient: walletAddress,
    signer: "/api/sign-payment",
  });

  return (
    <>
      <button onClick={open} disabled={status === "open"}>
        Deposit
      </button>
      {result && <p>Transfer complete!</p>}
    </>
  );
}

Configuration

| Option | Type | Default | Description | |--------|------|---------|-------------| | recipient | string | required | User's wallet address on Monad (receives MON) | | signer | string | required | Your Blink signer endpoint URL | | amount | number | 50 | Default USD amount for Blink wallet-connect flow | | chainId | number | 143 | Destination chain ID | | token | string | 0x000...0 | Destination token (native MON) | | widgetUrl | string | unpkg CDN | URL where the widget iframe bundle is hosted | | assetsUrl | string | auto | Base URL for logos/icons | | container | HTMLElement | document.body | Where to mount the overlay | | debug | boolean | false | Enable console logging |

Events

| Event | Data | Description | |-------|------|-------------| | open | — | Widget opened | | close | — | Widget closed | | complete | { type, transferId?, elapsedSeconds? } | Deposit succeeded | | error | { message, code? } | Something failed |

Prerequisites

The Connect Wallet / Sign in with Blink flow requires:

  1. An ECDSA P-256 key pair registered with Blink
  2. A server-side signer endpoint (/api/sign-payment)
  3. A merchantId from Blink

See SDK_INTEGRATION.md for the full setup guide including signer implementation, key generation, and an AI-friendly setup prompt.

License

MIT