UNPKG

@lit-protocol/auth-browser

Version:

Browser-specific authentication utilities for the Lit Protocol, enabling seamless connection to various blockchain networks including Ethereum, Cosmos, and Solana.

26 lines (25 loc) 424 B
/** * * Get Session Key URI eg. lit:session: * * @returns { string } * */ export declare const getSessionKeyUri: ({ publicKey, }: { publicKey: string; }) => string; /** * * Parse resource * * @property { any } resource * * @returns { { protocol: string, resourceId: string } } * */ export declare const parseResource: ({ resource, }: { resource: any; }) => { protocol: any; resourceId: any; };