freemartianUntitled Query
Updated 2022-12-09
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 DestinationChainT as (
select block_timestamp,
tx_id,
attribute_value as Destination_Chain
from axelar.core.fact_msg_attributes
where tx_succeeded = 'TRUE'
and attribute_key = 'destinationChain'),
DestinatinoUserT as (
select block_timestamp,
tx_id,
attribute_value as Destination_User
from axelar.core.fact_msg_attributes
where tx_succeeded = 'TRUE'
and attribute_key = 'destinationAddress'
and tx_id in (select tx_id from DestinationChainT)),
OriginChainT as (
select block_timestamp,
tx_id,
attribute_value as Origin_Chain
from axelar.core.fact_msg_attributes
where tx_succeeded = 'TRUE'
and attribute_key = 'sourceChain'
and tx_id in (select tx_id from DestinationChainT)),
OriginUserT as (
select block_timestamp,
tx_id,
attribute_value as Origin_User
from axelar.core.fact_msg_attributes
where tx_succeeded = 'TRUE'
and attribute_key = 'sender'
and tx_id in (select tx_id from DestinationChainT)),
BridgeT as (
Run a query to Download Data