Updated 2022-10-19
    select
    PROJECT_NAME AS collection,
    min(PRICE) AS flore_price
    from optimism.core.ez_nft_sales inner join optimism.core.dim_labels on nft_address=address
    where BLOCK_TIMESTAMP >= '2022-01-01'
    and currency_symbol = 'ETH'
    group by 1 order by 2 desc
    limit 50
    Run a query to Download Data