omer93Avalanche TPS comparison
    Updated 2023-11-22
    WITH
    avx as (
    select
    trunc(block_timestamp,'day') as date,
    count(distinct tx_hash) as txs,
    txs/84600 as tps
    from avalanche.core.fact_transactions
    where block_timestamp>=current_date-interval '3 months' and status='SUCCESS'
    group by 1
    order by 1 asc
    ),
    cosmos as (
    select
    trunc(block_timestamp,'day') as date,
    count(distinct tx_id) as txs,
    txs/84600 as tps
    from cosmos.core.fact_transactions
    where block_timestamp>=current_date-interval '3 months' and status='SUCCESS'
    group by 1
    order by 1 asc
    ),
    near as (
    select
    trunc(block_timestamp,'day') as date,
    count(distinct tx_hash) as txs,
    txs/84600 as tps
    from near.core.fact_transactions
    where block_timestamp>=current_date-interval '3 months' and status='SUCCESS'
    group by 1
    order by 1 asc
    ),
    sei as (
    select
    trunc(block_timestamp,'day') as date,
    count(distinct tx_id) as txs,
    txs/84600 as tps
    Run a query to Download Data