yasmin-n-d-r-hopp5
Updated 2022-10-20
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
select
date_trunc('week', BLOCK_TIMESTAMP) AS week,
project_name,
count(DISTINCT tx_hash) as total_txs
from
(
SELECT
*
from
optimism.core.dim_labels
inner join optimism.core.fact_event_logs on contract_address = address
)
where
label_type = 'dapp'
GROUP by
1 ,2
order by
2 desc
Run a query to Download Data