jason_liquidxMonad testnet stat
    Updated 2025-06-26

    -- Get started with Flipside by running your first query:
    -- the SQL statement below will get you a list of NFT
    -- platforms on Ethereum, ranked by how many sales
    -- they've had in the past month.

    -- Be sure to see our documentation for more guidance,
    -- including a full walkthrough of the app:
    -- https://docs.flipsidecrypto.xyz/our-app/getting-started

    with dau as (
    select date_trunc('day', first_time) as dt, count(distinct origin_from_address) as new_user
    from (
    select min(block_timestamp) as first_time, origin_from_address
    from monad.testnet.fact_event_logs
    group by 2
    )
    group by 1
    ),

    daily as (
    select date_trunc('day', block_timestamp) as dt,
    -- count(distinct case when tx_succeeded = true then tx_hash else null end) as success_tx,
    -- count(distinct case when tx_succeeded = false then tx_hash else null end) as failed_tx
    count(distinct origin_from_address) as dau,
    count(distinct tx_hash) as tx_daily
    from monad.testnet.fact_event_logs
    group by 1
    ),

    stat as (
    select count(distinct origin_from_address) as unique_wallet, count(distinct tx_hash) as unique_tx
    from monad.testnet.fact_event_logs
    ),

    final as (
    Last run: 23 days ago
    DT
    DAILY_UNIQUE_WALLET
    NEW_WALLET
    RETAINED_WALLET
    TX_DAILY
    UNIQUE_WALLET
    UNIQUE_TX
    1
    2025-04-25 00:00:00.0001018404808379375679347281131432121342644106
    2
    2025-04-26 00:00:00.000983609570589265519518429131432121342644106
    3
    2025-02-04 00:00:00.00010149523650131432121342644106
    4
    2025-03-14 00:00:00.0001211934132034107990011797161131432121342644106
    5
    2025-06-19 00:00:00.000732602240917085118733203131432121342644106
    6
    2025-04-12 00:00:00.00010678433744410303999795668131432121342644106
    7
    2025-05-08 00:00:00.0001049905917149581918042437131432121342644106
    8
    2025-04-16 00:00:00.000118264276334110630810550152131432121342644106
    9
    2025-03-22 00:00:00.000118999992810109718914449030131432121342644106
    10
    2025-02-16 00:00:00.000203341696889523131432121342644106
    11
    2025-06-12 00:00:00.0007613151757674373910669589131432121342644106
    12
    2025-03-02 00:00:00.00010106161701718404459248095131432121342644106
    13
    2025-01-10 00:00:00.000261016867131432121342644106
    14
    2025-02-15 00:00:00.000223461772368306131432121342644106
    15
    2025-03-19 00:00:00.0001492914261030123188411138367131432121342644106
    16
    2025-03-15 00:00:00.0001165574130333103524111094080131432121342644106
    17
    2025-02-17 00:00:00.00017801474306699269131432121342644106
    18
    2025-02-13 00:00:00.0005672872802648754131432121342644106
    19
    2025-05-17 00:00:00.0008088517961972923214549175131432121342644106
    20
    2025-03-31 00:00:00.000112190147859107404210049677131432121342644106
    ...
    171
    12KB
    521s