freemartianTop Holders
Updated 2023-09-17
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 mints1 as (
select * from base.core.ez_nft_transfers
where nft_address in (
'0x0c664a85521d5721bca047d29238d9e2a9e9e861')
and event_type = 'mint'),
mints2 as (
select * from base.core.ez_nft_transfers
where nft_address in (
'0x33ed5107f821bb1465da30b7dce4fb7105b0ad16')
and event_type = 'mint'),
mints3 as (
select * from base.core.ez_nft_transfers
where nft_address in (
'0x8b2937ead425ccc91fc0ad884638dc2129c51cb2')
and event_type = 'mint')
select
'Minted Paradise & Originator' as Position,
count(distinct mints1.nft_to_address) as minters
from mints1 inner join mints2 on mints1.nft_to_address = mints2.nft_to_address
UNION
select
'Minted Paradise & ICH R U' as Position,
count(distinct mints1.nft_to_address) as minters
from mints1 inner join mints3 on mints1.nft_to_address = mints3.nft_to_address
UNION
select
'Minted Originator & ICH R U' as Position,
Run a query to Download Data