Date | CHAIN | # of Users | Total TXs | Average # of TXs | |
---|---|---|---|---|---|
1 | 2015 | Arbitrum | 1 | 164 | 164 |
2 | 2015 | BSC | 1 | 1341 | 1341 |
3 | 2015 | Base | 1 | 38 | 38 |
4 | 2015 | Ethereum | 1 | 211 | 211 |
5 | 2015 | Optimism | 1 | 8 | 8 |
6 | 2015 | Polygon | 1 | 27 | 27 |
7 | 2016 | Arbitrum | 33 | 10294 | 312 |
8 | 2016 | Avalanche | 26 | 15232 | 586 |
9 | 2016 | BSC | 34 | 23094 | 679 |
10 | 2016 | Base | 30 | 9697 | 323 |
11 | 2016 | Ethereum | 37 | 28023 | 757 |
12 | 2016 | Optimism | 27 | 7584 | 281 |
13 | 2016 | Polygon | 32 | 20205 | 631 |
14 | 2017 | Arbitrum | 2157 | 883175 | 409 |
15 | 2017 | Avalanche | 1655 | 246712 | 149 |
16 | 2017 | BSC | 2167 | 1425014 | 658 |
17 | 2017 | Base | 1948 | 628012 | 322 |
18 | 2017 | Ethereum | 2411 | 1384184 | 574 |
19 | 2017 | Optimism | 2010 | 517951 | 258 |
20 | 2017 | Polygon | 2162 | 1212067 | 561 |
MoDeFimonad tn - users chains activities hitm
Updated 2025-03-09
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: 11 days ago
76
2KB
725s