zakkisyedzksync #2
Updated 2022-06-16
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
select
date_trunc(day,block_timestamp) as date,
symbol,
count(symbol) as count,
sum(amount_usd) as volume_usd
from ethereum.core.ez_token_transfers
where origin_to_address ='0xabea9132b05a70803a4e85094fd0e1800777fbef'
and block_timestamp >= CURRENT_DATE - 60
and amount_usd > 0
and symbol is not null
group by 1,2
order by 1 desc
Run a query to Download Data