SELECT
to_address,
count(*) as count
from ethereum.core.fact_traces
where to_address in (select DISTINCT address from flipside_prod_db.crosschain.address_labels where project_name = 'tornado cash')
and block_timestamp >= CURRENT_DATE - 365
group by 1
order by 2 desc