Type alias VerifiablePresentationCreateOptions

VerifiablePresentationCreateOptions: {
    additionalData?: Record<string, any>;
    holder: string;
    type?: string | string[];
    vcJwts: string[];
}

Options for creating a verifiable presentation.

Type declaration

  • Optional additionalData?: Record<string, any>

    Optional additional data to be included in the presentation.

  • holder: string

    The holder URI of the presentation, as a string.

  • Optional type?: string | string[]

    The type of the presentation, can be a string or an array of strings.

  • vcJwts: string[]

    The JWTs of the credentials to be included in the presentation.

Param: holder

The holder URI of the presentation, as a string.

Param: vcJwts

The JWTs of the credentials to be included in the presentation.

Param: type

Optional. The type of the presentation, can be a string or an array of strings.

Param: additionalData

Optional additional data to be included in the presentation.