Bridges and interoperability
Cross-chain bridge — CLI.
Command-line surface for the unified
BridgeRouter. Quote, route, send, and track cross-chain messages from the terminal. For the protocol-level adapter set and verification model see the bridge overview.- BINARY
- tenzro
- MODULE
- crosschain
- RPC
- tenzro_bridge*, tenzro_crosschain*
01
Quote
tenzro crosschain quote \
--src tenzro --dst ethereum \
--asset USDC --amount 100Returns ranked quotes across configured adapters for the route, including the protocol fee, expected ETA, and the adapter that produced each quote.
02
Route discovery
tenzro crosschain routes \
--src tenzro --dst base
# List bridge adapters that support a given destination chain
tenzro crosschain adapters --dst solana03
Execute a transfer
tenzro bridge \
--to ethereum --token USDC --amount 100 \
--strategy cheapest
tenzro bridge \
--to canton --asset cantoncoin --amount 10000 \
--strategy most_reliable04
Track an in-flight message
tenzro crosschain status --id <route-id>
# Equivalent JSON-RPC method:
# tenzro_bridgeStatus05
ERC-7683 intents
# Open an order on the source chain
tenzro erc7683 open --order ./order.json
# List orders
tenzro erc7683 list
# Get a single order
tenzro erc7683 get --id <order-id>Related