freemartianDaily Deposits / per tokens
    Updated 2024-09-16
    WITH deposits AS (
    SELECT
    block_timestamp,
    tx_hash,
    origin_function_signature,
    origin_from_address AS user,
    amount,
    amount_usd,
    symbol,
    'Deposits' AS label
    FROM ethereum.core.ez_token_transfers
    WHERE to_address = '0x8bc93498b861fd98277c3b51d240e7e56e48f23c'
    AND from_address <> '0x0000000000000000000000000000000000000000'
    AND amount_usd IS NOT NULL
    AND block_timestamp::date >= '2024-08-22'
    ),

    withdraws AS (
    SELECT
    block_timestamp,
    tx_hash,
    origin_function_signature,
    origin_from_address AS user,
    amount,
    amount_usd,
    symbol,
    'Withdrawals' AS label
    FROM ethereum.core.ez_token_transfers
    WHERE from_address = '0x8bc93498b861fd98277c3b51d240e7e56e48f23c'
    AND to_address <> '0x0000000000000000000000000000000000000000'
    AND block_timestamp::date >= '2024-08-22'
    ),

    all_txs AS (
    SELECT * FROM deposits
    UNION
    Auto-refreshes every 1 hour
    QueryRunArchived: QueryRun has been archived