UNPKG

@lit-protocol/auth-helpers

Version:

This submodule manages permissions and capabilities related to accessing specific resources on the blockchain. It utilizes features from the 'siwe' and 'siwe-recap' libraries to verify and handle data, allowing users to encode and decode session capabilit

10 lines (9 loc) 239 B
export type PlainJSON = boolean | number | string | { [key: string]: PlainJSON; } | Array<PlainJSON>; export type AttenuationsObject = { [key: string]: { [key: string]: Array<PlainJSON>; }; }; export type CID = string;