Interface VerifySingleKeySignatureArgs

Arguments required to verify a single key signature for a given message.

The message to be verified, represented in hexadecimal format.

The signature that corresponds to the message.

interface VerifySingleKeySignatureArgs {
    message: HexInput;
    signature: AnySignature;
}

Properties

Properties

message: HexInput
signature: AnySignature