ENS
 
ENS Subgraph Queries for ContentHash

With this query, we can get the latest ENS domains with a contenthash.

{
  contenthashChangeds(
    first: 10,
    orderBy: blockNumber,
    orderDirection: desc,
    where: {
      resolver_: {
        contentHash_not: "0x"
      }
    }
  ) {
    id
    blockNumber
    resolver {
      id
      contentHash
      domain {
        name
      }
    }
  }
}

Next things we can do:

ENS