rajsNear
    Updated 2022-11-01
    SELECT
    -- *
    -- count(distinct block_author),
    block_author,
    count(*) as block,
    sum(count(*)) over () as total,
    count(*) / sum(count(*)) over () * 100 as pct
    from near.core.fact_blocks
    group by 1
    order by 2 desc
    -- limit 3
    Run a query to Download Data