skills/nexus-elements-fast-bridge/SKILL.md
DEPRECATED — FastBridge has been removed. Use Nexus One (config.mode = "swap") for all cross-chain bridge and swap flows. Refer to the nexus-one-swaps agent skill for current integration guidance.
npx skillsauth add availproject/nexus-elements nexus-elements-fast-bridgeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
FastBridge has been removed from Nexus Elements.
All cross-chain bridging is now handled by Nexus One with config.mode = "swap". Nexus One automatically resolves the best route — including direct bridge paths — based on source and destination token/chain selection.
Replace any FastBridge usage with NexusOne:
import { NexusOne } from "@/components/nexus-one/nexus-one";
// Bridge USDC to Base — Nexus One resolves the optimal route automatically
<NexusOne
config={{
mode: "swap",
prefill: {
source: { token: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", chain: 42161 },
destination: { token: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913", chain: 8453 },
},
}}
connectedAddress={address}
/>
npx shadcn@latest add @nexus-elements/nexus-one
For integration guidance, refer to the Nexus One Swaps agent skill:
nexus-one-swaps — Setup, prefill config, and callbacks for swaps and bridging with Nexus One.data-ai
Scaffolding, configuration, and integration of the Nexus One component in swap mode (config.mode = "swap"). Handles cross-chain swaps and bridges.
testing
Scaffolding, configuration, and integration of the Nexus One component in send mode (config.mode = "send"). Used to send tokens to an external recipient address cross-chain.
data-ai
Scaffolding, configuration, and integration of the Nexus One component in deposit mode (config.mode = "deposit"). Handles swapping assets and executing custom smart contract calls on the destination chain.
development
Detailed guidelines for LLMs and developer agents on migrating codebases from legacy standalone Nexus Elements widgets (swaps, fast-bridge, transfer, deposit) to the unified Nexus One component.