Chain | Transactions | Chain Group | |
---|---|---|---|
1 | Monad | 3829984 | Monad Testnet |
2 | Aptos | 4130245 | Other |
3 | Arbitrum | 1813101 | Other |
4 | Avalanche | 305183 | Other |
5 | Base | 7485770 | Other |
6 | Bitcoin | 494421 | Other |
7 | BSC | 4610409 | Other |
8 | Ethereum | 1296226 | Other |
9 | Mantle | 289961 | Other |
10 | Near | 6783334 | Other |
11 | Optimism | 883230 | Other |
12 | Polygon | 3302177 | Other |
13 | Sei | 4079287 | Other |
i_danMonad: Monad VS Live Chains
Updated 2025-02-21
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 all_chains AS (
SELECT
'Monad' AS Chain
, COUNT(tx_hash) AS Transactions
From monad.testnet.fact_transactions
WHERE block_timestamp >= current_timestamp - interval '24 hours'
GROUP BY 1
UNION ALL
SELECT
'Aptos' AS Chain
, COUNT(tx_hash) AS Transactions
From aptos.core.fact_transactions
WHERE block_timestamp >= current_timestamp - interval '24 hours'
GROUP BY 1
UNION ALL
SELECT
'Arbitrum' AS Chain
, COUNT(tx_hash) AS Transactions
From arbitrum.core.fact_transactions
WHERE block_timestamp >= current_timestamp - interval '24 hours'
GROUP BY 1
UNION ALL
SELECT
'Avalanche' AS Chain
, COUNT(tx_hash) AS Transactions
From avalanche.core.fact_transactions
WHERE block_timestamp >= current_timestamp - interval '24 hours'
GROUP BY 1
UNION ALL
Last run: about 1 month ago
13
355B
9s