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