chainparserop_quests
    Updated 2024-09-09
    select
    date_trunc('day', block_timestamp) as day,
    count(distinct origin_from_address) as active_addresses,
    count(distinct tx_hash) as tx_count,
    sum(amount_usd) as volume_usd
    from optimism.core.ez_token_transfers
    where origin_to_address = '0x52629961f71c1c2564c5aa22372cb1b9fa9eba3e'
    and block_timestamp >= current_date() - 7
    group by day
    order by day


    QueryRunArchived: QueryRun has been archived