select
BLOCK_TIMESTAMP :: date as date,
count(tx_hash) as tx_count,
count (distinct from_address) as active_user,
sum(tx_count) over(order by date asc) as Total_tx_count
from
monad.testnet.fact_transactions
where
BLOCK_TIMESTAMP :: date >= '2025-02-19'
group by
BLOCK_TIMESTAMP :: date