Connect Button

This is the main button to connect your dapp with your wallet. This component is responsible for rendering Connect button when not connected and rendering the connected address, its balance (on that chain) and Disconnect Button if connected.

Usage

"use client";
import { ConnectButton } from "@nazeeh2000/comp-kit";

export default function Home() {
  return (
    <>
      <ConnectButton />
    </>
  );
}

Note: Make sure your app is wrapped with the necessary provider KitProvider.

Last updated