freemartianFee Paths
Updated 2022-12-10
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 send as (
select
tx_id,
block_timestamp,
attribute_value as sender
from axelar.core.fact_msg_attributes
where TX_SUCCEEDED = 'TRUE'
and attribute_key = 'sender'
),
source as (
select
tx_id,
block_timestamp,
attribute_value as source_chain
from axelar.core.fact_msg_attributes
where TX_SUCCEEDED = 'TRUE'
and attribute_key = 'sourceChain'
),
destination as (
select
tx_id,
block_timestamp,
attribute_value as destination_chain
from axelar.core.fact_msg_attributes
where TX_SUCCEEDED = 'TRUE'
and attribute_key = 'destinationChain'
),
receive as (
select
tx_id,
block_timestamp,
attribute_value as receiver
from axelar.core.fact_msg_attributes
Run a query to Download Data