adriaparcerisassquid sources dex
    Updated 2023-04-14

    -- Squid offers asset-to-asset cross-chain swaps with the click of a button.
    -- On a source and destination basis, what are the most popular DEXs used by Squid?

    with
    arbitrum as (
    SELECT
    x.block_timestamp,contract_name,origin_from_address,origin_to_address
    from axelar.core.ez_squid x
    join arbitrum.core.fact_event_logs y on x.tx_hash=y.tx_hash
    where destination_chain='Arbitrum'
    order by 1 asc limit 10
    ),
    avalanche as (

    ),
    ethereum as (

    ),
    polygon as (

    ),




    Run a query to Download Data