cloudr3nAvax Users on other chains
    Updated 2023-09-16
    -- compare mau vs other evm chains

    with
    avax as (
    select
    date_trunc('month',block_timestamp) as month, from_address, count(distinct tx_hash)
    FROM
    avalanche.core.fact_transactions
    group by month, from_address
    ),

    arbi as (
    select
    date_trunc('month',block_timestamp) as month, from_address, count(distinct tx_hash), 'arbi' as arbi
    FROM
    arbitrum.core.fact_transactions
    group by month, from_address
    ),

    opti as (
    select
    date_trunc('month',block_timestamp) as month, from_address, count(distinct tx_hash), 'opti' as opti
    FROM
    optimism.core.fact_transactions
    group by month, from_address
    ),

    poly as (
    select
    date_trunc('month',block_timestamp) as month, from_address, count(distinct tx_hash), 'poly' as poly
    FROM
    polygon.core.fact_transactions
    group by month, from_address
    ),

    bsc as (
    Run a query to Download Data