0xHaM-dUntitled Query
Updated 2022-10-15
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
select
origin_from_address as sender,
'xDAI' as transfer,
count(distinct tx_hash) as tx_cnt
from gnosis.core.ez_xdai_transfers
where block_timestamp >= '2022-10-04'
and block_timestamp <= '2022-10-05'
group by 1,2
HAVING tx_cnt > 1000
UNION
select
origin_from_address as sender,
'Other Tokens' as transfer,
count(distinct tx_hash) as tx_cnt
from gnosis.core.fact_token_transfers
where block_timestamp >= '2022-10-04'
and block_timestamp <= '2022-10-05'
group by 1,2
HAVING tx_cnt > 1000
ORDER by 3 DESC
Run a query to Download Data