Interface VerifyEd25519SignatureArgs

Arguments required to verify an Ed25519 signature against a given message.

The message to be verified, represented in hexadecimal format.

The Ed25519 signature to validate.

interface VerifyEd25519SignatureArgs {
    message: HexInput;
    signature: Ed25519Signature;
}

Properties

Properties

message: HexInput
signature: Ed25519Signature