msafadoostUntitled Query
    Updated 2022-07-03
    select BUYER_ADDRESS,
    COUNT(BUYER_ADDRESS)
    FROM ethereum.core.ez_nft_sales
    where BLOCK_TIMESTAMP >= '2022-01-01'
    group by 1
    order by 2 desc
    limit 1000
    Run a query to Download Data