rezarwzWhich addresses received the most transaction volume (worth) in the last month, quarter, year
    Updated 2022-08-10
    with tornado_address as(
    select *
    from ethereum.core.dim_labels
    where label='tornado cash' and LABEL_SUBTYPE='general_contract'),
    main as(
    SELECT
    *
    FROM(tornado_address tor inner join ethereum.core.ez_token_transfers ez on ez.TO_ADDRESS=tor.address))
    SELECT
    *
    from main
    limit 1000


    Run a query to Download Data