Interface EdDSAPCDClaim

Defines the EdDSA PCD claim. The claim contains a message signed with the private key corresponding to the given public key.

interface EdDSAPCDClaim {
    message: bigint[];
    publicKey: EdDSAPublicKey;
}

Properties

Properties

message: bigint[]

A list of big integers that were signed with the corresponding private key.

publicKey: EdDSAPublicKey

An EdDSA public key corresponding to the EdDSA private key used for signing the message.

Generated using TypeDoc