useWalletHook to get the instance of the currently connected wallet.import { useWallet } from "@thirdweb-dev/react";Usageimport { useWallet } from "@thirdweb-dev/react";function App() { const walletInstance = useWallet();}Return ValuewalletInstanceReturns a walletInstance of type WalletInstance , or undefined if no wallet is connected.Learn more about wallets.WalletInstance | undefined;