farmertuhaoSei 1
Updated 2023-09-17
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
SELECT
date_trunc('day', block_timestamp) as day,
count(distinct tx_id) as daily_txs,
sum(daily_txs) over (order by day) as cum_txs,
count (distinct tx_from) as daily_users,
sum(daily_users) over (order by day) as cum_users
from sei.core.fact_transactions
where block_timestamp::date <= current_date
and tx_succeeded = 'true'
group by 1
order by 1 DESC
Run a query to Download Data