toVerifyKey method

Secp256k1Verifier toVerifyKey()

Converts the Secp256k1Signer to a Secp256k1Verifier for verification purposes.

Returns:

Implementation

Secp256k1Verifier toVerifyKey() {
  return Secp256k1Verifier.fromKeyBytes(
      _ecdsaSigningKey.privateKey.publicKey.toBytes());
}