2026年5月24日

Bridge Flow Trace 公開 — NEAR Intents 等プライバシーブリッジ経由の資金移動を 1 リクエストで追跡可能に

2026-05-24、ChainAnalyzer は Bridge Flow Trace をリリースしました。NEAR Intents・Wormhole・Stargate・Across・Synapse・Hop・deBridge の 7 プロトコル経由のクロスチェーン資金移動を、1 リクエスト約 7 秒で graph + forensic insights として自動再構成 します。

🎯 1 行で価値

プライバシーブリッジ (NEAR Intents 等) を経由しても、Solver と intent_id memo を読めば "同じ資金移動である" を on-chain で立証できる。手作業 1〜2 時間が 7 秒に。

5 つの重要なインサイト

1. プライバシーブリッジは追跡不能ではない

NEAR Intents は Intent ベース (ユーザーが直接 bridge contract を叩かない) で表面上は追跡困難に見えますが、Solana 側 Memo program に刻まれた intent_id が Ethereum 側でも完全一致するため、Wormholescan / deBridge / NEAR Explorer API で counterpart resolve すれば cross-chain で連結できます。

2. Solver wallet は heuristic で機械判別

新規 Solver でも 3 つの指標で 90%+ の確度で識別可能:

  • UUID memo 比率 > 50% (intent_id が刻まれた TX の割合)
  • 残高 > 1000 SOL / 100 ETH (流動性提供者の規模)
  • TX 頻度 > 50/h (intent 処理ペース)

実例 (本日特定の Solana NEAR Intents Solver `HWjmoU...mz16`): 1000 TX / 7h = 138 TX/h、UUID memo 71%、残高 12,241 SOL ≈ $1.5M → confidence 0.92 で自動分類。

3. same_intent_correlation insight が forensic の決定打

{
  "type": "same_intent_correlation",
  "description": "Intent PzUkLi9... settled in 74s: 0.03 ETH on send → 0.687618 SOL on receive",
  "evidence": {
    "intent_id": "PzUkLi9trGapLFsSGCf37xFRwX8kyYZZ8iZvTtqwyeFRwrPEa",
    "send_leg":    { "tx": "0x046ca1fa...", "amount": 0.03,        "token": "ETH", "timestamp": "2026-02-22T07:27:23+00:00" },
    "receive_leg": { "tx": "4QZfXmpjA61A...", "amount": 0.687618, "token": "SOL", "timestamp": "2026-02-22T07:28:37+00:00" },
    "delta_seconds": 74
  }
}

この 1 ブロックで 「異なるチェーンの 2 つの TX が同じ資金移動である」(a) on-chain memo 一致 + (b) 74 秒の時間相関 + (c) USD ベース等価金額 ($67 相当の cross-chain swap) の 3 軸で同時に立証。法執行 / VASP の SAR 提出書類でそのまま証拠化できます。

4. User と Solver の分離

Graph 上の役割は 3 種類: user (真の発信者、追跡対象) / relay (使い捨て中継、通過点) / solver (流動性提供者、犯罪関与ではなくインフラ)。Solver で trace を止めることで Solver を犯人と誤認するエラー を防ぎ、user origin にフォーカスできます。

5. 7 秒で 1〜2 時間の調査を再現

手作業: Solana RPC → memo 解析 → NEAR Explorer 検索 → Wormholescan → ETH 側 outbound 追跡 → Solver 識別 → 結合。所要 1〜2 時間。
自動化: 6.8 秒で同じ graph + insights が出力。100 件の wallet を一括処理する batch 用途で破壊的に強い。

使い方

サブスクで使う (Business / Enterprise)

/account/bridge-flow に address + chain + depth を入力すると graph + insights が出力されます。

curl -X POST https://chain-analyzer.com/api/bridge-flow \
  -H "Content-Type: application/json" \
  --cookie "session=..." \
  -d '{
    "address": "6ytB6pX3d6avtgzCkRjsyd1jkUJCutyCoc83ZeoVTC6c",
    "chain": "solana",
    "max_depth": 2
  }'

サブスクなしで使う (x402 pay-per-trace)

1 件だけ調べたい場合は x402 endpoint で $3.00 USDC 払えば使えます (Base / Solana で settle)。

# Single-shot, no subscription — $3.00 USDC on Base/Solana
curl -X POST https://chain-analyzer.com/api/v1/x402/bridge-flow/trace \
  -H "X-PAYMENT: <signed-eip3009>" \
  -d '{"address": "...", "chain": "solana", "max_depth": 3}'

新しい価格

プランBridge Flow Trace月額
Free / Starter$0 / $4.99
Pro$19.99
Business (新設)✅ Multi-hop (depth 1-3)$99.99
Enterprise✅ 無制限 + SLA + Insider 監視個別
x402 pay-per-trace✅ 単発$3.00 / call

技術的な背景

パイプラインは Bridge Detector → Counterpart Resolution → Node Classification → BFS Expand → Same-chain Forward Trace → Insights Post-process の 6 段構成。Solver registry (静的 + heuristic) と Solana/EVM の bridge contract registry (7 プロトコル / 32 contracts / 7 EVM chains) を組み合わせて、registry にない新興 Solver も自動カバーします。

詳細なエンジニアリングディープダイブと SANAE 案件のフルケーススタディは Qiita 記事を参照:

謝辞

本機能の動機となった SANAE TOKEN 案件の初期追跡は @hiropi_fx 氏の調査がベースです。

リンク

© 2026 ChainAnalyzer. All rights reserved.