CHAIN | UNIQUE_ACTIVE_ADDRESSES | |
---|---|---|
1 | base | 18626437 |
2 | bsc | 17829099 |
3 | kaia | 13009567 |
4 | ethereum | 6613330 |
5 | polygon | 5913461 |
6 | arbitrum | 5320656 |
7 | optimism | 1188920 |
8 | avalanche | 924611 |
9 | blast | 135969 |
10 | gnosis | 86812 |
developer_violaactive user on evm
Updated 5 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
WITH chain_counts AS (
-- Ethereum
SELECT
'ethereum' AS chain,
COUNT(DISTINCT from_address) AS unique_active_addresses
FROM ethereum.core.fact_transactions
WHERE block_timestamp::date >= current_date - 30
UNION ALL
-- Polygon
SELECT
'polygon' AS chain,
COUNT(DISTINCT from_address) AS unique_active_addresses
FROM polygon.core.fact_transactions
WHERE block_timestamp::date >= current_date - 30
UNION ALL
-- Avalanche
SELECT
'avalanche' AS chain,
COUNT(DISTINCT from_address) AS unique_active_addresses
FROM avalanche.core.fact_transactions
WHERE block_timestamp::date >= current_date - 30
UNION ALL
-- Base
SELECT
'base' AS chain,
COUNT(DISTINCT from_address) AS unique_active_addresses
FROM base.core.fact_transactions
WHERE block_timestamp::date >= current_date - 30
UNION ALL
-- BSC
SELECT
'bsc' AS chain,
COUNT(DISTINCT from_address) AS unique_active_addresses
FROM bsc.core.fact_transactions
WHERE block_timestamp::date >= current_date - 30
UNION ALL
Last run: 5 days ago
10
192B
105s