TOKEN_PAIR | Number of Users | Swap Count | Swap Volume | |
---|---|---|---|---|
1 | WETH➡USDC | 23870 | 125596 | 252877852.42 |
2 | USDC➡WETH | 20959 | 112625 | 301800606.73 |
3 | USDC➡axlUSDC | 16841 | 49886 | 147268679.8 |
4 | USDT➡USDC | 10655 | 32607 | 99215305.13 |
5 | USDC➡USDT | 10293 | 35459 | 105737976.41 |
6 | WETH➡USDbC | 7926 | 28241 | 49395061.76 |
7 | USDT➡WETH | 7063 | 19890 | 43992517.34 |
8 | WETH➡USDT | 6506 | 18500 | 30105393.97 |
9 | WMATIC➡USDC | 6192 | 12400 | 9073335.18 |
10 | USDbC➡WETH | 5071 | 22022 | 42633769.02 |
11 | USDbC➡axlUSDC | 4777 | 10449 | 39925303.97 |
12 | axlUSDC➡USDC | 4510 | 23775 | 104679677.83 |
13 | USDbC➡USDC | 3781 | 14481 | 42678994.25 |
14 | USDC➡USDbC | 3571 | 14127 | 40059096.45 |
15 | WETH➡USDB | 3426 | 14464 | 75895419.28 |
16 | USDC➡WMATIC | 3356 | 9507 | 9920774.04 |
17 | ARB➡WETH | 3235 | 6301 | 3372927.51 |
18 | USDC➡DAI | 2995 | 8726 | 23903721 |
19 | DAI➡USDC | 2760 | 7798 | 34807349.67 |
20 | WMATIC➡USDT | 2669 | 5306 | 1755128.25 |
Eman-Raz90- Popular Token Pairs Swapped by Squid Users Post-Bridging
Updated 44 minutes ago
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
›
⌄
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}}')
select token_pair,
Last run: 44 minutes agoAuto-refreshes every 24 hours
20
797B
128s