If I sign in with an external wallet, how can I disconnect it during sign out? I’m using await web3auth.logout({ cleanup: true })
but the wallet connection still exists.
hi @felipe ,
did you set the provider to null ? This is what we are usign is our examples.
await web3auth.logout();
setProvider(null);
setLoggedIn(false);
Yes, but that doesn’t really disconnect the wallet. If I check the MetaMask extension (or any wallet that I signed-in with WalletConnect), the connection is still there.
Yeah it works the same way. Was just trying to see if that’s possible. Thanks
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.