Auth
A developer SDK that lets you integrate passwordless web3-native authentication and authorization into your applications.
Learn more about AuthIntegrate into your app
import { ThirdwebSDK } from "@thirdweb-dev/sdk";
const sdk = new ThirdwebSDK("goerli");
// Login with a single line of codeconst payload = await sdk.auth.login();
// And verify the address of the logged in walletconst address = await sdk.auth.verify(payload);