i_danACTIVE USERS - UNISWAP V3
Updated 2024-05-28
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
›
⌄
SELECT
date_trunc('day', block_timestamp) date,
COUNT(DISTINCT origin_from_address) Users
--platform,
--symbol_in,
--amount_in,
--amount_in_usd,
--tx_hash
--event_name
FROM
ethereum.defi.ez_dex_swaps
WHERE
event_name = 'Swap'
AND
amount_in_usd IS NOT NULL
AND
platform = 'uniswap-v3'
AND
date >= '2023-01-01'
GROUP BY
1
ORDER BY 1 DESC
LIMIT 1000
QueryRunArchived: QueryRun has been archived