elsinaDistribution of User Transactions
    Updated 2025-04-07
    with base as (
    SELECT
    e.block_timestamp,
    e.origin_from_address,
    e.tx_hash,
    tx_fee,
    from
    ronin.core.fact_event_logs e
    left join ronin.core.fact_transactions t on e.tx_hash = t.tx_hash
    where
    e.tx_succeeded = TRUE
    and origin_to_address in (
    '0xb806028b6ebc35926442770a8a8a7aeab6e2ce5c',
    '0x02790f32ad7e7eaaecfb0ad21950829932f1a2ee',
    '0x7eae20d11ef8c779433eb24503def900b9d28ad7',
    '0x1b918543b518e34902e1e8dd76052bee43c762ff'
    )
    ),


    per_user as (
    SELECT
    origin_from_address as user,
    count(distinct tx_hash) as tx_count
    from base
    group by user
    )

    select
    case
    when tx_count < 2 then 'A. 1'
    when tx_count < 4 then 'B. 2-3'
    when tx_count < 8 then 'C. 4-7'
    when tx_count < 16 then 'D. 8-15'
    when tx_count < 32 then 'E. 16-31'
    when tx_count < 64 then 'F. 32-63'
    Last run: 20 days ago
    DIS
    USER_COUNT
    USER_COUNT_PERCENTAGE
    1
    B. 2-3156138040.550901
    2
    H. more than 128910992.36595
    3
    E. 16-312725027.077202
    4
    C. 4-756103314.570696
    5
    G. 64-1271796214.664972
    6
    F. 32-632546006.612266
    7
    A. 154777214.226292
    8
    D. 8-153824139.931722
    8
    235B
    23s