DATE | BALANCE_CATEGORY | N_HOLDERS | |
---|---|---|---|
1 | 2025-04-12 00:00:00.000 | 10K-99K | 275 |
2 | 2025-02-07 00:00:00.000 | <10 | 13545 |
3 | 2025-01-22 00:00:00.000 | 100K+ | 580 |
4 | 2025-05-22 00:00:00.000 | <10 | 27052 |
5 | 2025-04-17 00:00:00.000 | <10 | 26345 |
6 | 2025-05-23 00:00:00.000 | 100K+ | 306 |
7 | 2025-05-11 00:00:00.000 | 100K+ | 305 |
8 | 2025-03-24 00:00:00.000 | 100-999 | 1414 |
9 | 2025-02-14 00:00:00.000 | 100-999 | 1141 |
10 | 2025-04-06 00:00:00.000 | 100-999 | 1380 |
11 | 2025-04-20 00:00:00.000 | <10 | 26332 |
12 | 2025-05-02 00:00:00.000 | 100-999 | 1273 |
13 | 2025-02-22 00:00:00.000 | 100-999 | 1216 |
14 | 2025-04-02 00:00:00.000 | 10-99 | 1972 |
15 | 2025-03-15 00:00:00.000 | 10-99 | 2000 |
16 | 2025-04-07 00:00:00.000 | 100-999 | 1375 |
17 | 2025-03-14 00:00:00.000 | 10-99 | 2009 |
18 | 2025-05-11 00:00:00.000 | 1K-9K | 448 |
19 | 2025-05-09 00:00:00.000 | 1K-9K | 457 |
20 | 2025-05-28 00:00:00.000 | 10K-99K | 266 |
BlockTrackerHolders Distribution Over Time
Updated 2025-04-24
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 calender as (
with dates as (
select
to_date ('2023-01-01') as date
union all
select
date + 1
from dates
where date <= current_date
)
select *
-- date_trunc('day', date) as date
from dates
)
,
users as (
SELECT
block_timestamp,
to_address as owner,
amount
FROM
avalanche.core.ez_token_transfers
where contract_address = '{{Token_Address}}'
union all
select
block_timestamp,
from_address as owner,
-amount
FROM
avalanche.core.ez_token_transfers
where contract_address = '{{Token_Address}}'
)
,
unique_holders as (
select
DISTINCT owner
Last run: about 8 hours ago
...
804
32KB
12s