Returns the wallet info for the provided wallet id.
import { useWalletInfo } from "thirdweb/react"; const { data: walletInfo } = useWalletInfo("io.metamask");console.log("Walelt name", walletInfo?.name);
function useWalletInfo( id: undefined | WalletId,): UseQueryResult<WalletInfo, Error>;
let id: undefined | WalletId;
let returnType: UseQueryResult<WalletInfo, Error>;