Type alias RequestCredentialsOptions

RequestCredentialsOptions: {
    challenge?: string;
    credentialQuery: CredentialQuery[];
    openid4vpConfiguration?: OpenIdvpConfiguration;
}

Options for the requestCredentials function.

Type declaration

  • Optional challenge?: string

    An optional unique challenge allowing association and verification of a specific session.

    If not provided a generated challenge will be created.

    Example

    MATTRVerifierSDK.utils.generateChallenge()
    
  • credentialQuery: CredentialQuery[]

    An array of CredentialQuery objects that specify the credentials to be requested.

  • Optional openid4vpConfiguration?: OpenIdvpConfiguration

    Optional configuration for openid4vp presentation flow

Generated using TypeDoc