Skip to main content
type AuthMethod = 
  | typeof AUTH_METHODS[number]
  | `oauth:${OAuth2ProviderType}`
  | `siwe:${SiweProviderType}`;
The auth method type. Includes built-in methods ("email", "sms"), OAuth providers (e.g. "oauth:google"), and SIWE providers (e.g. "siwe:base"). See Sign in with Base for SIWE integration guidance.