Eman-Raz5- Blast: Number of Users
Updated 2025-03-20
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
with overview as (with ink as (select from_address as user
from ink.core.fact_transactions
where tx_succeeded='TRUE'),
Blast as (select from_address as user, tx_hash
from Blast.core.fact_transactions
where status='SUCCESS')
select ink.user as user, count(distinct tx_hash) as txns_count, 'Blast' as "Chain"
from ink left join Blast on ink.user=Blast.user
group by 1)
select "Chain", count(distinct user) as "Number of Users"
from overview
where txns_count>0
group by 1
Auto-refreshes every 24 hours
QueryRunArchived: QueryRun has been archived