flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
Monthly Trend of Successful vs. Failed Transactions
walemaths
Monthly Trend of Successful vs. Failed Transactions
Updated 2024-07-14
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
SELECT
DATE_TRUNC
(
'month'
,
t
.
block_timestamp
)
AS
month
,
t
.
status
,
COUNT
(
t
.
tx_hash
)
AS
transaction_count
FROM
avalanche
.
core
.
fact_transactions
t
GROUP
BY
month
,
t
.
status
ORDER
BY
month
;
Results
QueryRunArchived: QueryRun has been archived