← All skills
Tencent SkillHub · Productivity

Uniswap Bridge Tokens

Bridge tokens from one chain to another without swapping. Simplified cross-chain transfer where the output token is the same as the input token. Use when the user wants to move tokens between chains.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Bridge tokens from one chain to another without swapping. Simplified cross-chain transfer where the output token is the same as the input token. Use when the user wants to move tokens between chains.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

Overview

Bridges tokens from one chain to another — a simplified cross-chain operation where the token stays the same (e.g., USDC on Ethereum to USDC on Base). Delegates to the cross-chain-executor agent with tokenOut = tokenIn to streamline the workflow. This is the simpler sibling of cross-chain-swap. Use this when the user just wants to move tokens, not swap them.

When to Use

Activate when the user asks: "Bridge 1000 USDC from Ethereum to Base" "Move my ETH to Arbitrum" "Transfer USDC to Optimism" "Send tokens to another chain" "Bridge tokens" "Move all my USDC from Polygon to Base"

Parameters

ParameterRequiredDefaultDescriptiontokenYes—Token symbol or address to bridgeamountYes—Amount to bridge (human-readable)sourceChainYes—Source chain name (e.g., "ethereum")destChainYes—Destination chain name (e.g., "base")recipientNoSame walletRecipient address on destination chain

Workflow

Extract parameters from the user's request. Identify: Which token to bridge. The amount. Source and destination chains. Resolve the same token's address on both chains via mcp__uniswap__getTokenInfo. Validate inputs: Verify both chains are supported via mcp__uniswap__getSupportedChains. Verify the token exists on both chains. If source and destination chain are the same: inform the user no bridge is needed. Delegate to cross-chain-executor: Invoke Task(subagent_type:cross-chain-executor) with: tokenIn = token (on source chain). tokenOut = same token (on destination chain). amount, sourceChain, destChain, recipient. The agent handles quoting, safety, execution, monitoring, and confirmation. Present results: Format the bridge report for the user, highlighting: Amount sent and received (should be very close, minus bridge fee). Bridge fee. Settlement time.

Output Format

Bridge Complete Token: USDC Sent: 1,000.00 USDC on Ethereum Received: 999.50 USDC on Base Bridge Fee: 0.50 USDC ($0.50) Settlement: 1 min 48 sec Source Tx: 0xabc...123 Bridge ID: 0x789...abc Dest Tx: 0xdef...456 Risk: LOW | Safety: APPROVED

Important Notes

Bridge operations transfer the same token between chains. The received amount will be slightly less due to bridge fees. Settlement times vary by chain pair (typically 1-10 minutes). Not all tokens are bridgeable between all chains. The executor will check availability. For moving tokens AND swapping to a different token, use cross-chain-swap instead.

Error Handling

ErrorUser-Facing MessageSuggested ActionToken not available on dest"[Token] is not available on [destChain]."Use cross-chain-swap to swap to a native tokenSame chain"Source and destination are the same chain. No bridge needed."No action neededUnsupported chain"Chain [name] is not supported."Check supported chainsSafety veto"This bridge was blocked by safety checks: [reason]."Reduce amount or check configurationBridge stuck"Bridge settlement is delayed. Monitoring continues."Wait — recovery instructions providedInsufficient balance"Not enough [token] on [chain]."Check balance and reduce amount

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • README.md Docs