Moebridger destination - arbitrum** dex
Updated 2023-03-16
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 bridge as (select tx_hash
from ethereum.core.fact_event_logs
where EVENT_INPUTS:chainId = '42161'--destination chain : Arbitrum
and event_name = 'TransferSentToL2'
),
tb1 as (select
block_timestamp,
tx_hash,
origin_from_address,
origin_to_address,
event_name,
contract_name
from ethereum.core.fact_event_logs
where ORIGIN_TO_ADDRESS = lower('0xb8901acb165ed027e32754e0ffe830802919727f')
and tx_hash in (select tx_hash from bridge)
)
, tb2 as (
select
block_timestamp,
tx_hash,
origin_from_address,
origin_to_address,
event_name,
contract_name
from arbitrum.core.fact_event_logs
)
, tb3 as (
select
b.block_timestamp,
b.tx_hash,
b.event_name,
a.origin_from_address,
b.contract_name,
b.origin_to_address
Run a query to Download Data