cheeyoung-kekTornado 1.1
Updated 2022-08-10
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
with tornado_address as(
select
address,
address_name
from flipside_prod_db.crosschain.address_labels
where project_name like 'tornado cash'
)
select
distinct to_address,
address_name ,
count(tx_hash) as tx_count
from ethereum.core.fact_transactions a inner join tornado_address b on a.TO_ADDRESS=b.ADDRESS
where TO_ADDRESS in (select address from tornado_address)
and BLOCK_TIMESTAMP>=CURRENT_DATE - 365
group by 1,2
order by 3 desc
Run a query to Download Data