NuveveCryptoArchivedTotal Squid Users By Chain
    Updated 2023-04-28
    with ethereum as (
    select
    concat('Ethereum') as chain,
    count(distinct from_address) as active_users
    from ethereum.core.fact_transactions
    where to_address = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
    ),

    arbitrum as (
    select
    concat('Arbitrum') as chain,
    count(distinct from_address) as active_users
    from arbitrum.core.fact_transactions
    where to_address = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
    ),

    avalanche as (
    select
    concat('Avalanche') as chain,
    count(distinct from_address) as active_users
    from avalanche.core.fact_transactions
    where to_address = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
    ),

    polygon as (
    select
    concat('Polygon') as chain,
    count(distinct from_address) as active_users
    from polygon.core.fact_transactions
    where to_address = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
    ),

    bsc as (
    select
    concat('BSC') as chain,
    count(distinct from_address) as active_users
    Run a query to Download Data