tvemulapAzuki Minters by # Minted
Updated 2023-04-17
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
WITH azuki_mint AS
(
select nft_to_address, count(nft_count)
as num_minted from ethereum.core.ez_nft_mints
where nft_count > 0
and nft_count is not null
and nft_address = lower('0xED5AF388653567Af2F388E6224dC7C4b3241C544')
and mint_price_eth > 0
GROUP BY nft_to_address
ORDER BY count(nft_count) DESC
)
SELECT num_minted as "# Minted", count(*) as "# of Minters" FROM azuki_mint
GROUP BY num_minted
ORDER BY num_minted ASC
Run a query to Download Data