intellidegentMad Boy Crew - Mint Phases
    Updated 2023-07-22
    with PrivateMint as (
    select
    nft_to_address as Minter,
    count(tx_hash) as Private_Minted

    from ethereum.core.ez_nft_mints ezm
    where ezm.nft_address = '0x2c41a1f838f74e4389392dff3d5f21b272a48a8f'
    and mint_price_eth = 0.039
    group by Minter
    order by Minter
    ),

    FreeMint as (
    select
    nft_to_address as Minter,
    count(tx_hash) as Free_Minted

    from ethereum.core.ez_nft_mints ezm
    where ezm.nft_address = '0x2c41a1f838f74e4389392dff3d5f21b272a48a8f'
    and mint_price_eth = 0
    group by Minter
    order by Minter
    ),

    PublicMint as (
    select
    nft_to_address as Minter,
    count(tx_hash) as Public_Minted

    from ethereum.core.ez_nft_mints ezm
    where ezm.nft_address = '0x2c41a1f838f74e4389392dff3d5f21b272a48a8f'
    and mint_price_eth not in (0, 0.039)
    group by Minter
    order by Minter
    ),

    Run a query to Download Data