ValiMohammadiuser lp dex
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
axelar_tx as (
select
tx_id,
ATTRIBUTE_VALUE as chain
from
axelar.core.fact_msg_attributes
where
ATTRIBUTE_KEY = 'destinationChain'
),
axelar_user as (
select
ATTRIBUTE_VALUE as axelar_u,
tx_id
from
axelar.core.fact_msg_attributes
where
tx_id in (
select
tx_id
from
axelar_tx
)
and ATTRIBUTE_KEY = 'destinationAddress'
),
su as (
select
FROM_ADDRESS as Same_users
from
ethereum.core.fact_transactions
where
FROM_ADDRESS in (
select
FROM_ADDRESS as eth_u
from
optimism.core.fact_transactions
Run a query to Download Data