Afonso_DiazTotal
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
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
from_address as user
from
swell.core.fact_transactions
where
tx_succeeded
)
select
count(distinct tx_hash) as transactions,
count(distinct user) as users,
transactions / users as transactions_per_user,
users / count(distinct block_timestamp::date) as daily_users
from
main
QueryRunArchived: QueryRun has been archived