Flipside Axelar AnalystsNumber of Users Over Time
    Updated 43 minutes ago
    with table1 as (
    select
    date_trunc('month', created_at) as "Date",
    count(distinct call:transaction:from) as "Users"
    from
    axelar.axelscan.fact_gmp
    where
    call ilike '%0xb5fb4be02232b1bba4dc8f81dc24c26980de9e3c%'
    group by
    1
    ),
    table2 as (
    with tab1 as (
    select
    call:transaction:from as user,
    min(created_at :: date) as first_use
    from
    axelar.axelscan.fact_gmp
    where
    call ilike '%0xb5fb4be02232b1bba4dc8f81dc24c26980de9e3c%'
    group by
    1
    )
    select
    date_trunc('month', first_use) as "Date",
    count(distinct user) as "New Users",
    sum("New Users")over(order by "Date") as "total users"
    from
    tab1
    group by
    1
    )
    select
    table1."Date" as "Date",
    "total users",
    "Users",
    Last run: 43 minutes agoAuto-refreshes every 24 hours
    Date
    total users
    Users
    New Users
    Active Users
    1
    2025-04-01 00:00:00.00023733334164170
    2
    2025-03-01 00:00:00.0002356915721059513
    3
    2025-02-01 00:00:00.000225101051575476
    4
    2025-01-01 00:00:00.000219351421866555
    5
    2024-12-01 00:00:00.0002106916021090512
    6
    2024-11-01 00:00:00.0001997916441126518
    7
    2024-10-01 00:00:00.0001885353414872469
    8
    2024-09-01 00:00:00.000139811077730347
    9
    2024-08-01 00:00:00.000132511177868309
    10
    2024-07-01 00:00:00.0001238315681276292
    11
    2024-06-01 00:00:00.0001110716161355261
    12
    2024-05-01 00:00:00.000975282958122173
    13
    2024-04-01 00:00:00.000163071462391
    14
    2024-03-01 00:00:00.0001007403297106
    15
    2024-02-01 00:00:00.00071039133259
    16
    2024-01-01 00:00:00.00037833829840
    17
    2023-12-01 00:00:00.0008080800
    17
    784B
    291s