elsinadaily activity
    Updated 2025-02-20
    SELECT
    date_trunc('day', block_timestamp) as date,

    count(distinct tx_hash) as tx_count,
    count(distinct from_address) as user_count,
    sum(value) as volume,
    sum(tx_fee) as tx_fees,

    avg(tx_fee) as avg_fee,

    count(distinct case when TX_SUCCEEDED = 'TRUE' then tx_hash end ) as succeed_txns,
    (succeed_txns / tx_count ) * 100 as success_rate,

    24 * 60 * 60 AS seconds_per_day,
    count(DISTINCT tx_hash) / seconds_per_day as TPS,

    sum(tx_fees) over (order by date) as cum_total_fee,
    sum(tx_count) over (order by date) as cum_tx_count,
    sum(volume) over (order by date) as cum_volume
    from
    monad.testnet.fact_transactions
    group by
    date
    order by
    date asc






    Last run: 25 days ago
    DATE
    TX_COUNT
    USER_COUNT
    VOLUME
    TX_FEES
    AVG_FEE
    SUCCEED_TXNS
    SUCCESS_RATE
    SECONDS_PER_DAY
    TPS
    CUM_TOTAL_FEE
    CUM_TX_COUNT
    CUM_VOLUME
    1
    2025-01-07 00:00:00.0001169811234297.490743.3581108680.0028726354731169100864000.013533.358110868116911234297.49074
    2
    2025-01-08 00:00:00.00029722562391.72433394727.0440189190.009099602597296799.8318864000.03439830.402129787414111296689.2150739
    3
    2025-01-09 00:00:00.000181973766931.04162250444.172595820.0024274658361819299.9725864000.21061374.5747256072233811363620.2566965
    4
    2025-01-10 00:00:00.00021213940228.857556512416.4516108870.1963468227211899.8586864000.024549491.0263364952445911403849.114253
    5
    2025-01-11 00:00:00.00020818220.000000771.730055920.00831757653820799.5192864000.002407492.7563924152466711404069.1142537
    6
    2025-01-12 00:00:00.000218152.000000963.1676096940.014530319721799.5413864000.002523495.9240021092488511404071.1142547
    7
    2025-01-13 00:00:00.0002085552153.62915873918.5799990780.008911270541207499.4724864000.024132514.5040011872697011406224.7434134
    8
    2025-01-14 00:00:00.0002760491418.05969917713.3326855420.004830683167275999.9638864000.031944527.8366867282973011407642.8031126
    9
    2025-01-15 00:00:00.000661568413644.82007590144.2803950950.006693937278660699.8639864000.076563572.1170818243634511821287.6231885
    10
    2025-01-16 00:00:00.00047178629912.88438407847.2586966110.01001880361468199.2368864000.054595619.3757784354106211851200.5075726
    11
    2025-01-17 00:00:00.00024849423147.2017205220.872580530.008402810197246599.2351864000.02875640.2483589654354611874347.7092931
    12
    2025-01-18 00:00:00.00044730222.609720963.5582770160.00796035126638886.8009864000.005174643.8066359814399311874570.3190141
    13
    2025-01-19 00:00:00.0002816142210214.0803597729.8773403860.003507578262274797.5497864000.032593653.6839763674680912084784.3993738
    14
    2025-01-20 00:00:00.000989223643.4832477646.3000730210.00637014461298799.7978864000.011447659.9840493884779812085427.8826216
    15
    2025-01-21 00:00:00.000552278134006.69975326725.3318569130.004587442396550999.7646864000.063912685.3159063015332012219434.5823749
    16
    2025-01-22 00:00:00.00027617727624.68949989413.8576737280.005019077772269897.7182864000.031956699.173580035608112247059.2718748
    17
    2025-01-23 00:00:00.000219111937508.49845661117.2602509630.05351905567214197.7179864000.025359816.4338309935827212284567.7703314
    18
    2025-01-24 00:00:00.0001455506421389999524411.6950525133.3788999080.0017267790031455488699.998886400168.46138925949.8127309011461333610011808979.4654
    19
    2025-01-25 00:00:00.00048641356.3878509616.1241896290.0126012132347597.7366864000.00562525955.936920531461382210011809335.8532
    20
    2025-01-26 00:00:00.000120239522.1307084329.3491571870.007778000987117197.421864000.01391225965.2860777171461502410011809857.9839
    45
    7KB
    7s