oooooblahUntitled Query
    Updated 2022-09-17
    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
    Run a query to Download Data