SleepyEUROC transfers copy
Updated 2023-06-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
select
'average' type,
avg(amount) value
from
avalanche.core.ez_token_transfers
where contract_address = '0xc891eb4cbdeff6e073e859e987815ed1505c2acd'
and (from_address not like '0x0000000000000000000000000000000000000000'
or to_address not like '0x0000000000000000000000000000000000000000')
union all
select
'median' type,
median(amount) value
from
avalanche.core.ez_token_transfers
where contract_address = '0xc891eb4cbdeff6e073e859e987815ed1505c2acd'
and (from_address not like '0x0000000000000000000000000000000000000000'
or to_address not like '0x0000000000000000000000000000000000000000')
Run a query to Download Data