Eman-RazNumber of GMers Over Time
    Updated 1 day ago
    with table1 as (select date_trunc('day',block_timestamp) as "Date", count(distinct from_address) as "Total GMers"
    from ink.core.fact_transactions
    where to_address='0x9f500d075118272b3564ac6ef2c70a9067fd2d3f'
    and tx_succeeded='TRUE' and (origin_function_signature='0xe884624b' -- GM_to_a_Fren
    or origin_function_signature='0xc0129d43') -- GM
    group by 1),


    table2 as (with tab1 as (select from_address as user, min(block_timestamp) as first_gm
    from ink.core.fact_transactions
    where to_address='0x9f500d075118272b3564ac6ef2c70a9067fd2d3f'
    and tx_succeeded='TRUE' and (origin_function_signature='0xe884624b' -- GM_to_a_Fren
    or origin_function_signature='0xc0129d43') -- GM
    group by 1)

    select date_trunc('day',first_gm) as "Date", count(distinct user) as "New GMers"
    from tab1
    group by 1)

    select table1."Date", "Total GMers", "New GMers", "Total GMers"-"New GMers" as "Active GMers"
    from table1 left join table2 on table1."Date"=table2."Date"
    order by 1
    Last run: 1 day ago
    Date
    Total GMers
    New GMers
    Active GMers
    1
    2025-01-21 00:00:00.0001251250
    2
    2025-01-22 00:00:00.0001055102827
    3
    2025-01-23 00:00:00.0001375813141617
    4
    2025-01-24 00:00:00.0001436992305139
    5
    2025-01-25 00:00:00.000514203999811422
    6
    2025-01-26 00:00:00.000529503690816042
    7
    2025-01-27 00:00:00.000931701673376437
    8
    2025-01-28 00:00:00.00077244198175263
    9
    2025-01-29 00:00:00.00069372198667386
    10
    2025-01-30 00:00:00.00077724331074414
    11
    2025-01-31 00:00:00.00080419194678473
    12
    2025-02-01 00:00:00.00059244163157613
    13
    2025-02-02 00:00:00.00079488170777781
    14
    2025-02-03 00:00:00.0006791299466918
    15
    2025-02-04 00:00:00.00041220103440186
    16
    2025-02-05 00:00:00.00070405113069275
    17
    2025-02-06 00:00:00.00048226100147225
    18
    2025-02-07 00:00:00.0007169077870912
    19
    2025-02-08 00:00:00.00075463152473939
    20
    2025-02-09 00:00:00.00075845130374542
    96
    4KB
    7s