select project_name, nft_address, sum(price_usd) as sum from ethereum.core.ez_nft_sales
where block_timestamp >= CURRENT_DATE - interval '{{number_of_months}} months'
and project_name is not null
and platform_name='sudoswap'
group by 1,2
having sum > 0
order by 3 desc
limit 5