flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
Untitled Query
0x0D203C32bbd48653fcbf1898B7a8d757d391f7Bc
Untitled Query
Updated 2022-08-25
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
--不同平台的交易数量
SELECT
date_trunc
(
'month'
,
block_timestamp
)
AS
_
date
,
PLATFORM
,
count
(
DISTINCT
(
TX_HASH
)
)
as
transactionnumber
FROM
ethereum
.
core
.
ez_dex_swaps
where
PLATFORM
!=
'curve'
GROUP
by
1
,
2
ORDER
BY
1
--不同平台的TVL
--
Results
Run a query to Download Data