feyikemiModule 2 - Active Users Trend
    Updated 2024-03-20
    SELECT
    Date_trunc('Month', BLOCK_TIMESTAMP) AS Month,
    Count(DISTINCT from_address) AS Active_Users
    from
    arbitrum.core.fact_transactions
    where
    BLOCK_TIMESTAMP :: Date >= '2024-01-01'
    GROUP BY
    1
    QueryRunArchived: QueryRun has been archived