select
to_address,
count(DISTINCT tx_hash) as tx_cnt
from ethereum.core.fact_transactions
where to_address in ( select address from ethereum.core.dim_labels where label = 'tornado cash')
and block_timestamp::date BETWEEN '2022-07-01' and '2022-08-01'
GROUP by 1
order by tx_cnt DESC
limit 10