@lit-protocol/vincent-sdk - v0.0.5
    Preparing search index...

    Interface VincentJWTPayload

    Extended payload interface for Vincent-specific JWTs.

    VincentJWTPayload

    interface VincentJWTPayload {
        aud?: string | string[];
        exp?: number;
        iat?: number;
        iss?: string;
        nbf?: number;
        pkpAddress: string;
        pkpPublicKey: string;
        rexp?: number;
        sub?: string;
        [x: string]: any;
    }

    Hierarchy

    Indexable

    • [x: string]: any
    Index

    Properties

    aud?: string | string[]
    exp?: number
    iat?: number
    iss?: string
    nbf?: number
    pkpAddress: string

    The public Ethereum address of the PKP.

    pkpPublicKey: string

    The public key of the PKP associated with the JWT.

    rexp?: number
    sub?: string