Chain | Txns Count | |
---|---|---|
1 | Solana | 3087271640 |
2 | Bsc | 420014306 |
3 | Base | 318364917 |
4 | Aptos | 156326051 |
5 | Near | 155937521 |
6 | Sei | 136338297 |
7 | sui | 121026038 |
8 | Stellar | 105357571 |
9 | Polygon | 96493172 |
10 | Eclipse | 93375594 |
11 | Arbitrum | 76837327 |
12 | algorand | 69087606 |
13 | Ton | 65304706 |
14 | Kaia | 62978278 |
15 | ripple | 46482616 |
16 | Ethereum | 43108597 |
17 | unichain | 39608029 |
18 | Optimism | 31812670 |
19 | celo | 29495590 |
20 | berachain | 25247758 |
Flipside Axelar AnalystsNumber of Transactions By Chain (30D)
Updated 4 days ago
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 final_table as (
with other_chains as (
with tab1 as (select blockchain as "Chain", sum(tx_count) as "Txns Count"
from external.artemis.tx_count
where block_date>=current_date-30
group by 1
union all
select blockchain as "Chain", sum(tx_count) as "Txns Count"
from external.bitquery.tx_count
where blockchain not in ('algorand','cardano','celo_mainnet','moonbeam')
and block_date>=current_date-30
group by 1)
select *
from tab1),
aleo as (select 'Aleo' as "Chain", count(distinct tx_id) as "Txns Count"
from aleo.core.fact_transitions
where block_timestamp::date>=current_date-30
group by 1),
aptos as (select 'Aptos' as "Chain", count(distinct tx_hash) as "Txns Count"
from aptos.core.fact_transactions
where block_timestamp::date>=current_date-30
group by 1),
arbitrum as (select 'Arbitrum' as "Chain", count(distinct tx_hash) as "Txns Count"
from arbitrum.core.fact_transactions
where block_timestamp::date>=current_date-30
group by 1),
aurora as (select 'Aurora' as "Chain", count(distinct tx_hash) as "Txns Count"
from aurora.core.fact_transactions
where block_timestamp::date>=current_date-30
Last run: 4 days ago
54
1KB
279s