adriaparcerisassquid destinations
    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?

    SELECT
    trunc(block_timestamp,'day') as date,
    destination_chain,
    count(distinct tx_hash) as actions,
    count(distinct sender) as active_users--,
    --sum(amount) as volume
    from axelar.core.ez_squid x
    group by 1,2
    order by 1 asc


    Run a query to Download Data