Updated 2022-07-16
    with tb1 as (select TX_FROM as users,
    count(distinct tx_id) as num_transaction
    from solana.core.fact_transfers WHERE block_timestamp>='2022-07-01'
    group by 1)
    select
    case
    when num_transaction=1 then 'Interaction'
    when num_transaction>1 then 'Interact again'
    end as buckets,
    count(distinct users) as count_users
    from tb1
    group by 1
    Run a query to Download Data