CryptoIcicleFlow During Market Downturn - Tx Metrics
Updated 2022-06-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
-- Payout 125 USDC
-- Grand Prize 2000 USDC
-- Level Advanced
-- Show us what you can do with this new Optimism data!
with
txns as (
select
*
from flow.core.fact_transactions
)
select
block_timestamp::date as date,
TX_SUCCEEDED as type,
count(distinct proposer) as n_users,
count(distinct tx_id) as tx_frequncy,
sum(n_users) over (order by date asc rows between unbounded preceding and current row) as cum_n_users,
sum(tx_frequncy) over (order by date asc rows between unbounded preceding and current row) as cum_tx_frequncy
from txns
where block_timestamp between '2022-05-01' and '2022-05-30'
group by date, type
Run a query to Download Data