freemartianTop 10 Brush Minters ENS
Updated 2023-09-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
›
⌄
-- forked from BP Brush Mint Top Minters @ https://flipsidecrypto.xyz/edit/queries/d192ee16-8240-4e70-bbaf-e6abb4092a6b
-- forked from BP Brush Mint & Distinct Minters @ https://flipsidecrypto.xyz/edit/queries/a27f37cb-aeec-47c8-848a-aa1e68ef54f7
with minters as (
SELECT
nft_to_address as Minter,
count(tx_hash) as brush_count
from base.nft.ez_nft_transfers
where event_type = 'mint'
and nft_address = '0xd68fe5b53e7e1abeb5a4d0a6660667791f39263a'
group by Minter
order by brush_count DESC)
select Minter, ENS_NAME, brush_count
from minters m left join crosschain.ens.ez_ens e
on m.Minter = e.owner
order by brush_count DESC
Run a query to Download Data