m0rt3zazkSync token deposit stats
    Updated 2022-06-17
    SELECT
    COUNT(DISTINCT origin_from_address) AS total_wallets,
    COUNT(DISTINCT symbol) AS total_tokens,
    sum(amount_usd) AS total_usd_volume
    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'

    Run a query to Download Data