HOLDERS | TOTAL_VOLUME | AVERAGE_BALANCE | MEDIAN_BALANCE | AVERAGE_BALANCE_USD | TOTAL_VOLUME_USD | MEDIAN_BALANCE_USD | |
---|---|---|---|---|---|---|---|
1 | 16260 | 247742362.229303 | 15236.307640179 | 37.45005 | 125.959926529 | 2048108.40536225 | 0.3096029339 |
Afonso_DiazTotal
Updated 2025-03-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
pricet as (
select
price as token_price_usd
from
avalanche.price.ez_prices_hourly
where
token_address = '0xb8d7710f7d8349a506b75dd184f05777c82dad0c'
order by hour desc
limit 1
),
deposits as (
select
to_address as receiver,
sum(amount) as volume
from
avalanche.core.ez_token_transfers
where
contract_address = '0xb8d7710f7d8349a506b75dd184f05777c82dad0c'
group by 1
),
withdraws as (
select
from_address as sender,
sum(amount) as volume
from
avalanche.core.ez_token_transfers
where
contract_address = '0xb8d7710f7d8349a506b75dd184f05777c82dad0c'
group by 1
),
main as (
Last run: 18 days ago
1
95B
6s