Flipside Team1.1. Tx over time, Fees over time
Updated 2024-12-04
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
-- Source query: https://flipsidecrypto.xyz/mo115/q/72utktaT-XxU/transactions-fees
-- Analyst: mo115
select
date_trunc('day',BLOCK_TIMESTAMP_HOUR) as "Date"
, sum (TRANSACTION_COUNT ) as "Transactions"
, sum (TRANSACTION_COUNT_SUCCESS ) as "Successful Transactions"
, sum (TRANSACTION_COUNT_FAILED ) as "Failed Transactions"
, sum (TOTAL_FEES_NATIVE/1e9 ) as "Fees (SOL)"
---, sum (TOTAL_FEES_USD ) as "Fees (USD)"
, sum("Transactions") over (order by "Date") as "Cumulative Transactions Last 30d"
, sum("Fees (SOL)") over (order by "Date") as "Cumulative Fees (SOL) Last 30d"
---, sum("Fees (USD)") over (order by date) as "Cumulative Fee (USD)"
from solana.stats.ez_core_metrics_hourly
where "Date" >= current_date - 31
and "Date" < current_date
group by 1
;
QueryRunArchived: QueryRun has been archived