Bridges and interoperability
deBridge.
deBridge DLN intent-based cross-chain liquidity. The user signs an intent declaring the source amount and the desired destination outcome; solvers compete to fulfill it; the user is paid out on the destination chain. The Tenzro adapter handles quote, order creation, and status tracking.
- STATUS
- Stable
- CRATE
- tenzro-bridge
- ADAPTER
- DeBridgeAdapter
- RPC
- tenzro_debridge*
01
Intent model
In an intent-based model the user expresses what they want — “swap X on Ethereum for at least Y on Solana within Z minutes” — and the protocol finds a solver willing to deliver. Solvers compete on price and latency; the user receives a deterministic outcome.
The Tenzro adapter queries the deBridge order-creation API for live quotes, builds the signing payload, tracks the order status, and surfaces the same-chain swap surface for solvers that operate on the chain natively.
02
RPC surface
tenzro_debridgeGetChains— list supported source / destination chains.tenzro_debridgeSearchTokens— search the token registry.tenzro_debridgeCreateTx— create an order and build the signing payload.tenzro_debridgeGetInstructions— fetch chain-specific transaction instructions.tenzro_debridgeSameChainSwap— same-chain swap surface.
03
External MCP integration
The official deBridge MCP at https://agents.debridge.com/mcpis callable from any MCP client. Tenzro's adapter can route through the deBridge MCP for agent-driven swap discovery or call the underlying REST API directly.
Related