MetaLightZeta Transactions and Users
    Updated 2025-01-23
    with
    activity as (
    select block_timestamp, tx_id, signers[0] as wallet_address
    from solana.core.fact_events events
    where succeeded
    and program_id = 'ZETAxsqBRek56DhiGXrn75yj2NHU3aYUnxvHXpkf3aD'
    and block_timestamp >= '2024-01-01'::date
    and block_timestamp <= '2024-07-31'::date
    ),
    new_users as (
    select wallet_address, min(block_timestamp) as first_seen_date
    from activity
    group by wallet_address
    ),
    aggregated as (
    select
    date_trunc('day', a.block_timestamp) as day,
    date_trunc('month', a.block_timestamp) as month,
    count(distinct a.tx_id) as daily_txs,
    count(distinct a.wallet_address) as daily_users,
    count(distinct case when a.block_timestamp = nu.first_seen_date then a.wallet_address end) as daily_new_users
    from activity a
    left join new_users nu on a.wallet_address = nu.wallet_address
    group by 1, 2
    ),
    cumulative as (
    select
    day,
    month,
    daily_txs,
    daily_new_users,
    daily_users,
    sum(daily_txs) over (order by day) as cumulative_txs,
    sum(daily_new_users) over (order by day) as cumulative_new_users,
    sum(daily_users) over (order by day) as cumulative_active_users
    from aggregated
    Last run: 2 months ago
    DAY
    MONTH
    TXS_BY_DAY
    NEW_USERS_BY_DAY
    ACTIVE_USERS_BY_DAY
    TOTAL_TXS
    TOTAL_NEW_USERS
    TOTAL_ACTIVE_USERS
    1
    2024-01-01 00:00:00.0002024-01-01 00:00:00.000154858920302030154858920302030
    2
    2024-01-02 00:00:00.0002024-01-01 00:00:00.000154660815382458309519735684488
    3
    2024-01-03 00:00:00.0002024-01-01 00:00:00.000145913110862369455432846546857
    4
    2024-01-04 00:00:00.0002024-01-01 00:00:00.00013228087912156587713654459013
    5
    2024-01-05 00:00:00.0002024-01-01 00:00:00.000139338264119037270518608610916
    6
    2024-01-06 00:00:00.0002024-01-01 00:00:00.000124427061118448514788669712760
    7
    2024-01-07 00:00:00.0002024-01-01 00:00:00.0001560761494174610075549719114506
    8
    2024-01-08 00:00:00.0002024-01-01 00:00:00.0001509053612218511584602780316691
    9
    2024-01-09 00:00:00.0002024-01-01 00:00:00.0001308620517218912893222832018880
    10
    2024-01-10 00:00:00.0002024-01-01 00:00:00.0001327338507219914220560882721079
    11
    2024-01-11 00:00:00.0002024-01-01 00:00:00.0001305472613262615526032944023705
    12
    2024-01-12 00:00:00.0002024-01-01 00:00:00.0001169848527242416695880996726129
    13
    2024-01-13 00:00:00.0002024-01-01 00:00:00.00013294614632284180253411043028413
    14
    2024-01-14 00:00:00.0002024-01-01 00:00:00.00012164406252499192417811105530912
    15
    2024-01-15 00:00:00.0002024-01-01 00:00:00.00012183474182460204601281147333372
    16
    2024-01-16 00:00:00.0002024-01-01 00:00:00.00012483655032672217084931197636044
    17
    2024-01-17 00:00:00.0002024-01-01 00:00:00.00011505055482872228589981252438916
    18
    2024-01-18 00:00:00.0002024-01-01 00:00:00.00011500634612757240090611298541673
    19
    2024-01-19 00:00:00.0002024-01-01 00:00:00.00013127673352420253218281332044093
    20
    2024-01-20 00:00:00.0002024-01-01 00:00:00.00012979193172054266197471363746147
    ...
    213
    19KB
    114s