winnie-fsOverview copy
Updated 2024-07-23
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
-- forked from mo115 / Overview @ https://flipsidecrypto.xyz/mo115/q/8h3TRVn-tUWK/overview
-- forked from Sandesh / Overview @ https://flipsidecrypto.xyz/Sandesh/q/ZQFdBmYSCteS/overview
select
date_trunc('{{Interval}}',block_timestamp) as date,
count(distinct tx_hash) as number_of_transactions,
sum(tx_fee) as total_fees,
count_if(nonce=0) as new_users
from ethereum.core.fact_transactions
where 1=1
and date >= '{{Start_date}}'
and date <= '{{End_date}}'
group by date
QueryRunArchived: QueryRun has been archived