elsinaChain Comparision (AVG Daily Active Users)
    Updated 2024-12-04
    with transaction as (
    SELECT
    date_trunc('day', block_timestamp) as date,
    'Aptos' as chain,
    count(distinct tx_hash) as tx_count,
    count(distinct sender) as unique_user_count,
    tx_count / 86400 as tps
    FROM aptos.core.fact_transactions
    WHERE block_timestamp::date between '2024-11-01' and '2024-11-30'
    group by 1

    union all

    SELECT
    date_trunc('day', block_timestamp) as date,
    'Arbitrum' as chain,
    count(distinct tx_hash) as tx_count,
    count(distinct from_address) as unique_user_count,
    tx_count / 86400 as tps
    FROM arbitrum.core.fact_transactions
    WHERE block_timestamp::date between '2024-11-01' and '2024-11-30'
    group by 1

    union all

    SELECT
    date_trunc('day', block_timestamp) as date,
    'Aurora' as chain,
    count(distinct tx_hash) as tx_count,
    count(distinct from_address) as unique_user_count,
    tx_count / 86400 as tps
    FROM aurora.core.fact_transactions
    WHERE block_timestamp::date between '2024-11-01' and '2024-11-30'
    group by 1

    union all
    QueryRunArchived: QueryRun has been archived