Eman-Raz19- 📋Interaction of Squid Users with Other Bridges
    Updated 2025-03-09
    with tab1 as (select distinct data:call:transaction:from as user
    from axelar.axelscan.fact_gmp
    where data:approved:returnValues:contractAddress in
    ('0xce16F69375520ab01377ce7B88f5BA8C48F8D666',
    '0x492751eC3c57141deb205eC2da8bFcb410738630',
    '0xDC3D8e1Abe590BCa428a8a2FC4CfDbD1AcF57Bd9')
    and status = 'executed'
    and event = 'ContractCallWithToken'
    and simplified_status = 'received'
    and IS_CALL_FROM_RELAYER = 'false'
    and IS_INVALID_CALL = 'false'
    and IS_TWO_WAY = 'false'
    and gas_status = 'gas_paid_enough_gas'
    and (created_at::date >= '{{Start_Date}}' and created_at::date <= '{{End_Date}}')
    and data:value is not null),

    tab2 as (select blockchain, platform, block_timestamp, tx_hash, source_chain, destination_chain,
    source_address, destination_address, token_symbol, amount, amount_usd
    from crosschain.defi.ez_bridge_activity
    where block_timestamp::date >= '{{Start_Date}}' and block_timestamp::date <= '{{End_Date}}')

    select platform as "Bridge", count(distinct user) as "Number of Squid Users",
    count(distinct tx_hash) as "Number of Txns" , sum(amount_usd) as "Volume of Txns ($USD)",
    avg(amount_usd) as "Average Volume ($USD)" ,count(distinct token_symbol) as "Number of Tokens",
    count(distinct (source_chain || '➡' || destination_chain)) as "Number of Routes"
    from tab1 left join tab2 on tab1.user=tab2.source_address
    where platform <> 'axelar' and amount_usd is not null
    group by 1
    order by 2 desc
    Last run: about 2 months ago
    Bridge
    Number of Squid Users
    Number of Txns
    Volume of Txns ($USD)
    Average Volume ($USD)
    Number of Tokens
    Number of Routes
    1
    across-v31042296972181282203153.481839.0223365371284
    2
    hop77901199602147598461.04739.4490197691348
    3
    symbiosis72474260289220070800.42845.4473875241511
    4
    dln_debridge59162770457622571594.68808.0476111541963
    5
    stargate51422212168249021964.011173.7018023921464
    6
    allbridge43564113996182963357.171604.9417295611979
    7
    zksync era: diamond proxy308324632290516002.911954.06076831711
    8
    wormhole28446175964639716902.133635.498750483494136
    9
    orbiter266919633349980636.4518.831930906135
    10
    zora: bridge184022331711202320.16480.43574044711
    11
    base: base bridge986524146253867379.2310513.8482245511731
    12
    polygon (matic): zkevm bridge86821163632793173.672818.251432623691
    13
    hyperlane71551560291513957.76000015865.527352903112
    14
    celer_cbridge592823587117465640.44980.1009199984191
    15
    zksync lite: bridge578571511786363.04249.806046707131
    16
    meson38081294374767558.945776.6792042038218
    17
    optimism: gateway2467518261093191.6411789.500509456781
    18
    starknet: starkgate eth bridge2387345913650858.723946.47549002611
    19
    synapse226115044121857744.568098.4744174921768
    20
    arbitrum one: l1 erc20 gateway16846956282497795.8340612.1040583672621
    34
    2KB
    23s