MCPcopy Create free account
hub / github.com/Web3Auth/Auth / AuthSessionData

Interface AuthSessionData

src/utils/interfaces.ts:338–353  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

336export type KeyMode = "v1" | "1/1" | "2/n";
337
338export interface AuthSessionData {
339 privKey?: string;
340 coreKitKey?: string;
341 ed25519PrivKey?: string;
342 coreKitEd25519PrivKey?: string;
343 sessionId?: string;
344 oAuthPrivateKey?: string;
345 tKey?: string;
346 walletKey?: string;
347 userInfo?: AuthUserInfo;
348 keyMode?: KeyMode;
349 metadataNonce?: string;
350 authToken?: string;
351 signatures?: string[];
352 useCoreKitKey?: boolean;
353}
354
355export const MFA_FACTOR = {
356 DEVICE: "deviceShareFactor",

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected