BLOCKCHAIN | CUMULATIVE WALLETS | |
---|---|---|
1 | Ethereum | 16012418 |
2 | TON | 14382677 |
3 | Polygon | 12834810 |
4 | Arbitrum | 10014002 |
5 | B3 | 3535413 |
6 | Ronin | 1990076 |
7 | Gunz | 12279 |
yasmin12 Total Active Wallets Across Chain
Updated 3 hours ago
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
standard_chains AS (
-- SELECT
-- 'Base' AS blockchain,
-- COUNT(DISTINCT from_address) AS users
-- FROM base.core.fact_transactions
-- WHERE block_timestamp::date >= '2025-03-10'
-- AND TX_SUCCEEDED = 'TRUE'
-- GROUP BY blockchain
-- UNION ALL
SELECT
'Polygon' AS blockchain,
COUNT(DISTINCT from_address) AS users
FROM polygon.core.fact_transactions
WHERE block_timestamp::date >= '2025-03-10'
AND TX_SUCCEEDED = true
GROUP BY blockchain
UNION ALL
-- SELECT
-- 'Avalanche' AS blockchain,
-- COUNT(DISTINCT from_address) AS users
-- FROM avalanche.core.fact_transactions
-- WHERE block_timestamp::date >= '2025-03-10'
-- AND status = 'SUCCESS'
-- GROUP BY blockchain
-- UNION ALL
SELECT
'Ronin' AS blockchain,
COUNT(DISTINCT FROM_ADDRESS) AS users
FROM ronin.core.fact_transactions
WHERE block_timestamp::date >= '2025-03-10'
AND TX_SUCCEEDED = true
GROUP BY blockchain
UNION ALL
SELECT
'Arbitrum' AS blockchain,
Last run: about 3 hours agoAuto-refreshes every 24 hours
7
131B
76s