Blockchain | Cumulative Transactions | Cumulative Wallets | |
---|---|---|---|
1 | Ronin | 176896763 | 7497986 |
2 | GUN | 391247305 | 13310688 |
3 | B3 | 216448186 | 5776438 |
yasminTOTAL
Updated 2025-02-19
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 tx_hash) AS transactions,
-- COUNT(DISTINCT from_address) AS users
-- FROM base.core.fact_transactions
-- WHERE block_timestamp::date >= '2024-09-14'
-- AND TX_SUCCEEDED = 'TRUE'
-- GROUP BY blockchain
-- UNION ALL
-- SELECT
-- 'Polygon' AS blockchain,
-- COUNT(DISTINCT tx_hash) AS transactions,
-- COUNT(DISTINCT from_address) AS users
-- FROM polygon.core.fact_transactions
-- WHERE block_timestamp::date >= '2024-09-14'
-- AND status = 'SUCCESS'
-- GROUP BY blockchain
-- UNION ALL
-- SELECT
-- 'Solana' AS blockchain,
-- COUNT(DISTINCT tx_id) AS transactions,
-- COUNT(DISTINCT signers[0]) AS users
-- FROM solana.core.fact_transactions
-- WHERE block_timestamp::date >= '2024-09-14'
-- AND succeeded = true
-- GROUP BY blockchain
-- UNION ALL
SELECT
Last run: 27 days ago
3
81B
11s