flipside
FLIPSIDEAI
IDG PLAYBOOK
JOURNEYS
INSIGHTS
About
Log in
GET STARTED
flipside
Which addresses received the most transaction volume (worth) in the last month, quarter, year
rezarwz
Which addresses received the most transaction volume (worth) in the last month, quarter, year
Updated 2022-08-10
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
with
tornado_address
as
(
select
*
from
ethereum
.
core
.
dim_labels
where
label
=
'tornado cash'
and
LABEL_SUBTYPE
=
'general_contract'
)
,
main
as
(
SELECT
*
FROM
(
tornado_address
tor
inner
join
ethereum
.
core
.
ez_token_transfers
ez
on
ez
.
TO_ADDRESS
=
tor
.
address
)
)
SELECT
*
from
main
limit
1000
Results
Run a query to Download Data