verifyScript method
Verifies the signature for the provided digest using the available key.
Implementation
bool verifyScript(List<int> signature, MerlinTranscript signingScript) {
return _verifier.verify(
SchnorrkelSignature.fromBytes(signature),
signingScript,
);
}