mattkstewEthereum User Retention 2
    Updated 2022-12-19
    with tab1 as (
    select
    from_address,
    count(distinct date_trunc('month', block_timestamp)) as Months_active

    from ethereum.core.fact_transactions
    group by 1
    )

    select
    months_active,
    count(*)
    from tab1
    group by 1

    Run a query to Download Data