MLDZMNwgno9
Updated 2022-10-16
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select
distinct ETH_TO_ADDRESS,
count(distinct ETH_FROM_ADDRESS) as no_users,
sum(amount) as volume,
avg(amount) as average_volume,
sum (amount_usd) as volume_usd
from gnosis.core.ez_xdai_transfers
where block_timestamp >= current_date - 30
group by 1
order by 2 desc limit 10
Run a query to Download Data