jackguyUser Behavior
Updated 2022-06-24
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
SELECT *
FROM (
SELECT
date_trunc('day', block_timestamp) as op_day,
count(DISTINCT from_address) as op_users,
count(DISTINCT tx_hash) as op_trasaction
FROM optimism.core.fact_transactions
GROUP BY 1
) as a
JOIN (
SELECT
date_trunc('day', block_timestamp) as eth_day,
count(DISTINCT from_address) as eth_users,
count(DISTINCT tx_hash) as eth_trasaction
FROM ethereum.core.fact_transactions
GROUP BY 1
)
ON eth_day = op_day
Run a query to Download Data