feyikemiAxelar Interchain Transactions
    Updated 2024-04-18
    SELECT
    date_trunc('week', block_timestamp) date,
    transfer_type,
    Count(DISTINCT tx_id) transactions,
    FROM
    axelar.core.fact_transfers
    WHERE transfer_type != 'AXELAR'
    GROUP BY
    1,
    2
    ORDER BY
    Date
    DESC

    QueryRunArchived: QueryRun has been archived