HooksuseAuthOn this pageuseAuthUsing this hook, you can check whether you are connected to the wallet.Usageimport { useAuth } from "ethylene/hooks";function App() { const auth = useAuth(); return ( ... );}APItype ReturnType = boolean;