Once connected, you can interact with the wallet using the thirdweb/wallets/inApp specific methods.
thirdweb/wallets/inApp
import { getUserEmail } from "thirdweb/wallets/in-app"; const email = await getUserEmail({ client });console.log("user email", email);
import { useActiveAccount } from "thirdweb/react"; const account = useActiveAccount();
import { useActiveAccount } from "thirdweb/react"; const account = useActiveAccount();console.log("wallet address", account.address);
await getWalletBalance({ client, chain, address: account.address,});
await inAppWallet.sign("Hello World!");