select sum(PRICE_USD) as volume ,PROJECT_NAME
from ethereum.core.ez_nft_sales
where PLATFORM_NAME= 'nftx'
and block_timestamp >= current_date -60
and PROJECT_NAME IS NOT NULL
and EVENT_TYPE = 'redeem'
group by PROJECT_NAME
order by volume desc
LIMIT 3