maybeyonasbico_txs
Updated 2022-08-30
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
deposits as (
select
block_timestamp,
tx_hash,
'ETH' as origin_chain
from ethereum.core.fact_event_logs
where topics[0] = '0x522e11fa05593b306c8df10d2b0b8e01eec48f9d0a9427a7a93f21ff90d66fb1'
union all
select
block_timestamp,
tx_hash,
'POLY' as origin_chain
from polygon.core.fact_event_logs
where topics[0] = '0x522e11fa05593b306c8df10d2b0b8e01eec48f9d0a9427a7a93f21ff90d66fb1'
union all
select
block_timestamp,
tx_hash,
'ARB' as origin_chain
from arbitrum.core.fact_event_logs
where topics[0] = '0x522e11fa05593b306c8df10d2b0b8e01eec48f9d0a9427a7a93f21ff90d66fb1'
union all
select
block_timestamp,
tx_hash,
'OPT' as origin_chain
from optimism.core.fact_event_logs
where topics[0] = '0x522e11fa05593b306c8df10d2b0b8e01eec48f9d0a9427a7a93f21ff90d66fb1'
union all
select
block_timestamp,
Run a query to Download Data