Updated 2023-05-05
    with squid as (
    select
    concat('Squid') as bridge,
    count(distinct total.from_address) as total_users
    from (
    select
    from_address
    from arbitrum.core.fact_transactions as arbitrum
    where arbitrum.to_address = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
    union
    select
    from_address
    from avalanche.core.fact_transactions as avax
    where avax.to_address = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
    union
    select
    from_address
    from bsc.core.fact_transactions as bsc
    where bsc.to_address = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
    union
    select
    from_address
    from ethereum.core.fact_transactions as ethereum
    where ethereum.to_address = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
    union
    select
    from_address
    from polygon.core.fact_transactions as polygon
    where polygon.to_address = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
    ) as total
    ),

    stargate as (
    select
    concat('Stargate') as bridge,
    count(distinct total.from_address) as total_users
    Run a query to Download Data