0xMeshkiDex on Arbitrum
Updated 2024-07-10
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
›
⌄
SELECT
date_trunc(d, block_timestamp) as date,
case
when platform = 'uniswap-v3' then 'uniswap'
when platform = 'camelot-v2' then 'camelot'
when platform = 'fraxswap' then 'fraxswap'
when platform = 'kyberswap-v2' then 'kyberswap'
when platform = 'camelot-v3' then 'camelot'
when platform = 'gmx' then 'gmx'
when platform = 'hashflow' then 'hashflow'
when platform = 'dodo-v1' then 'dodo'
when platform = 'trader-joe-v1' then 'traderjoe'
when platform = 'curve' then 'curve'
when platform = 'kyberswap-v1' then 'kyberswap'
when platform = 'uniswap-v2' then 'uniswap'
when platform = 'hashflow-v3' then 'hashflow'
when platform = 'woofi' then 'woofi'
when platform = 'balancer' then 'balancer'
when platform = 'dodo-v2' then 'dodo'
when platform = 'sushiswap' then 'sushiswap'
else 'others'
end as platform,
count(DISTINCT tx_hash) as total_transactions,
count(DISTINCT origin_from_address) as uniqu_users,
sum(amount_in_usd) as volume,
from
arbitrum.defi.ez_dex_swaps
where
block_timestamp >= '2024-06-10'
group by
1,
2
order by
1 asc;
QueryRunArchived: QueryRun has been archived