toVerifyKey method
Converts the Secp256k1Signer to a Secp256k1Verifier for verification purposes.
Returns:
- A Secp256k1Verifier representing the verification key.
Implementation
Secp256k1Verifier toVerifyKey() {
return Secp256k1Verifier.fromKeyBytes(
_ecdsaSigningKey.privateKey.publicKey.toBytes());
}