SELECT SUM(price) AS total_sale,
season
FROM flow.core.fact_nft_sales JOIN flow.core.dim_topshot_metadata
using (nft_id)
WHERE nft_collection = 'A.0b2a3299cc857e29.TopShot'
AND currency= 'A.ead892083b3e2c6c.DapperUtilityCoin'
group by season
order by total_sale desc