Afonso_DiazTop users
Updated 2024-08-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 t as (
select
tx_id,
block_timestamp,
tx_from as user,
fee
from lava.core.fact_transactions
where tx_succeeded = 1
and block_timestamp::date >= '2024-07-30'
)
select
user,
count(distinct tx_id) as transactions,
sum(fee) as total_fee_lava,
avg(fee) as average_fee_lava,
median(fee) as median_fee_lava
from t
group by 1
order by 2 desc
limit 10
QueryRunArchived: QueryRun has been archived