select date(block_timestamp),
min(price),
project_name
from ethereum.core.ez_nft_sales
where (nft_address = lower('0x306b1ea3ecdf94aB739F1910bbda052Ed4A9f949') and price > 0.2)
or (nft_address = lower('0xED5AF388653567Af2F388E6224dC7C4b3241C544') and price > 0.5)
group by project_name, date(block_timestamp)
order by date(block_timestamp) desc