freemartianFee Paths
    Updated 2022-12-10
    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