phu50. active user
Updated 2022-10-19Copy Reference Fork
999
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
optimism_cte as (
select
block_timestamp
, tx_hash
, from_address
, status
from optimism.core.fact_transactions
)
, arbitrum_cte as (
select
block_timestamp
, tx_hash
, from_address
, status
from arbitrum.core.fact_transactions
)
, avalanche_cte as (
select
block_timestamp
, tx_hash
, from_address
, status
from avalanche.core.fact_transactions
)
, bnb_cte as (
select
block_timestamp
, tx_hash
, from_address
, status
from bsc.core.fact_transactions
)
, polygon_cte as (
select
block_timestamp
Run a query to Download Data