MOHAMAD23sum value last year
    Updated 2022-08-10
    with addresses as (
    select ADDRESS , ADDRESS_NAME
    from ethereum.core.dim_labels
    where label like '%tornado cash%'
    )
    select sum (ETH_VALUE) , ADDRESS_NAME
    from ethereum.core.fact_transactions
    join addresses on ethereum.core.fact_transactions.TO_ADDRESS=addresses.ADDRESS
    where BLOCK_TIMESTAMP >= DATEADD(month, - 12, GETDATE())
    AND BLOCK_TIMESTAMP <= getdate()
    group by 2
    order by 1 desc
    limit 10
    Run a query to Download Data