0xHaM-din ttl
    Updated 2024-10-01
    select
    'All Time' as preiod,
    count(distinct tx_hash) as "Transaction Count",
    count(distinct origin_from_address) as "User Count",
    round("User Count" / count(distinct block_timestamp::date)) as "Average Daily Users",
    count(distinct service_id) as "# Services",
    from
    crosschain.olas.fact_service_events
    GROUP BY 1
    UNION All
    select
    'Q3 2024' as preiod,
    count(distinct tx_hash) as "Transaction Count",
    count(distinct origin_from_address) as "User Count",
    round("User Count" / count(distinct block_timestamp::date)) as "Average Daily Users",
    count(distinct service_id) as "# Services",
    from
    crosschain.olas.fact_service_events
    where
    block_timestamp::date >= '2024-07-01'
    AND
    block_timestamp::date < '2024-10-01'
    GROUP BY 1
    order by 2 DESC







    QueryRunArchived: QueryRun has been archived