MONTH | MONTH_NAME | TRANSACTIONS | ADDRESS | Avg Txn Per Address | |
---|---|---|---|---|---|
1 | 2025-01-01 00:00:00.000 | January | 16852711 | 3044 | 5536.370237 |
2 | 2025-02-01 00:00:00.000 | February | 119584648 | 4081612 | 29.298387 |
3 | 2025-03-01 00:00:00.000 | March | 513435914 | 86921032 | 5.906924 |
4 | 2025-04-01 00:00:00.000 | April | 227276785 | 82204859 | 2.764761 |
hess2. Total Transactions II
Updated 2025-04-13
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
WITH basic AS ( SELECT
block_timestamp::date AS date,
tx_hash,
from_address AS user,
value,
tx_fee,
TX_SUCCEEDED
FROM
monad.testnet.fact_transactions
)
select trunc(date,'month') as month,
month_name,
count(DISTINCT tx_hash) as transactions,
count(DISTINCT user) as address,
transactions/address as "Avg Txn Per Address"
from basic a join crosschain.core.dim_dates b on a.date = b.date_day
where TX_SUCCEEDED = 'TRUE'
group by 1,2
order by 1 asc
Last run: 10 days ago
4
260B
160s