adriaparcerisassquid destinations
Updated 2023-04-14
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
-- 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