toVerifyKey method

SubstrateED25519Verifier toVerifyKey()

Returns an SubstrateED25519Signer instance based on the available signing key type.

This method constructs and returns an SubstrateED25519Verifier instance for signature verification.

returns An SubstrateED25519Verifier instance based on the available signing key type.

Implementation

SubstrateED25519Verifier toVerifyKey() {
  final keyBytes = _signer.toVerifyKey();
  return SubstrateED25519Verifier._(keyBytes);
}