MostlyData_TVL by Active User
    Updated 2025-02-27
    with solana_daily_users as(
    select
    date_trunc('day', block_timestamp) as dt,
    'Solana' as tag,
    count(distinct signers[0]) as n_users

    from solana.core.fact_transactions

    where
    block_timestamp >= current_date() - interval '30 days'
    and block_timestamp < current_date()

    group by 1
    )

    ,ethereum_daily_users as(
    select
    date_trunc('day', block_timestamp) as dt,
    'Ethereum' as tag,
    count(distinct from_address) as n_users

    from ethereum.core.fact_transactions

    where
    block_timestamp >= current_date() - interval '30 days'
    and block_timestamp < current_date()

    group by 1,2
    )

    ,active_users as(
    select * from solana_daily_users
    union all
    select * from ethereum_daily_users
    )

    Last run: about 1 month ago
    DT
    CHAIN
    TVL per Active User [USD]
    1
    2025-02-11 00:00:00.000Ethereum282115.792262
    2
    2025-02-15 00:00:00.000Ethereum330023.205239
    3
    2025-02-18 00:00:00.000Ethereum285046.120737
    4
    2025-02-16 00:00:00.000Ethereum312685.953918
    5
    2025-01-28 00:00:00.000Ethereum327656.793774
    6
    2025-02-25 00:00:00.000Ethereum250799.325013
    7
    2025-01-29 00:00:00.000Ethereum330457.829058
    8
    2025-02-12 00:00:00.000Ethereum286870.439559
    9
    2025-01-30 00:00:00.000Ethereum334760.481122
    10
    2025-02-09 00:00:00.000Ethereum307835.357137
    11
    2025-02-03 00:00:00.000Ethereum311585.84023
    12
    2025-02-10 00:00:00.000Ethereum235903.377319
    13
    2025-02-07 00:00:00.000Ethereum260493.155615
    14
    2025-02-08 00:00:00.000Ethereum285408.187531
    15
    2025-02-17 00:00:00.000Ethereum261843.58821
    16
    2025-02-05 00:00:00.000Ethereum316740.586063
    17
    2025-02-21 00:00:00.000Ethereum279771.733262
    18
    2025-02-20 00:00:00.000Ethereum271481.063341
    19
    2025-02-13 00:00:00.000Ethereum283904.697491
    20
    2025-02-14 00:00:00.000Ethereum266510.881849
    60
    3KB
    152s