Monitor cross-chain bridge activity across multiple protocols. Track TVL, compare fees and transfer times, and monitor transaction status for bridges like Stargate, Across, Wormhole, and LayerZero.
Before using this skill, ensure you have:
requests librarypython bridge_monitor.py tvl --limit 20
Shows bridges ranked by Total Value Locked.
python bridge_monitor.py bridges
python bridge_monitor.py bridges --chain arbitrum
Lists bridges by 24h volume with optional chain filter.
python bridge_monitor.py detail --bridge stargate
Shows detailed info including volume, chains, and TVL breakdown.
python bridge_monitor.py compare --source ethereum --dest arbitrum --amount 1000 --token USDC # 1000: 1 second in ms
Compares fees and transfer times across bridges for a route.
python bridge_monitor.py tx --tx-hash 0x...
python bridge_monitor.py tx --tx-hash 0x... --bridge wormhole
Tracks bridge transaction status across protocols.
python bridge_monitor.py chains
Shows all supported chains.
python bridge_monitor.py protocols
Shows supported bridge protocols with their chains.
Check bridge TVL rankings:
cd ${CLAUDE_SKILL_DIR}/scripts
python bridge_monitor.py tvl
Compare bridge routes before transferring:
python bridge_monitor.py compare -s ethereum -d base -a 5000 -t USDC # 5000: bridge transfer amount in USD
Get bridge details for research:
python bridge_monitor.py detail --bridge across
Track a transaction:
python bridge_monitor.py tx --tx-hash 0x1234...
Export to JSON for analysis:
python bridge_monitor.py -f json bridges > bridges.json
| Bridge | Type | Avg Time | Typical Fee |
|---|---|---|---|
| Wormhole | Messaging | ~15 min | ~0.1% |
| LayerZero | Messaging | ~3 min | ~0.06% |
| Stargate | Liquidity | ~2 min | ~0.06% |
| Across | Liquidity | ~1 min | ~0.04% |
-f json flagSee ${CLAUDE_SKILL_DIR}/references/errors.md for comprehensive error handling including:
See ${CLAUDE_SKILL_DIR}/references/examples.md for detailed examples including: