check if bytes is valid for this key.
static bool isValidBytes(List<int> keyBytes) { try { Secp256k1PublicKeyEcdsa.fromBytes(keyBytes); return true; } catch (e) { return false; } }