CosmosETHSecp256k1Verifier.fromKeyBytes constructor

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

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

Implementation

factory CosmosETHSecp256k1Verifier.fromKeyBytes(List<int> keyBytes) {
  return CosmosETHSecp256k1Verifier._(ETHVerifier.fromKeyBytes(keyBytes));
}