mlhaddresses received the most transaction volume (worth) in the last quarter(90 days)
    Updated 2022-08-10
    SELECT a.address_name,
    count(DISTINCT b.tx_hash) as trxs,
    sum (b.amount) as volume ,
    sum(b.amount_usd) as volume_usd
    from flipside_prod_db.crosschain.address_labels a
    JOIN ethereum.core.ez_eth_transfers b on b.eth_to_address = a.address
    WHERE a.project_name = 'tornado cash'
    and b.amount != 0
    AND b.block_timestamp::DATE > CURRENT_DATE - 90
    GROUP BY 1
    ORDER by 2 DESC
    Run a query to Download Data