1999_eth最近一周活跃用户数量
    Updated 2 days ago
    select
    to_char(convert_timezone('UTC', 'Asia/Shanghai', block_timestamp), 'YYYY-MM-DD') as "日期",
    count(DISTINCT FROM_ADDRESS) as "活跃数量"
    from
    monad.testnet.fact_transactions
    where
    TX_SUCCEEDED=true
    and block_timestamp >= current_date() - 7
    group by
    1
    order by
    1 desc;

    Last run: 2 days ago
    日期
    活跃数量
    1
    2025-03-313040365
    2
    2025-03-306801893
    3
    2025-03-296499609
    4
    2025-03-286407008
    5
    2025-03-277096907
    6
    2025-03-265735008
    7
    2025-03-257591364
    8
    2025-03-245573835
    8
    185B
    14s