BlockTracker txns -- avg(tx_fee) copy
Updated 2025-04-06
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
›
⌄
-- forked from txns -- avg(tx_fee) @ https://flipsidecrypto.xyz/studio/queries/ace9fd05-bd89-4284-bd67-b2df5ec95fa0
select
date_trunc('{{granularity}}', BLOCK_TIMESTAMP) as date,
'Swell' as blockchain,
count(BLOCK_NUMBER) as n_blocks,
count(DISTINCT tx_hash) as n_transaction,
count(DISTINCT case when TX_SUCCEEDED = 'TRUE' then tx_hash end) as TRANSACTION_COUNT_SUCCESS_,
count(DISTINCT case when TX_SUCCEEDED = 'FALSE' then tx_hash end) as TRANSACTION_COUNT_FAILED_,
TRANSACTION_COUNT_SUCCESS_ / (TRANSACTION_COUNT_SUCCESS_ + TRANSACTION_COUNT_FAILED_) as success_rate,
count(DISTINCT from_address) as n_active_users,
sum(tx_fee * b.price) as total_fee_usd,
sum(tx_fee * b.price) / count(DISTINCT tx_hash) as average_fee_usd
from swell.core.fact_transactions a
left join (
select
date_trunc('day', hour) as date,
median(price) as price
from crosschain.price.ez_prices_hourly
where blockchain = 'ethereum'
and is_native = 'TRUE'
group by 1
order by date desc
) b ON date_trunc('day', block_timestamp) = b.date
group by 1 , 2
order by date desc
-- #7132F5
QueryRunArchived: QueryRun has been archived