mmdrezaTop 10 Users With most Number of Posts
    Updated 2023-06-17
    select
    distinct signer_id as users,
    count(distinct tx_hash) as post_count
    from near.social.fact_decoded_actions
    where node = 'post'
    group by 1
    order by 2 DESC
    limit 10

    Run a query to Download Data