For the complete documentation index, see llms.txt. This page is also available as Markdown.

跨鏈追蹤

追蹤一筆交易的資金跨鏈去向,跨到別條鏈也能接上來源鏈與目的鏈。

追蹤一筆交易的資金跨鏈去向:當資金透過跨鏈橋轉到另一條鏈時,也能接上並還原來源鏈、目的鏈與兩端的交易與收付地址。成功扣除 5 credit,回應包在 { data, meta } 信封。

查詢需要來源交易 txhash,以及跨鏈協議或橋接服務識別 label,例如 acrossaxelarcelerwormhole。查無結果時回 404

單筆追蹤

curl "https://api.blockchainsecurity.asia/v1/cross-chain?txhash=0x11ce7a536a3ec57699c918ecd43424ea97b928cfee38508814b40e48cb79fe15&label=across" \
  -H "X-API-Key: ak_live_YOUR_KEY"
參數
必填
說明

txhash

來源交易 hash

label

protocol label(協定關鍵字,用來比對橋)

{
  "data": {
    "results": [
      {
        "label": "Across Protocol",
        "result": {
          "source_chain": "Arbitrum",
          "destination_chain": "Hyperliquid",
          "source_tx_hash": "0x11ce7a536a3ec57699c918ecd43424ea97b928cfee38508814b40e48cb79fe15",
          "destination_tx_hash": "0x6133d3c95096173c0b96be38612133af52e4c4ed05eb703639ca85b7dad99397",
          "sender_address": "0xd0d80284e8db5b36373185b9ecaabe43350306e3",
          "receiver_address": "0xd0d80284e8db5b36373185b9ecaabe43350306e3"
        }
      }
    ]
  },
  "meta": { "request_id": "..." }
}
欄位
說明

results[].label

比對到的跨鏈橋協定名稱

results[].result.source_chain / destination_chain

來源鏈 / 目的鏈

results[].result.source_tx_hash / destination_tx_hash

兩端交易 hash

results[].result.sender_address / receiver_address

兩端收付地址

批次追蹤

一次追蹤多筆,省去逐筆呼叫。

請求 body:

欄位
必填
說明

queries

查詢清單,不可為空,每筆含 txhashlabel

回應為各筆查詢的跨鏈交易詳情陣列,欄位同單筆。

端點與計費

Method
路徑
說明
Credit

GET

/v1/cross-chain

單筆跨鏈追蹤

5

POST

/v1/cross-chain/batch

批次跨鏈追蹤

5/ 筆成功查詢

Last updated

Was this helpful?