Updated 2023-08-29
    with tx as (
    select
    date_trunc('month',block_timestamp) as month
    ,'ETH' as chain
    ,count(*) as tx
    from ethereum.core.fact_transactions
    group by 1,2

    union all
    select
    date_trunc('month',block_timestamp) as month
    ,'Arbitrum' as chain
    ,count(*) as tx
    from arbitrum.core.fact_transactions
    group by 1,2

    union all
    select
    date_trunc('month',block_timestamp) as month
    ,'Aurora' as chain
    ,count(*) as tx
    from aurora.core.fact_transactions
    group by 1,2

    union all
    select
    date_trunc('month',block_timestamp) as month
    ,'Avax' as chain
    ,count(*) as tx
    from avalanche.core.fact_transactions
    group by 1,2

    union all
    select
    date_trunc('month',block_timestamp) as month
    ,'Axelar' as chain
    Run a query to Download Data