cheeyoung-kekTornado 1.1
    Updated 2022-08-10
    with tornado_address as(


    select
    address,
    address_name
    from flipside_prod_db.crosschain.address_labels
    where project_name like 'tornado cash'
    )

    select
    distinct to_address,
    address_name ,
    count(tx_hash) as tx_count
    from ethereum.core.fact_transactions a inner join tornado_address b on a.TO_ADDRESS=b.ADDRESS
    where TO_ADDRESS in (select address from tornado_address)
    and BLOCK_TIMESTAMP>=CURRENT_DATE - 365
    group by 1,2
    order by 3 desc

    Run a query to Download Data