hess10. Breakdown of Addresses
    Updated 2025-05-01
    with base as ( select from_address,
    count(distinct tx_hash) as txns
    from mezo.testnet.fact_transactions
    group by 1)

    select count(distinct from_address) as "Address",
    case
    when txns = 1 then 'a. 1 txn'
    when txns = 2 then 'b. 2 txns'
    when txns = 3 then 'c. 3 txns'
    when txns = 4 then 'd. 4 txns'
    when txns = 5 then 'e. 5 txns'
    when txns = 6 then 'f. 6 txns'
    when txns = 7 then 'g. 7 txns'
    when txns = 8 then 'h. 8 txns'
    when txns = 9 then 'i. 9 txns'
    when txns = 10 then 'j. 10 txns'
    when txns > 10 then 'k. > 10 txns' end as breakdown
    from base
    group by 2
    order by 2 asc


    Last run: 27 days ago
    Address
    BREAKDOWN
    1
    12931a. 1 txn
    2
    508b. 2 txns
    3
    1271c. 3 txns
    4
    1892d. 4 txns
    5
    1355e. 5 txns
    6
    1032f. 6 txns
    7
    2700g. 7 txns
    8
    1689h. 8 txns
    9
    1004i. 9 txns
    10
    1307j. 10 txns
    11
    6587k. > 10 txns
    11
    213B
    2s