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

@bootnodedev/dme-onboarding-modal

v0.0.3

Published

A React component for seamless user onboarding to Telegram bot notifications, part of the [DMe Framework](https://github.com/BootNodeDev/dme-monorepo). This component provides a user-friendly interface that allows users to subscribe to wallet notification

Readme

DMe Onboarding Modal Component

A React component for seamless user onboarding to Telegram bot notifications, part of the DMe Framework. This component provides a user-friendly interface that allows users to subscribe to wallet notifications on Telegram with a single click or QR scan, without requiring wallet connection.

Installation

npm install @bootnodedev/dme-onboarding-modal

Usage

1. Import the Component and Styles

In your main app file (e.g., App.tsx or index.tsx), import the component's styles:

import "@bootnodedev/dme-onboarding-modal/lib/index.css";

2. Use the Component in Your React App

import { Button } from "@bootnodedev/dme-onboarding-modal";

function Navbar() {
  return (
    <nav>
      <Button
        modal={{
          bot: "MyBot",
          address: "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
          title: "Stay Updated",
          description: "Scan the QR code or click the button below to get started.",
          cta: "Open Telegram",
        }}
      />
    </nav>
  );
}

3. Get the Wallet Address

The wallet address can be obtained from your dApp's Web3 provider, such as MetaMask or WalletConnect:

import { Button } from "@bootnodedev/dme-onboarding-modal";
import { useAccount } from "wagmi"; // or your Web3 library

function Navbar() {
  const { address } = useAccount();

  return (
    <nav>
      {address && (
        <Button
          modal={{
            bot: "MyBot",
            address,
            title: "Stay Updated",
            description: "Scan the QR code or click the button below to get started.",
            cta: "Open Telegram",
          }}
        />
      )}
    </nav>
  );
}

How It Works

When clicked, the component opens a modal dialog that displays:

  1. QR Code: Users can scan with their mobile device to instantly open the Telegram bot and link their wallet
  2. Direct Link: Alternative option to open Telegram directly in the browser

The modal generates a deep link to your Telegram bot with the wallet address as a start parameter, enabling seamless onboarding in a single action.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Part of DMe Framework

This component is part of the DMe Framework, a complete solution for building Telegram bot notification systems for Web3 applications.