SELECT TO_ADDRESS as address,count(distinct tx_hash) as tx from ethereum.core.fact_transactions where TO_ADDRESS in
(SELECT address from flipside_prod_db.crosschain.address_labels where project_name='tornado cash' and BLOCKCHAIN='ethereum')
and block_timestamp>=CURRENT_DATE-30 and STATUS='SUCCESS' group by 1 order by 2 desc