Transactions | Active Users | Fees (ETH) | Fees (USD) | |
---|---|---|---|---|
1 | 0 | 0 |
defi__joshBlast Network Activity Overview - Last 30 Days
Updated 2025-05-31
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
with hourly_fees as (
select
tx.tx_hash,
tx.from_address,
tx.tx_fee,
tx.block_timestamp,
p.price as eth_price,
tx.tx_fee * p.price as tx_fee_usd
from blast.core.fact_transactions tx
left join ethereum.price.ez_prices_hourly p
on date_trunc('hour', tx.block_timestamp) = p.hour
and p.symbol = 'ETH'
and p.blockchain = 'ethereum'
and p.is_native = true
where tx.TX_SUCCEEDED = 'TRUE'
and tx.block_timestamp >= DATEADD(day, -30, CURRENT_TIMESTAMP)
)
select
count(DISTINCT TX_HASH) as "Transactions",
count(distinct FROM_ADDRESS) as "Active Users",
sum(tx_fee) as "Fees (ETH)",
sum(tx_fee_usd) as "Fees (USD)"
from hourly_fees;
Last run: 14 days ago
1
17B
1s