TRANSACTIONS | USERS | DAILY_AVERAGE_TRANSACTIONS | DAILY_AVERAGE_USERS | |
---|---|---|---|---|
1 | 18997067 | 2656544 | 78826.004149 | 11023.004149 |
Afonso_DiazTotal (users and txns)
Updated 4 days ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
with
main as (
select
tx_id,
block_timestamp,
f.value['value'] as user
from
aleo.core.fact_transitions
join
lateral flatten(input => inputs) f
where
f.value['value'] ilike 'aleo%'
)
select
count(distinct tx_id) as transactions,
count(distinct user) as users,
transactions / count(distinct block_timestamp::date) as daily_average_transactions,
users / count(distinct block_timestamp::date) as daily_average_users
from
main
Last run: 4 days ago
1
46B
19s