Chain
Cross-chain bridge-usage report for an EVM wallet with exposure tier API
Bridge-usage analytics for an EVM wallet: over a bounded window of Blockscout ERC-20 token-transfers plus native transactions, it matches every counterparty against a curated cross-chain bridge label set (Wormhole, Synapse, Polygon, Optimism, Base, Avalanche, Multichain and more), detects exactly which bridges the wallet has used, splits inflow vs outflow USD per bridge, totals bridged volume, counts the number of distinct bridges, picks the dominant route, derives an inbound/outbound/balanced direction bias, and folds it into a four-level bridge-exposure tier (none | light | moderate | heavy) with a 0-100 exposure score and a plain-English summary — heavy multi-bridge usage is a cross-chain-movement / fund-obfuscation signal. Answers 'Which bridges has this wallet used?', 'How much value did this wallet move across chains?', 'Is this wallet bridging funds out (exit/obfuscation)?', 'How cross-chain-active is this address?'.
https://x402.hexl.dev/v1/chain/bridge-trace{
"address": "0x28C6c06298d514Db089934071355E5743bf21d60",
"chain": "ethereum"
}{
"address": "0x230a1ac45690b9ae1176389434610b9526d2f21b",
"chain": "ethereum",
"bridgeExposure": "moderate",
"exposureScore": 58,
"distinctBridges": 2,
"dominantBridge": "Synapse Bridge",
"directionBias": "outbound",
"totalBridgedUsd": 124500,
"totalInflowUsd": 24500,
"totalOutflowUsd": 100000,
"usesBridges": true,
"bridges": [
{
"bridge": "Synapse Bridge",
"address": "0x2796317b0ff8538f253012862c06787adfb8ceb6",
"inflowUsd": 24500,
"outflowUsd": 80000,
"totalUsd": 104500,
"transfers": 12,
"net": -55500
},
{
"bridge": "Wormhole Token Bridge",
"address": "0x3ee18b2214aff97000d974cf647e7c347e8fa585",
"inflowUsd": 0,
"outflowUsd": 20000,
"totalUsd": 20000,
"transfers": 2,
"net": -20000
}
],
"transfersAnalyzed": 100,
"firstSeen": "2023-09-18T12:15:35.000Z",
"lastSeen": "2026-04-26T12:26:47.000Z",
"summary": "Wallet used 2 distinct bridges (dominant: Synapse Bridge), moving ~$124,500 total — outbound bias. Bridge exposure: MODERATE (58/100). Moderate cross-chain activity.",
"disclaimer": "Best-effort cross-chain bridge-usage analytics from a bounded sample of recent ERC-20 token-transfers and native transactions, matched against a curated (non-exhaustive) bridge label set. Bridges outside the curated set or outside the sampled window are not counted; USD figures use Blockscout's at-transfer exchange rates and may be partial. NOT financial or compliance advice."
}{
"type": "object",
"required": [
"address"
],
"properties": {
"address": {
"type": "string",
"description": "0x-prefixed 40-hex EVM address to trace bridge usage for."
},
"chain": {
"type": "string",
"enum": [
"base",
"ethereum"
],
"default": "ethereum",
"description": "Chain to analyze on."
}
},
"examples": [
{
"address": "0x28C6c06298d514Db089934071355E5743bf21d60",
"chain": "ethereum"
}
]
}{
"type": "object",
"additionalProperties": true
}