Eman-RazTotal Number of Smart Contracts Engaged By Users Over Time
    Updated 2025-02-04
    select date_trunc('{{Time_Frame}}',block_timestamp) as "Date", count(distinct contract_address) as "Number of Contracts",
    round(count(distinct origin_from_address)/count(distinct contract_address)) as "Average Users per Contract"
    from aurora.core.fact_logs
    where tx_status='SUCCESS'
    and block_timestamp::date>='{{Start_Date}}' and block_timestamp::date<='{{End_Date}}'
    group by 1
    order by 1
    Last run: 3 months ago
    Date
    Number of Contracts
    Average Users per Contract
    1
    2024-01-01 00:00:00.00041048
    2
    2024-02-01 00:00:00.00029636
    3
    2024-03-01 00:00:00.000289210
    4
    2024-04-01 00:00:00.000198512
    5
    2024-05-01 00:00:00.000180011
    6
    2024-06-01 00:00:00.000175313
    7
    2024-07-01 00:00:00.000159911
    8
    2024-08-01 00:00:00.00016749
    9
    2024-09-01 00:00:00.00017448
    10
    2024-10-01 00:00:00.00021835
    11
    2024-11-01 00:00:00.00022699
    12
    2024-12-01 00:00:00.000155538
    13
    2025-01-01 00:00:00.000148531
    14
    2025-02-01 00:00:00.00051219
    14
    498B
    2s