Afonso_DiazTotal
Updated 2025-02-24
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
WITH main AS (
SELECT
tx_hash,
block_timestamp,
from_address AS user,
tx_fee
FROM kaia.core.fact_transactions
)
select
count(distinct tx_hash) as transactions,
count(distinct user) as users,
transactions / users as avg_transactions_per_user,
users / count(distinct block_timestamp::date) as daily_average_users
from
main
QueryRunArchived: QueryRun has been archived