erenTOP 10 BLOCK MINERS THAT MINED MOST
    Updated 2022-09-10
    select MINER,
    count(distinct block_number) as COUNTER
    from ethereum.core.fact_blocks
    group by 1
    order by 2 desc
    limit 10



    Run a query to Download Data