SUM("TOTAL USERS") | |
---|---|
1 | 717373346 |
Flipside Axelar AnalystsTotal Number of Users on Various Chains in Web3
Updated 2025-05-28
999
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 tam as (
with arbitrum as (select 'Arbitrum' as "Chain", count(distinct from_address) as "Total Users"
from arbitrum.core.fact_transactions
where block_timestamp::date>='2024-01-01' and tx_succeeded='TRUE'
group by 1),
avalanche as (select 'Avalanche' as "Chain", count(distinct from_address) as "Total Users"
from avalanche.core.fact_transactions
where block_timestamp::date>='2024-01-01' and tx_succeeded='TRUE'
group by 1),
base as (select 'Base' as "Chain", count(distinct from_address) as "Total Users"
from base.core.fact_transactions
where block_timestamp::date>='2024-01-01' and tx_succeeded='TRUE'
group by 1),
bsc as (select 'Bsc' as "Chain", count(distinct from_address) as "Total Users"
from bsc.core.fact_transactions
where block_timestamp::date>='2024-01-01' and tx_succeeded='TRUE'
group by 1),
ethereum as (select 'Ethereum' as "Chain", count(distinct from_address) as "Total Users"
from ethereum.core.fact_transactions
where block_timestamp::date>='2024-01-01' and tx_succeeded='TRUE'
group by 1),
polygon as (select 'Polygon' as "Chain", count(distinct from_address) as "Total Users"
from polygon.core.fact_transactions
where block_timestamp::date>='2024-01-01' and tx_succeeded='TRUE'
group by 1),
optimism as (select 'Optimism' as "Chain", count(distinct from_address) as "Total Users"
from optimism.core.fact_transactions
where block_timestamp::date>='2024-01-01' and tx_succeeded='TRUE'
group by 1),
Last run: 19 days ago
1
13B
445s