find_bridge_route
Determine a token's bridge route across networks, returning OFT contract, direction status, fee, and a ready-to-sign transaction when amount and recipient are provided.
Instructions
Resolve the bridge route for a token between two networks: the OFT contract, whether the direction is enabled right now, the fee, and — if amount and recipient are given — a ready-to-sign transaction (plus an ERC-20 approval transaction when the token bridges through a separate adapter). This tool NEVER signs or sends; it returns transactions for a human or wallet to review and sign.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | Token contract address (0x…). | |
| amount | No | Human-readable amount to bridge, e.g. "12.5". Required to build a transaction. | |
| toChain | Yes | Destination network key (e.g. "arc"). | |
| decimals | No | Token decimals. Read automatically if omitted; pass explicitly to be certain. | |
| fromChain | Yes | Source network key (e.g. "bsc"). See list_supported_networks. | |
| recipient | No | Recipient address on the destination network (also the refund address). Required to build a transaction. | |
| oftContract | No | Optional: the OFT contract address, if you already know it (skips discovery). |