freemartianTotal Amount per token
    Updated 2025-02-11

    WITH transfers AS (
    SELECT
    block_timestamp, tx_hash, from_address AS user, amount, amount_usd, symbol
    FROM base.core.ez_token_transfers
    WHERE to_address = '0xa035e7fa5e4704c2ecb2f7f8c1eeff09c550fdc5'
    AND block_timestamp::date >= '2025-02-10'
    AND has_price
    UNION ALL
    SELECT
    block_timestamp, tx_hash, from_address AS user, amount, amount_usd, 'ETH' AS symbol
    FROM base.core.ez_native_transfers
    WHERE to_address = '0xa035e7fa5e4704c2ecb2f7f8c1eeff09c550fdc5'
    AND block_timestamp::date >= '2025-02-10'
    )

    SELECT
    symbol,
    count(tx_hash) AS transactions,
    count(DISTINCT user) AS users,
    SUM(amount_usd) AS usd_amount,
    SUM(amount) AS amounts,
    FROM transfers
    group by 1
    order BY 1 ASC






    Last run: 3 months agoAuto-refreshes every 1 hour
    SYMBOL
    TRANSACTIONS
    USERS
    USD_AMOUNT
    AMOUNTS
    1
    ETH18182161.870.7986678329
    2
    USDC44581.679657172581.697612
    3
    USDT1129.8170063529.837445
    3
    109B
    5s