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

Function generateRecordId

src/utils/utils.ts:35–39  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

33}
34
35export function generateRecordId(): string {
36 const cr = typeof globalThis === "object" ? globalThis.crypto : null;
37 if (typeof cr?.randomUUID !== "function") throw new Error("crypto.randomUUID must be defined");
38 return cr.randomUUID();
39}

Callers 2

manageMFAMethod · 0.90
authHandlerMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected