Kruys-Collins2024-06-11 09:48 AM
Updated 2024-06-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
SELECT
DISTINCT
CASE when platform like '%uniswap%' then 'Uniswap'
when platform like '%pancakeswap%' then 'Pancakeswap'
when platform like '%dodo%' then 'Dodo'
when platform like '%kyberswap%' then 'Kyberswap'
when platform like '%hashflow%' then 'Hashflow'
else platform
end as Platform
,count(tx_hash) Transanctions
,count( DISTINCT sender) User
FROM
ethereum.defi.ez_dex_swaps
GROUP BY 1
QueryRunArchived: QueryRun has been archived