@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
5 lines (4 loc) • 326 B
TypeScript
import { AuthSig, PaymentDelegationAuthSigParams, PaymentDelegationScope } from '@lit-protocol/types';
declare const PAYMENT_DELEGATION_SCOPES: Set<PaymentDelegationScope>;
export declare const createPaymentDelegationAuthSig: (params: PaymentDelegationAuthSigParams) => Promise<AuthSig>;
export { PAYMENT_DELEGATION_SCOPES };