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