Afonso_DiazGrouping transactions
    Updated 2024-08-09
    with t as (
    select
    tx_id,
    block_timestamp,
    tx_from as user,
    fee
    from lava.core.fact_transactions
    where tx_succeeded = 1
    and block_timestamp::date >= '2024-07-30'
    ),

    t4 as (
    select
    user,
    count(distinct tx_id) as transactions,
    min(block_timestamp) as first_transaction_at
    from t
    group by 1
    )

    select
    case
    when transactions = 1 then 'a. 1 Transaction'
    when transactions <= 5 then 'b. 2 - 5 Transactions'
    when transactions <= 10 then 'c. 5 - 10 Transactions'
    when transactions <= 25 then 'd. 10 - 25 Transactions'
    when transactions <= 50 then 'e. 25 - 50 Transactions'
    else 'f. > 50 Transactions'
    end as user_type,
    count(distinct user) as users
    from t4
    group by 1
    order by 1

    QueryRunArchived: QueryRun has been archived