CHAIN | Chain Users | Other Users | Total TXs | Average # of TXs | |
---|---|---|---|---|---|
1 | Arbitrum | 1225719 | 224242981 | 94557678 | 77 |
2 | Avalanche | 386386 | 225082314 | 19401107 | 50 |
3 | BSC | 1083092 | 224385608 | 139615887 | 129 |
4 | Base | 1352898 | 224115802 | 120231290 | 89 |
5 | Ethereum | 1236711 | 224231989 | 48004565 | 39 |
6 | Optimism | 991577 | 224477123 | 56972824 | 57 |
7 | Polygon | 1048563 | 224420137 | 157394417 | 150 |
MoDeFimonad tn - Testnet Users On Top 7 Chains
Updated 8 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 address_array as (
select distinct FROM_ADDRESS as address
from monad.testnet.fact_transactions),
wallets_txs as
(select FROM_ADDRESS as wallet, 'Polygon' as chain, tx_hash, BLOCK_TIMESTAMP
from polygon.core.fact_transactions
where FROM_ADDRESS in (select address from address_array)
union all
select FROM_ADDRESS, 'Optimism' as chain, tx_hash, BLOCK_TIMESTAMP
from optimism.core.fact_transactions
where FROM_ADDRESS in (select address from address_array)
union all
select FROM_ADDRESS, 'Arbitrum', tx_hash, BLOCK_TIMESTAMP
from arbitrum.core.fact_transactions
where FROM_ADDRESS in (select address from address_array)
union all
select FROM_ADDRESS, 'Ethereum', tx_hash, BLOCK_TIMESTAMP
from ethereum.core.fact_transactions
where FROM_ADDRESS in (select address from address_array)
union all
select FROM_ADDRESS, 'Avalanche', tx_hash, BLOCK_TIMESTAMP
from avalanche.core.fact_transactions
where FROM_ADDRESS in (select address from address_array)
union all
select FROM_ADDRESS, 'BSC', tx_hash, BLOCK_TIMESTAMP
from bsc.core.fact_transactions
where FROM_ADDRESS in (select address from address_array)
union all
-- select FROM_ADDRESS, 'Gnosis', tx_hash, BLOCK_TIMESTAMP
-- from gnosis.core.fact_transactions
-- where FROM_ADDRESS in (select address from address_array)
-- union all
-- select FROM_ADDRESS, 'Aurora', tx_hash, BLOCK_TIMESTAMP
-- from aurora.core.fact_transactions
-- where FROM_ADDRESS in (select address from address_array)
Last run: 8 days ago
7
296B
840s