select
address,
address_name,
sum(ETH_VALUE) AS cnt
from
ethereum.core.fact_transactions t
join ethereum.core.dim_labels l on t.to_address = l.address
where
label like '%tornado cash%' and
status = 'SUCCESS' and
block_timestamp >= CURRENT_DATE-365
group by
address,
address_name
order by
cnt desc