Type alias GenericAttributeValueStatement<TagType, ValueType>

GenericAttributeValueStatement<TagType, ValueType>: {
    attributeTag: TagType;
    attributeValue: ValueType;
    type: "AttributeValue";
}

For the case where the verifier wants the user to prove that an attribute is equal to a public value. The statement is that the attribute value is equal to attributeValue.

Type Parameters

  • TagType

  • ValueType

Type declaration

  • attributeTag: TagType

    The attribute that the verifier wants the user to prove equal to a value.

  • attributeValue: ValueType

    The value the attribute must be proven equal to.

  • type: "AttributeValue"

Generated using TypeDoc