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

@3rdweb/hooks

v1.9.2

Published

<br>

Downloads

456

Readme

Thirdweb Hooks

Introduction

Welcome to the Thirdweb ReactnHooks Library. This package provides you with extensible react hooks to handle the web3 side of your app.

We simplify the process of integrating web3 into your apps while making sure that you still have all the control you would using other lower level web3 frontend libraries.

Our main features are:

Getting Started

To get started with using our hooks, you just need to setup the ThirdwebWeb3Provider that provides all the context consumed by your app.

Setting up this context is as easy as wrapping your app with the following setup:

import { ThirdwebWeb3Provider } from "@3rdweb/hooks";

const App = ({ children }) => {
  // Put the ethereum chain ids of the chains you want to support
  const supportedChainIds = [1, 4, 137];

  /**
   * Include the connectors you want to support
   * injected - MetaMask
   * magic - Magic Link
   * walletconnect - Wallet Connect
   * walletlink - Coinbase Wallet
   */
  const connectors = {
    injected: {},
    magic: {
      apiKey: "pk_...", // Your magic api key
      chainId: 1, // The chain ID you want to allow on magic
    },
    walletconnect: {},
    walletlink: {
      appName: "thirdweb - demo",
      url: "https://thirdweb.com",
      darkMode: false,
    },
  };

  /**
   * Make sure that your app is wrapped with these contexts.
   * If you're using Next JS, you'll have to replace children with the Component setup
   */
  return (
    <ThirdwebWeb3Provider 
      supportedChainIds={supportedChainIds}
      connectors={connectors}
    >
      {children}
    </ThirdwebWeb3Provider>
  );
};

Use Custom Hooks

You can build your own connect wallet button with our useWeb3 and useSwitchNetwork hooks.

You can see how these hooks are used in the following example.

import React, { useState } from "react"
import { useWeb3, useSwitchNetwork } from "@3rdweb/hooks"

const supportedChainIds = [1, 4, 137];

const CustomConnect = () => {
  const { address, chainId, connectWallet, disconnectWallet, getNetworkMetadata } = useWeb3();
  const { switchNetwork } = useSwitchNetwork();
  const [email, setEmail] = useState("");

  return (
    <>
      Address: {address}
      <br />
      Chain ID: {chainId}
      <br />

      {address && (
        <button onClick={disconnectWallet}>
          Disconnect
        </button>
      )}

      <p>Switch Network</p>
      {supportChainIds.map((cId) => (
        <button onClick={() => switchNetwork(cId)}>
          {getNetworkMetadata(cId).chainName}
        </button>
      ))}

      <input value={email} onChange={e => setEmail(e.target.value)} />
      <button
        onClick={() => connectWallet("magic", {
          email
        })}
      >
        Connect Magic Link
      </button>

      <button onClick={() => connectWallet("injected")}>
        Connect MetaMask
      </button>
      <button onClick={() => connectWallet("walletconnect")}>
        Connect Wallet Connect
      </button>
      <button onClick={() => connectWallet("walletlink")}>
        Connect Coinbase Wallet
      </button>
    <>
  )
}

For a fully functional setup using our custom hooks, you can checkout our NextJS example hooks page.

Access Web3 Setup

After you setup wallet connection with the above method, accessing your connected web3 provider and its related info is as easy as the following:

import React from "react";
import { useWeb3 } from "@3rdweb/react";

const Component = () => {
  // You can do whatever you want with this data
  const { address, chainId, provider } = useWeb3();

  return (
    <div>
      Address: {address}
      <br />
      Chain ID: {chainId}
    </div>
  );
};