Install
openclaw skills install @ssidharhubble/bridge-cost-optimizerCompare live cross-chain bridge quotes from multiple providers to find the cheapest, fastest, or balanced token transfer route between EVM and select non-EVM...
openclaw skills install @ssidharhubble/bridge-cost-optimizerFind the cheapest and fastest cross-chain bridge for any token+amount+source+destination.
cheapest, fastest, or balanced).--allow-non-evm is passed.pip install requests
# Cheapest way to bridge 1000 USDC from Ethereum to Base
python scripts/bridge_optimizer.py compare --from ethereum --to base --token USDC --amount 1000
# Fastest route, prefer low time over cost
python scripts/bridge_optimizer.py compare --from arbitrum --to optimism --token ETH --amount 0.5 --prefer fastest
# All quotes, table view
python scripts/bridge_optimizer.py table --from polygon --to base --token USDC --amount 500
BRIDGE_PREFERENCE — default balanced (alternates between cheapest and fastest per call).BRIDGE_TIMEOUT_SEC — request timeout (default 10).