messariflow fees
Updated 2025-04-16
99
1
2
3
4
5
6
7
8
9
10
›
⌄
SELECT
TRUNC(block_timestamp, 'day') AS date,
SUM(event_data:amount) AS total_tx_flow_fee
FROM flow.core.fact_events
WHERE event_contract = 'A.f919ee77447b7497.FlowFees'
AND event_type = 'FeesDeducted'
AND block_timestamp < CURRENT_DATE
GROUP BY 1
ORDER BY 1 ASC;
QueryRunArchived: QueryRun has been archived