Afonso_Diazby chain
Updated 2024-06-09
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 by chain @ https://flipsidecrypto.xyz/edit/queries/1fb27d5e-7342-41a7-992a-cbd7aa577ac8
with tbl as (
select
origin_from_address,
tx_hash,
amount_in_usd,
amount_out_usd,
block_timestamp,
tx_fee,
gas_used,
'L2' as infrastructure,
'Optimism' as chain
from optimism.core.fact_transactions
join optimism.defi.ez_dex_swaps
using (tx_hash)
where platform in ('uniswap', 'uniswap-v2', 'uniswap-v3', 'uniswap-v1')
and block_timestamp >= '2022-01-01'
union
select
origin_from_address,
tx_hash,
amount_in_usd,
amount_out_usd,
block_timestamp,
tx_fee,
gas_used,
'L2' as infrastructure,
'Aribtrum' as chain
from arbitrum.core.fact_transactions
join arbitrum.defi.ez_dex_swaps
using (tx_hash)
where platform in ('uniswap', 'uniswap-v2', 'uniswap-v3', 'uniswap-v1')
and block_timestamp >= '2022-01-01'
QueryRunArchived: QueryRun has been archived