NavidUntitled Query
Updated 2022-08-10Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
with addresses as (
select
address,
address_name,
label_subtype
from
ethereum.core.dim_labels
where
label like '%tornado cash%'
), transactions as (
select
date(block_timestamp) as day,
to_address,
eth_value
from
ethereum.core.fact_transactions
where
from_address in (select address from addresses)
-- and
-- block_timestamp > CURRENT_DATE-30 and block_timestamp<CURRENT_DATE
)
select * from transactions
Run a query to Download Data