bachiflow speed1
    Updated 2022-12-12
    with flow_txns as (
    select date(block_timestamp) as day,
    count (distinct tx_id) as no_of_txns,
    no_of_txns/(24*60) as txns_per_min
    from flow.core.fact_transactions
    where block_timestamp >= '2022-01-01'
    group by day
    --order by day DESC
    ),

    sol_txns as (
    select date(block_timestamp) as day,
    count (distinct tx_id) as no_of_txns,
    no_of_txns/(24*60) as txns_per_min
    from solana.core.fact_transactions
    where block_timestamp >= '2022-01-01'
    group by day
    --order by day DESC
    ),

    eth_txns as (
    select date(block_timestamp) as day,
    count (distinct tx_hash) as no_of_txns,
    no_of_txns/(24*60) as txns_per_min
    from ethereum.core.fact_transactions
    where block_timestamp >= '2022-01-01'
    group by day
    --order by day desc
    ),

    bsc_txns as (
    select date(block_timestamp) as day,
    count (distinct tx_hash) as no_of_txns,
    no_of_txns/(24*60) as txns_per_min
    from bsc.core.fact_transactions
    where block_timestamp >= '2022-01-01'
    Run a query to Download Data