Eman-RazAverage/Median Number of Transactions per Contract
    Updated 2025-02-04
    with tab1 as (select contract_address, count(distinct tx_hash) as txns_count
    from aurora.core.fact_logs
    where tx_status='SUCCESS'
    and block_timestamp::date>='{{Start_Date}}' and block_timestamp::date<='{{End_Date}}'
    group by 1)

    select avg(txns_count) as avg, median(txns_count) as median
    from tab1
    Last run: 2 months ago
    AVG
    MEDIAN
    1
    403.2320124
    1
    16B
    2s