hesshollow-indigo
    Updated 2025-02-25
    with base as (select count(distinct date_trunc('hour',block_timestamp)) as hours,
    count(distinct tx_hash) Transactions,
    Transactions/hours as avg_wallet_txn,
    count(distinct from_address) as wallets,
    wallets/hours as avg_hourly_wallet,
    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' and block_timestamp <= '2025-02-24'
    and from_address not in (select distinct to_address
    from monad.testnet.fact_traces
    where block_timestamp::Date >= '2025-02-19'
    and TYPE IN ('CREATE','CREATE2')
    and OUTPUT IS NOT NULL
    and TX_SUCCEEDED = 'TRUE'
    and TRACE_SUCCEEDED = 'TRUE'))
    ,
    blocks as ( select count(distinct block_number) as "Produced Blocks"
    from monad.testnet.fact_blocks
    where block_timestamp::Date >= '2025-02-19' and block_timestamp <= '2025-02-23')

    select a.*,
    "Produced Blocks"
    from base a , blocks b
    Last run: about 2 months ago
    HOURS
    TRANSACTIONS
    AVG_WALLET_TXN
    WALLETS
    AVG_HOURLY_WALLET
    Average Transaction Per wallet
    RECEIVERS
    Produced Blocks
    1
    12124088781199080.83471111793669746.82644620.4251951488756685824
    1
    75B
    7s