Date | # of Users | Average # of TXs | Average # of Chains | |
---|---|---|---|---|
1 | 2015-01-01 00:00:00.000 | 1 | 1789 | 6 |
2 | 2016-01-01 00:00:00.000 | 37 | 3085 | 6 |
3 | 2017-01-01 00:00:00.000 | 2411 | 2612 | 6 |
4 | 2018-01-01 00:00:00.000 | 7899 | 1573 | 6 |
5 | 2019-01-01 00:00:00.000 | 5291 | 1386 | 5 |
6 | 2020-01-01 00:00:00.000 | 12512 | 2522 | 6 |
7 | 2021-01-01 00:00:00.000 | 92414 | 1701 | 6 |
8 | 2022-01-01 00:00:00.000 | 158546 | 745 | 5 |
9 | 2023-01-01 00:00:00.000 | 370416 | 349 | 5 |
10 | 2024-01-01 00:00:00.000 | 566616 | 134 | 3 |
11 | 2025-01-01 00:00:00.000 | 509499 | 18 | 1 |
MoDeFimonad tn - users chains activities history
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
11
441B
709s