elsinatotal amount (30 Days)
    Updated 2025-02-21
    select
    case
    when block_timestamp::date < '2024-11-13' then 'before 30 days'
    else 'After 30 days'
    end as Fableborne,
    count(distinct tx_hash) as tx_count,
    count(distinct from_address) as user_count,
    sum(tx_fee) as fees
    from ronin.core.fact_transactions
    where block_timestamp::date between '2024-10-13' and '2024-12-13'
    group by 1


    Last run: 28 days ago
    FABLEBORNE
    TX_COUNT
    USER_COUNT
    FEES
    1
    before 30 days36336239322272362308.231988225
    2
    After 30 days530812433604911102407.796138016
    2
    105B
    5s