flipside
Products
For Protocols
For Analysts
For Explorers
About
Log in
Become a Partner
flipside
select * from ethereum.core.ez_dex_swaps - Daily Sum
Ant-DAO-Ment
select * from ethereum.core.ez_dex_swaps - Daily Sum
Updated 2023-11-01
Copy Reference
Fork
9
1
2
3
4
5
6
7
8
9
›
⌄
SELECT
date_trunc
(
'day'
,
block_timestamp
)
as
day_date
,
sum
(
amount_in_usd
)
as
sum_amount_usd
FROM
ethereum
.
core
.
ez_dex_swaps
WHERE
block_timestamp
>
current_date
-
30
AND
amount_in_usd
is
not
null
group
by
1
-- this is the first column
Results
Run a query to Download Data