Bridge Order Monitoring

The Bridge Order Monitoring feature in our API plays a critical role in the post-execution phase of the bridging process. Once a bridge order is executed, this functionality allows users to track and retrieve status data about the transaction using the transactionId. It provides real-time updates and insights into the progress and completion status of the bridge operation. This feature is essential for users to maintain oversight of their transactions, ensuring they are fully informed about the status and outcomes of their asset transfers.

Retrieves the status and the metadata of executed bridge transaction.

GET /api/bridge/{transactionId}/info

Path Parameters

NameTypeDescription

transactionId

string

Transaction ID of executed bridge.

{
  "message": "string",
  "data": {
    "transactionId": "string",
    "source_chain": "string",
    "destination_chain": "string",
    "asset_from": {
      "name": "string",
      "native": true,
      "contract_address": "string",
      "active": true
    },
    "asset_to": {
      "name": "string",
      "native": true,
      "contract_address": "string",
      "active": true
    },
    "amount_in": 0,
    "amount_out": 0,
    "status": "Pending",
    "sender_wallet": "string",
    "receiver_wallet": "string",
    "execution_time": 0,
    "platform_fee": 0,
    "platform_fee_in_usd": 0,
    "swap_fee": 0,
    "swap_fee_in_usd": 0,
    "blockchain_fee": 0,
    "blockchain_fee_in_usd": 0,
    "fee_asset": "string"
  }
}

Last updated