TRANSACTIONS | USERS | DAILY_AVERAGE_TRANSACTIONS | DAILY_AVERAGE_USERS | |
---|---|---|---|---|
1 | 371057759 | 213850 | 121738.109908 | 70.160761 |
Afonso_DiazTotal
Updated 2025-05-10
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with
users as (
select
distinct from_address as user
from
ink.core.fact_transactions
where
tx_succeeded
),
main as (
select
tx_hash,
block_timestamp,
from_address as user,
'Ethereum' as chain
from
ethereum.core.fact_transactions
where
status = 'SUCCESS'
and user in (select user from users)
union all
select
tx_hash,
block_timestamp,
from_address as user,
'Avalanche' as chain
from
avalanche.core.fact_transactions
where
status = 'SUCCESS'
and user in (select user from users)
Last run: 19 days ago
1
44B
1084s