Flipside TeamTransactions by Super Users copy
Updated 2024-12-11
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
›
⌄
-- forked from Transactions by Super Users @ https://flipsidecrypto.xyz/studio/queries/e4b8c094-3081-4dcd-81d5-ed3a4a402ceb
with t1 as (
SELECT from_address, nonce, tx_hash, date_trunc('year',block_timestamp) as year, 'Arbitrum' as chain
FROM arbitrum.core.fact_transactions ar
WHERE nonce >= 99
union all
SELECT from_address, nonce, tx_hash, date_trunc('year',block_timestamp) as year, 'Avalanche' as chain
FROM avalanche.core.fact_transactions av
WHERE nonce >= 99
union all
SELECT from_address, nonce, tx_hash, date_trunc('year',block_timestamp) as year, 'Blast' as chain
FROM blast.core.fact_transactions b
WHERE nonce >= 99
union all
SELECT from_address, nonce, tx_hash, date_trunc('year',block_timestamp) as year, 'Ethereum' as chain
FROM ethereum.core.fact_transactions e
WHERE nonce >= 99
union all
SELECT from_address, nonce, tx_hash, date_trunc('year',block_timestamp) as year, 'Optimism' as chain
FROM optimism.core.fact_transactions o
WHERE nonce >= 99
union all
SELECT from_address, nonce, tx_hash, date_trunc('year',block_timestamp) as year, 'Polygon' as chain
FROM polygon.core.fact_transactions p
WHERE nonce >= 99
QueryRunArchived: QueryRun has been archived