Type alias Web3IssuerCommitmentInput

Web3IssuerCommitmentInput: {
    randomness: Record<string, string>;
    signature: string;
    signer: string;
    type: "web3Issuer";
    values: Record<string, AttributeType>;
}

Commitment input for Web3 issuer credentials containing signature and signer information.

Type declaration

  • randomness: Record<string, string>

    Randomness values used for commitments mapped by attribute name.

  • signature: string

    The credential signature.

  • signer: string

    The signer's identifier/key.

  • type: "web3Issuer"

    Identifies this as a Web3 issuer commitment input.

  • values: Record<string, AttributeType>

    Attribute values mapped by attribute name.

Generated using TypeDoc