purifTotal badges minted per address
Updated 2024-10-07
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
with badge_minters as (
select
distinct minter as minter,
count(badge_id) as minted_badges,
sum(amount_minted) as amount_minted
from
(
select
decoded_log ['to'] as minter,
decoded_log ['id'] as badge_id,
decoded_log ['amount'] as amount_minted
from
berachain.testnet.fact_decoded_event_logs
where
CONTRACT_ADDRESS = lower('0x886D2176D899796cD1AfFA07Eff07B9b2B80f1be')
and decoded_log ['from'] = lower('0x0000000000000000000000000000000000000000')
)
group by 1
)
select ROW_NUMBER() OVER (order by minted_badges desc) as rank, minter,minted_badges from badge_minters
order by rank
QueryRunArchived: QueryRun has been archived