Mint via Social or Email/SMS (OTP)
Social
You can mint a PKP by presenting a valid OAuth token as an authentication method to the Lit Relay server. Currently, only Google OAuth tokens are supported, but we plan to support Discord in the near term.
You can mint PKPs using Google OAuth tokens by following these steps:
Installing the LitAuthClient
package
yarn add @lit-protocol/lit-auth-client
Integrating Social Login
@lit-protocol/lit-auth-client
makes it easy to implement social login in your web apps. The library provides a LitAuthClient
class that you can use to initialize a provider for each supported social login method. Each provider has a signIn()
method that you can call to begin the authentication flow.
import { LitAuthClient } from '@lit-protocol/lit-auth-client';
import { ProviderType } from '@lit-protocol/constants';
// Set up LitAuthClient
const litAuthClient = new LitAuthClient({
litRelayConfig: {
// Request a Lit Relay Server API key here: https://forms.gle/RNZYtGYTY9BcD9MEA
relayApiKey: '<Your Lit Relay Server API Key>',
},
});
// Initialize Google provider
litAuthClient.initProvider(ProviderType.Google, {
// The URL of your web app where users will be redirected after authentication
redirectUri: '<Your redirect URI>',
});
// Begin login flow with Google
async function authWithGoogle() {
const provider = litAuthClient.getProvider(
ProviderType.Google
);
await provider.signIn();
}
The Lit Relay Server enables you to mint PKPs without worrying about gas fees. You can also use your own relay server or mint PKPs directly using Lit's contracts.
If you are using Lit Relay Server, you will need to request an API key here.
Handling the Redirect
At the redirectUri
specified when initializing the providers, call handleSignInRedirect
. You can also use isSignInRedirect
method to check if the app is in the redirect state or not.
import { LitAuthClient, isSignInRedirect } from '@lit-protocol/lit-auth-client';
import { AuthMethodScope, ProviderType } from '@lit-protocol/constants';
async function handleRedirect() {
// Check if app has been redirected from Lit login server
if (isSignInRedirect(redirectUri)) {
// Get the provider that was used to sign in
const provider = provider = litAuthClient.getProvider(
ProviderType.Google,
);
// Get auth method object that has the OAuth token from redirect callback
const authMethod: AuthMethod = await provider.authenticate();
// -- setting scope for the auth method
// <https://developer.litprotocol.com/v3/sdk/wallets/auth-methods/#auth-method-scopes>
const options = {
permittedAuthMethodScopes: [[AuthMethodScope.SignAnything]],
};
// Mint PKP using the auth method
const mintTx = await provider.mintPKPThroughRelayer(
authMethod,
options
);
// Fetch PKPs associated with the authenticated social account
const pkps = await provider.fetchPKPsThroughRelayer(authMethod);
return pkps;
}
}
The provider's authenticate
method validates the URL parameters returned from Lit's login server after a successful login, and then returns an AuthMethod
object containing the OAuth token.
With the AuthMethod
object, you can mint and fetch PKPs associated with the authenticated social account. View the available methods in the API docs.
Generating SessionSigs
After successfully authenticating with a social login provider, you can generate SessionSigs
using the provider's getSessionSigs
method. The getSessionSigs
method takes in an AuthMethod
object, optional LitNodeClient
object, a PKP public key, and other session-specific arguments in SessionSigsParams
object such as resourceAbilityRequests
and chain
. View the API Docs.
// Get session signatures for the given PKP public key and auth method
const sessionSigs = await provider.getSessionSigs({
authMethod: '<AuthMethod object returned from authenticate()>',
pkpPublicKey: pkps[0].publicKey, // Note, an AuthMethod can own more than one PKP
sessionSigsParams: {
chain: 'ethereum',
resourceAbilityRequests: [{
resource: litResource,
ability: LitAbility.AccessControlConditionDecryption
}
],
},
});
Email / SMS (OTP)
You can also mint a PKP by presenting a generated token from sucessful OTP code confirmation, which will be returned by the lit-auth-client
in the AuthMethod
return from successful code confirmation.
import { LitAuthClient } from '@lit-protocol/lit-auth-client';
import { AuthMethodScope, ProviderType } from '@lit-protocol/constants';
// Set up LitAuthClient
const litAuthClient = new LitAuthClient({
litRelayConfig: {
// Request a Lit Relay Server API key here: https://forms.gle/RNZYtGYTY9BcD9MEA
relayApiKey: '<Your Lit Relay Server API Key>',
},
});
// Send one-time passcodes via email or phone number through Stytch
async function sendPasscode(method, userId) {
// method: 'email' or 'sms', userId: email or phone number
let response;
if (method === 'email') {
response = await stytchClient.otps.email.loginOrCreate(userId);
} else {
response = await stytchClient.otps.sms.loginOrCreate(
!userId.startsWith('+') ? `+${userId}` : userId
);
}
return response.method_id;
}
// Get auth method object by validating Stytch JWT and mint PKP after authenticating it
async function authenticateWithStytch(method, code, methodId) {
// method: 'email' or 'sms', code: OTP code, methodId: method_id returned from sendPasscode
// Authenticate the OTP code with Stytch
const response = await stytchClient.otps.authenticate(code, methodId, {
session_duration_minutes: 60,
});
// Initialize StytchEmailFactorOtp or StytchSmsFactorOtp provider
let provider;
if (method === "email") {
provider = litAuthClient.initProvider(ProviderType.StytchEmailFactorOtp, {
appId: YOUR_STYTCH_PROJECT_ID,
});
} else {
provider = litAuthClient.initProvider(ProviderType.StytchSmsFactorOtp, {
appId: YOUR_STYTCH_PROJECT_ID
});
}
// Get auth method object after autheticating Stytch JWT
const authMethod = await provider.authenticate({ response.session_jwt, response.user_id });
// -- setting scope for the auth method
// <https://developer.litprotocol.com/v3/sdk/wallets/auth-methods/#auth-method-scopes>
const options = {
permittedAuthMethodScopes: [[AuthMethodScope.SignAnything]],
};
// Mint PKP using the auth method
const mintTx = await provider.mintPKPThroughRelayer(
authMethod,
options
);
// Fetch PKPs associated with the authenticated social account
const pkps = await provider.fetchPKPsThroughRelayer(authMethod);
return pkps;
}
Read more about this process here.
Not finding the answer you're looking for? Share your feedback on these docs by creating an issue in our GitHub Issues and Reports repository or get support by visiting our Support page.