TOKEN_PAIR | Swap Count | Swap Volume | |
---|---|---|---|
1 | WETH➡USDC | 103005 | 232280222.62 |
2 | USDC➡WETH | 90881 | 281104959.93 |
3 | USDC➡axlUSDC | 41513 | 120927780.78 |
4 | USDC➡USDT | 33413 | 100469222.25 |
5 | USDT➡USDC | 30640 | 92774335.61 |
6 | axlUSDC➡USDC | 22648 | 85109301.52 |
7 | WETH➡USDbC | 19072 | 39648080.56 |
8 | USDB➡WETH | 18290 | 155578882.51 |
9 | USDT➡WETH | 15263 | 37669650.7 |
10 | WETH➡USDB | 14464 | 75895419.28 |
11 | WETH➡USDT | 13982 | 24317521.9 |
12 | WMATIC➡USDC | 12400 | 9073335.18 |
13 | USDbC➡WETH | 12207 | 31036046.4 |
14 | USDbC➡USDC | 9934 | 31567554.58 |
15 | USDC➡USDbC | 9789 | 29751816.21 |
16 | USDC➡WMATIC | 9507 | 9920774.04 |
17 | WETH➡WBTC | 7920 | 75080424.08 |
18 | USDC➡DAI | 7912 | 23197179.31 |
19 | AERO➡WETH | 7626 | 4002581.74 |
20 | WETH➡BLAST | 7509 | 76639204.39 |
Eman-Raz91- Popular Token Pairs Swapped by Squid Users Post-Bridging
Updated 2025-03-09
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
27
28
29
30
31
32
33
34
35
36
›
⌄
-- forked from 90- Popular Token Pairs Swapped by Squid Users Post-Bridging @ https://flipsidecrypto.xyz/studio/queries/e8bb06df-9d11-4489-8cf4-3b94bf02ef96
with table1 as (select
to_varchar(data:call:transaction:from) as squid_user,
created_at as bridge_date,
to_varchar(id) as transaction_hash,
to_varchar(lower(data:call:chain)) as source_chain,
to_varchar(lower(data:call:returnValues:destinationChain)) as destination_chain,
data:approved:returnValues:symbol as symbol
FROM
axelar.axelscan.fact_gmp
WHERE data:approved:returnValues:contractAddress in
('0xce16F69375520ab01377ce7B88f5BA8C48F8D666',
'0x492751eC3c57141deb205eC2da8bFcb410738630',
'0xDC3D8e1Abe590BCa428a8a2FC4CfDbD1AcF57Bd9') and
status = 'executed'
AND simplified_status = 'received'
AND created_at :: date >= '{{Start_Date}}'
AND created_at :: date <= '{{End_Date}}'),
table2 as (
select
blockchain,
block_timestamp as swap_date,
tx_hash,
trader,
platform,
coalesce(amount_in_usd,amount_out_usd) as volume_usd,
symbol_in,
symbol_out,
symbol_in || '➡' || symbol_out as token_pair
from
crosschain.defi.ez_dex_swaps
where
block_timestamp :: date >= '{{Start_Date}}'
and block_timestamp :: date <= '{{End_Date}}')
Last run: 24 days ago
20
688B
25s