messari txns -- avg(tx_fee) copy
    Updated 3 days ago
    -- forked from BlockTracker / txns -- avg(tx_fee) @ https://flipsidecrypto.xyz/BlockTracker/q/kpGB32Sl5HlD/txns----avg-tx_fee

    select
    date_trunc('{{granularity}}', BLOCK_TIMESTAMP) as date,
    count(distinct tx_hash) as n_transaction,
    sum(n_transaction) over (order by date) as total_txns,
    -- count(distinct case when TX_SUCCEEDED = 'TRUE' then tx_hash end ) as succeed_txns,
    -- sum(succeed_txns) over (order by date) as total_succeed_txns,
    -- count(distinct case when TX_SUCCEEDED <> 'TRUE' then tx_hash end ) as Failed_txns,
    -- sum(Failed_txns) over (order by date) as Failed_txns_txns,
    -- succeed_txns / (succeed_txns + Failed_txns) as success_rate,
    count(distinct from_address) as n_active_users
    -- sum(tx_fee) as fee,
    -- sum(fee) over (order by date) as total_fee_mon,
    -- avg(tx_fee) as avg_tx_fee,
    -- median(tx_fee) as median_tx_fee
    from monad.testnet.fact_transactions
    group by 1
    order by date







    Last run: 3 days ago
    DATE
    N_TRANSACTION
    TOTAL_TXNS
    N_ACTIVE_USERS
    1
    2025-01-07 00:00:00.000116911698
    2
    2025-01-08 00:00:00.0002972414125
    3
    2025-01-09 00:00:00.000181972233837
    4
    2025-01-10 00:00:00.00021212445939
    5
    2025-01-11 00:00:00.0002082466718
    6
    2025-01-12 00:00:00.0002182488515
    7
    2025-01-13 00:00:00.00020852697055
    8
    2025-01-14 00:00:00.00027602973049
    9
    2025-01-15 00:00:00.00066153634568
    10
    2025-01-16 00:00:00.00047174106286
    11
    2025-01-17 00:00:00.00024844354694
    12
    2025-01-18 00:00:00.0004474399330
    13
    2025-01-19 00:00:00.000281646809142
    14
    2025-01-20 00:00:00.00098947798223
    15
    2025-01-21 00:00:00.00055225332078
    16
    2025-01-22 00:00:00.00027615608177
    17
    2025-01-23 00:00:00.000219158272119
    18
    2025-01-24 00:00:00.00014555064146133362138
    19
    2025-01-25 00:00:00.0004861461382241
    20
    2025-01-26 00:00:00.00012021461502439
    85
    4KB
    45s