export function isValidHexKey(key: string): boolean {
  return /^[0-9a-f]+$/i.test(key);
}
