tarunb2023-04-11 01:58 PM
Updated 2024-03-21
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
WITH arbitrum as (SELECT trunc(block_timestamp,'day') AS date_,
count(distinct from_address) AS addresses
FROM arbitrum.core.fact_token_transfers
where date_ > '2022-12-31'
GROUP BY 1
ORDER BY 1),
optimism as (SELECT trunc(block_timestamp,'day') AS date_,
count(distinct from_address) AS addresses
FROM optimism.core.fact_token_transfers
where date_ > '2022-12-31'
GROUP BY 1
ORDER BY 1),
optimism as (SELECT trunc(block_timestamp,'day') AS date_,
count(distinct from_address) AS addresses
FROM polygon.core.fact_token_transfers
where date_ > '2022-12-31'
GROUP BY 1
ORDER BY 1),
eth as (SELECT trunc(block_timestamp,'day') AS date_,
count(distinct from_address) AS addresses
FROM polygon.core.fact_token_transfers
where date_ > '2022-12-31'
GROUP BY 1
ORDER BY 1),
part_one as (Select arbitrum.date_,
arbitrum.addresses as arbitrum ,
optimism.addresses as optimism
from arbitrum
inner join optimism
on arbitrum.date_ = optimism.date_),
part_two as (select part_one.date_,
part_one.arbitrum,
part_one.optimism,
eth.addresses as ETH
QueryRunArchived: QueryRun has been archived