intellidegentMad Boy Crew - Mint Phases
Updated 2023-07-22
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
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