Flipside Axelar AnalystsNumber of Transactions By Chain (30D)
    Updated 4 days ago
    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
    Chain
    Txns Count
    1
    Solana3087271640
    2
    Bsc420014306
    3
    Base318364917
    4
    Aptos156326051
    5
    Near155937521
    6
    Sei136338297
    7
    sui121026038
    8
    Stellar105357571
    9
    Polygon96493172
    10
    Eclipse93375594
    11
    Arbitrum76837327
    12
    algorand69087606
    13
    Ton65304706
    14
    Kaia62978278
    15
    ripple46482616
    16
    Ethereum43108597
    17
    unichain39608029
    18
    Optimism31812670
    19
    celo29495590
    20
    berachain25247758
    54
    1KB
    279s