DAY | TYPE | TOTAL_TRANSACTIONS | |
---|---|---|---|
1 | 2020-08-18 00:00:00.000 | Succeeded | 10 |
2 | 2020-08-18 00:00:00.000 | Failed | 5019 |
3 | 2020-08-19 00:00:00.000 | Failed | 1 |
4 | 2020-08-19 00:00:00.000 | Succeeded | 1127 |
5 | 2020-08-20 00:00:00.000 | Failed | 21 |
6 | 2020-08-20 00:00:00.000 | Succeeded | 1709 |
7 | 2020-08-21 00:00:00.000 | Succeeded | 1342 |
8 | 2020-08-21 00:00:00.000 | Failed | 16 |
9 | 2020-08-22 00:00:00.000 | Succeeded | 1017 |
10 | 2020-08-22 00:00:00.000 | Failed | 10 |
11 | 2020-08-23 00:00:00.000 | Succeeded | 1070 |
12 | 2020-08-23 00:00:00.000 | Failed | 11 |
13 | 2020-08-24 00:00:00.000 | Failed | 6 |
14 | 2020-08-24 00:00:00.000 | Succeeded | 1463 |
15 | 2020-08-25 00:00:00.000 | Succeeded | 2638 |
16 | 2020-08-25 00:00:00.000 | Failed | 8 |
17 | 2020-08-26 00:00:00.000 | Failed | 205 |
18 | 2020-08-26 00:00:00.000 | Succeeded | 1538 |
19 | 2020-08-27 00:00:00.000 | Succeeded | 1737 |
20 | 2020-08-27 00:00:00.000 | Failed | 467 |
messariflow stats: txs (over time) weekly copy
Updated 3 days ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
-- forked from adriaparcerisas / flow stats: txs (over time) weekly @ https://flipsidecrypto.xyz/adriaparcerisas/q/iNdF3ST8N50r/flow-stats-txs-over-time-weekly
SELECT
trunc(block_timestamp,'day') as day,
case when tx_succeeded='true' then 'Succeeded' else 'Failed' end as type,
count(*) as total_transactions
from flow.core.fact_transactions x
--where month<trunc(current_date,'week')
group by 1,2
order by 1 asc
Last run: 3 days ago
...
3405
149KB
11s