Connect Embed
Embeddable wallet component to manage logged in wallet states, view wallet balance, view assets, or buy and receive funds within an application.
Code
Preview
Embeddable wallet component to manage logged in wallet states, view wallet balance, view assets, or buy and receive funds within an application.
import { createThirdwebClient } from "thirdweb";
import { ConnectEmbed } from "thirdweb/react";
const thirdwebClient = createThirdwebClient({
clientId: "<YOUR_CLIENT_ID>",
});
function App() {
return <ConnectEmbed client={thirdwebClient} />;
}