useTrustWallet
Hook that prompts users to connect their Trust wallet to your app.
import { useTrustWallet } from "@thirdweb-dev/react";
The trustWallet also needs to be added in ThirdwebProvider's supportedWallets if you want the wallet to auto-connect on next page load.
Usage
Call the function returned by the useTrustWallet
hook to prompt the user to connect their Trust wallet to your dApp.
You can then use the useAddress
hook to get the user's address.
import { useTrustWallet } from "@thirdweb-dev/react";
function App() {
const connectWithTrust = useTrustWallet();
return <button onClick={() => connectWithTrust()}>Connect Trust</button>;
}