mattkstewQuixotic NFT Dashboard 4
    Updated 2022-08-03
    select
    project_name,
    count(*)


    from optimism.core.ez_nft_sales left outer join optimism.core.dim_labels
    on address = nft_address
    where price_usd is not null
    and project_name is not null
    group by 1
    Order by 2 DESC
    limit 10
    Run a query to Download Data