flipside
FLIPSIDEAI
IDG PLAYBOOK
JOURNEYS
INSIGHTS
About
Log in
GET STARTED
flipside
swappers count on daily basis since the beginning of 2023 and swap count on daily basis since the beginning of 2023
superfly
swappers count on daily basis since the beginning of 2023 and swap count on daily basis since the beginning of 2023
Updated 2023-01-11
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
with
final_data
as
(
select
*
from
(
select
to_date
(
block_timestamp
)
as
date
,
count
(
distinct
tx_hash
)
as
tx_hash_swap_count
,
count
(
distinct
trader
)
as
traders_count
from
near
.
core
.
ez_dex_swaps
where
date
>=
'2023-01-01'
-- and date <= '2022-12-31'
group
by
date
)
)
select
*
from
final_data
Results
Run a query to Download Data