select
case when nft_address = '0x7bd29408f11d2bfc23c34f18275bbf23bb716bc7' then 'Meebits'
end as Top_Sales
,price_usd
from ethereum.core.ez_nft_sales
where price_usd is not null
and block_timestamp between '2022-01-01' and '2023-01-01'
group by 1, 2
order by 2 desc
limit 10