boomer77current holder count
Updated 2023-04-05
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
›
⌄
with raw as (
SELECT
nft_from_address as address,
'-1' as flow
FROM polygon.core.ez_nft_transfers
where nft_address = lower('0x09421f533497331e1075fdca2a16e9ce3f52312b')
union all
select
nft_to_address as address,
'1' as flow
FROM polygon.core.ez_nft_transfers
where nft_address = lower('0x09421f533497331e1075fdca2a16e9ce3f52312b')
),
last as (select
address ,
sum(flow) as holdings
from raw
group by address
having holdings > 0
order by 2 desc)
select count (distinct address) as currentholder, sum(holdings) as totalNFT
from last
Run a query to Download Data