hessShare of Users to avalanche
    with chain as ( select 'Arbitrum' as chain, block_timestamp, tx_hash , from_address as user, amount
    from arbitrum.core.ez_token_transfers
    where to_address = '0x0000000000000000000000000000000000000000'
    and contract_address = lower('0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07')
    and to_address not in ('0x5d3e4c0fe11e0ae4c32f0ff74b4544c49538ac61',
    '0x86355f02119bdbc28ed6a4d5e0ca327ca7730fff',
    '0x2ef002aa0ab6761b6aea8d639dcdaa20d79b768c')
    and tx_hash in (select tx_hash
    from arbitrum.core.fact_decoded_event_logs
    where DECODED_LOG:"_dstChainId" = '106')
    and block_timestamp::date >= '2023-01-01'
    UNION
    select 'BSC' chain , block_timestamp, tx_hash , from_address as user, amount
    from bsc.core.ez_token_transfers
    where to_address = '0x0000000000000000000000000000000000000000'
    and contract_address = lower('0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07')
    and to_address not in ('0x5d3e4c0fe11e0ae4c32f0ff74b4544c49538ac61',
    '0x86355f02119bdbc28ed6a4d5e0ca327ca7730fff',
    '0x2ef002aa0ab6761b6aea8d639dcdaa20d79b768c')
    and tx_hash in (select tx_hash
    from bsc.core.fact_decoded_event_logs
    where DECODED_LOG:"_dstChainId" = '106')
    and block_timestamp::date >= '2023-01-01')
    ,
    new as ( select count(DISTINCT(chain)) as chains,
    user
    from chain
    group by 2)

    select case when chains = 2 then 'Two Routes' else 'Only One Route' end as type,count(DISTINCT(user)) as users
    from new
    group by 1


    Run a query to Download Data