m0rt3zawallets depositing erc20 tokens in zkSync
    Updated 2022-06-17
    SELECT
    origin_from_address AS depositer,
    sum(amount_usd) AS total_usd,
    COUNT(DISTINCT tx_hash) AS tx_count
    FROM ethereum.core.ez_token_transfers
    WHERE block_timestamp::date > CURRENT_DATE - 60
    AND amount > 0
    AND amount_usd > 0
    AND origin_to_address = '0xabea9132b05a70803a4e85094fd0e1800777fbef'
    GROUP BY depositer
    ORDER BY total_usd DESC

    Run a query to Download Data