flipside
Products
For Protocols
For Analysts
For Explorers
About
Log in
Become a Partner
flipside
Swap Success Rate by Platform
jorshimayor
Swap Success Rate by Platform
Updated 2024-08-27
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
SELECT
platform
,
SUM
(
CASE
WHEN
amount_in_usd
IS
NOT
NULL
AND
amount_out_usd
IS
NOT
NULL
THEN
1
ELSE
0
END
)
/
COUNT
(
*
)
::
FLOAT
AS
success_rate
FROM
kaia
.
defi
.
ez_dex_swaps
GROUP
BY
platform
ORDER
BY
success_rate
DESC
;
Results
QueryRunArchived: QueryRun has been archived