adriaparcerisassquid sources dex
Updated 2023-04-14
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
›
⌄
-- 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