bachiNFT project which had the largest mint by dollar
    Updated 2023-01-05
    select
    project_name,
    sum(mint_price_usd) as Total_Volume
    from
    ethereum.core.ez_nft_mints
    where
    block_timestamp > '2022-01-01'
    and mint_price_usd is not null
    and project_name is not null
    and project_name not like 'uniswap'
    and project_name not like '%curve%'
    group by
    1
    order by
    2 desc
    limit
    15
    Run a query to Download Data