hbd1994Top 10 NFT Buyers
    Updated 2022-10-05
    SELECT
    count(tx_hash) as sale_count,
    sum(price_usd) as volume,
    buyer_address
    FROM optimism.core.ez_nft_sales
    where block_timestamp::date < CURRENT_DATE
    and block_timestamp::date >= '{{Start_Date}}'
    and price_usd > 0
    group by buyer_address order by volume desc limit 10
    Run a query to Download Data