negin-khTop 10 Tornado Cash addresses that received the most of transactions in the last month
    Updated 2022-08-10
    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
    Run a query to Download Data