skills/nexus-elements-transfer/SKILL.md
DEPRECATED — FastTransfer has been removed. Use Nexus One (config.mode = "send") for all cross-chain recipient transfer flows. Refer to the nexus-sdk-* agent skills for current integration guidance.
npx skillsauth add availproject/nexus-elements nexus-elements-transferInstall 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.
FastTransfer has been removed from Nexus Elements.
All cross-chain transfers to a recipient are now handled by Nexus One with config.mode = "send".
Replace any FastTransfer usage with NexusOne:
import { NexusOne } from "@/components/nexus-one/nexus-one";
<NexusOne
config={{
mode: "send",
prefill: {
token: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
chain: 8453, // USDC on Base
amount: "10",
recipient: "0xRecipientAddress",
},
}}
connectedAddress={address}
/>
npx shadcn@latest add @nexus-elements/nexus-one
For integration guidance, refer to the Nexus SDK agent skills (.agents/skills/):
nexus-sdk-setup — SDK initialization and wallet wiringnexus-sdk-bridge-flows — bridge, bridgeAndTransfer, bridgeAndExecutenexus-sdk-hooks-events — intent hooks and event streamingnexus-sdk-balances-metadata-utils — balances, supported chains/tokens, formattersnexus-sdk-integration — end-to-end integration guidedevelopment
DEPRECATED — ViewHistory has been removed. Intent history is not included in Nexus One V1. Use sdk.getMyIntents() directly for programmatic history access. Refer to the nexus-sdk-* agent skills for guidance.
development
DEPRECATED — UnifiedBalance has been removed. Nexus One includes an inline balance view. Refer to the nexus-sdk-* agent skills for balance API guidance.
development
DEPRECATED — SwapWidget has been removed. Use Nexus One (config.mode = "swap") for all cross-chain swap and bridge flows. Refer to the nexus-sdk-* agent skills for current integration guidance.
documentation
End-to-end integration guide for Nexus Elements. Use Nexus One as the single unified component for all swap, send, and deposit flows. Legacy standalone widgets (FastBridge, FastTransfer, SwapWidget, Deposit, BridgeDeposit, UnifiedBalance, ViewHistory) have been deprecated and removed.