thirdwebPlayground
Wallets

Connect Embed

Embeddable wallet component to manage logged in wallet states, view wallet balance, view assets, or buy and receive funds within an application.

Documentation
Code
import { createThirdwebClient } from "thirdweb";
import { ConnectEmbed } from "thirdweb/react";

const thirdwebClient = createThirdwebClient({
  clientId: "<YOUR_CLIENT_ID>",
});

function App() {
  return <ConnectEmbed client={thirdwebClient} />;
}
Preview