Sbhn_NPtotal base
Updated 2023-03-09
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
with price as (
SELECT
date_trunc('day',hour) as date,
avg(price) as usdprice
from ethereum.core.fact_hourly_token_prices
where symbol='WETH'
group by 1
)
select 'Base' as type,
count(DISTINCT tx_hash) as txs,
count(DISTINCT from_address) as users,
sum(eth_value) as volume,
sum(eth_value*usdprice) as usd_volume,
sum(tx_fee) as fees,
avg(tx_fee) as avg_fees,
sum(gas_used) as gas,
avg(gas_used) as avg_gas
from base.goerli.fact_transactions a
join price b on a.block_timestamp::date=b.date
where status = 'SUCCESS'
group by 1
Run a query to Download Data