hessDaily Number of Wallets
    Updated 6 days ago
    with base as (select block_timestamp::date as date,
    count(distinct tx_hash) Transactions,
    count(distinct from_address) as wallets,
    Transactions/wallets as "Average Transaction Per wallet",
    count(distinct to_address) as receivers
    from monad.testnet.fact_transactions
    where block_timestamp::date >= '2025-02-19'
    group by 1)
    ,
    blocks as ( select count(distinct block_number) as "Produced Blocks",
    block_timestamp::date as date
    from monad.testnet.fact_blocks
    where block_timestamp::date >= '2025-02-19'
    group by 2)

    select a.*,
    "Produced Blocks"
    from base a join blocks b on a.date = b.date
    Last run: 6 days ago
    DATE
    TRANSACTIONS
    WALLETS
    Average Transaction Per wallet
    RECEIVERS
    Produced Blocks
    1
    2025-02-20 00:00:00.000372824828653013.01172436815172321
    2
    2025-03-25 00:00:00.0002031279774717252.718622507860142429
    3
    2025-04-14 00:00:00.0001963934385673272.292354479127157250
    4
    2025-03-04 00:00:00.0001178390117709146.654135549911152887
    5
    2025-04-03 00:00:00.0001780094485285312.087223514103128085
    6
    2025-04-18 00:00:00.0001951483992677502.105672459158158658
    7
    2025-03-28 00:00:00.0001841183561592722.989288306206144221
    8
    2025-03-10 00:00:00.00011903796118265010.065358379918170112
    9
    2025-04-08 00:00:00.0001874491879809062.348721484318135902
    10
    2025-04-07 00:00:00.0001862894187796422.121834512899124125
    11
    2025-02-24 00:00:00.000991101676355012.980179476001172339
    12
    2025-04-21 00:00:00.000694669635345921.96534622554763402
    13
    2025-02-22 00:00:00.000512362644235411.582637389997172657
    14
    2025-03-14 00:00:00.0001546638833754474.582027343461147548
    15
    2025-03-15 00:00:00.0001627785549445423.292085329899154367
    16
    2025-02-21 00:00:00.00044413374656599.537745480133172512
    17
    2025-03-12 00:00:00.00031961953313349910.200084489278146066
    18
    2025-02-23 00:00:00.000953976955259017.263738414374172490
    19
    2025-04-12 00:00:00.0001758194672677032.419189597870152897
    20
    2025-03-06 00:00:00.0001039202715017606.919899447340159446
    62
    4KB
    338s