KisoQuickswap token volume copy
Updated 2024-08-17
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
›
⌄
-- forked from Quickswap token volume @ https://flipsidecrypto.xyz/edit/queries/9b651546-31d1-4409-9169-704b58923546
SELECT
--date_trunc('day', block_timestamp) as Date,
count(distinct origin_from_address),
--event_name,
--platform,
symbol_in
--sum(amount_in_usd) as amount_in_usd
--tx_hash
from
polygon.defi.ez_dex_swaps
where
amount_in_usd is not null
and platform='quickswap-v3'
--and event_name='Swap'
and Date(block_timestamp) >= '2023-01-01'
group by 2
order by 1 DESC
LIMIT 100
QueryRunArchived: QueryRun has been archived