nexus-elements-bridge-deposit
9
总安装量
4
周安装量
#33323
全站排名
安装命令
npx skills add https://github.com/availproject/nexus-elements --skill nexus-elements-bridge-deposit
Agent 安装分布
claude-code
4
opencode
3
cursor
3
gemini-cli
2
replit
1
Skill 文档
Nexus Elements – Bridge Deposit
Overview
Install the Bridge Deposit widget for a simple bridge-and-execute deposit flow. This is lighter than the full Deposit widget.
Prerequisites
- NexusProvider installed and initialized on wallet connect.
- Wallet connection configured; you have the connected wallet address.
Install (shadcn registry)
- Ensure shadcn/ui is initialized (
components.jsonexists). - Ensure registry mapping exists:
"registries": {
"@nexus-elements/": "https://elements.nexus.availproject.org/r/{name}.json"
}
- Install:
npx shadcn@latest add @nexus-elements/bridge-deposit
Alternative:
npx shadcn@latest add https://elements.nexus.availproject.org/r/bridge-deposit.json
Manual install (no shadcn)
- Download
https://elements.nexus.availproject.org/r/bridge-deposit.json. - Create each file in
files[].targetwithfiles[].content. - Install dependencies listed in
dependenciesand eachregistryDependenciesitem.
Usage
import NexusDeposit from "@/components/bridge-deposit/deposit";
import { SUPPORTED_CHAINS, TOKEN_METADATA } from "@avail-project/nexus-core";
import { parseUnits } from "viem";
<NexusDeposit
address={address}
chain={SUPPORTED_CHAINS.BASE}
token="USDC"
heading="Deposit USDC"
destinationLabel="Deposit to Aave"
embed={false}
depositExecute={(token, amount, chainId, userAddress) => {
const decimals = TOKEN_METADATA[token].decimals;
const amountWei = parseUnits(amount, decimals);
return {
to: "0x...",
data: "0x...",
tokenApproval: {
token,
amount: amountWei,
spender: "0x...",
},
};
}}
/>
SDK flow mapping
- Uses
sdk.bridgeAndExecute(...)under the hood. - Relies on intent + allowance hooks (
intent,allowance) for confirmation UI. - Progress updates come from
NEXUS_EVENTS.STEPS_LISTandNEXUS_EVENTS.STEP_COMPLETE.
Props (NexusDepositProps)
address(required): connected wallet addresschain(required): destination chain idtoken(optional, default “USDC”)chainOptions(optional): customize source chains listdepositExecute(required): returns{ to, data, value?, tokenApproval? }heading,embed,destinationLabel
Notes
- Use
embed={true}to render inline, otherwise a modal is shown. - This is distinct from the full
depositwidget which usesswapAndExecuteand broader asset selection.