Afonso_DiazTotal
Updated 2025-03-09
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
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
from_address as sender,
to_address as receiver,
amount,
amount_usd
from
avalanche.core.ez_token_transfers
where
contract_address = '0x8729438eb15e2c8b576fcc6aecda6a148776c0f5'
)
select
count(distinct tx_hash) as transfers,
count(distinct sender) as senders,
count(distinct receiver) as receivers,
sum(amount) as total_volume,
avg(amount) as average_volume,
sum(amount_usd) as total_volume_usd,
avg(amount_usd) as average_volume_usd,
transfers / count(distinct block_timestamp::date) as daily_average_transfers
from
main
QueryRunArchived: QueryRun has been archived