Type alias AccountCommitmentInput

AccountCommitmentInput: {
    issuer: number;
    randomness: Record<string, string>;
    type: "account";
    values: Record<string, string>;
}

Commitment input for account credentials containing issuer and attribute information.

Type declaration

  • issuer: number

    The identity provider index that issued the credential.

  • randomness: Record<string, string>

    Randomness values used for commitments mapped by attribute name.

  • type: "account"

    Identifies this as an account commitment input.

  • values: Record<string, string>

    Attribute values mapped by attribute name.

Generated using TypeDoc