with tx1 as (select address , ADDRESS_NAME
from ethereum.core.dim_labels
where label = 'tornado cash'
)
SELECT ADDRESS_NAME , sum(ETH_VALUE)
from tx1 A , ethereum.core.fact_transactions B
where address = TO_ADDRESS
and block_timestamp > CURRENT_DATE - 365
group by 1