SubstrateEcdsaVerifier.fromKeyBytes constructor

SubstrateEcdsaVerifier.fromKeyBytes(
  1. List<int> keyBytes
)

Factory method to create an ETHVerifier from a byte representation of a public key.

Implementation

factory SubstrateEcdsaVerifier.fromKeyBytes(List<int> keyBytes) {
  final point = ProjectiveECCPoint.fromBytes(
      curve: ETHSignerConst.secp256.curve, data: keyBytes, order: null);
  final verifyingKey = ECDSAPublicKey(ETHSignerConst.secp256, point);
  return SubstrateEcdsaVerifier._(ECDSAVerifyKey(verifyingKey));
}