SELECT
nft_address,
IFNULL( project_name , 'unammed_project' ) as project_name,
round(sum(price_usd),0) as Total_Sales_Volume
from ethereum.core.ez_nft_sales
where lower(platform_name) = 'nftx'
and event_type = 'redeem'
and date_trunc('day', block_timestamp) > CURRENT_DATE - 60
group by 1,2
order by 3
DESC
limit 3