Claude-skill-registry Bankr Dev - Transfers
This skill should be used when building payment systems, implementing token transfers, or adding ENS/social handle resolution. Supports wallet addresses, ENS names, and social handles.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/bankr-transfers" ~/.claude/skills/majiayu000-claude-skill-registry-bankr-dev-transfers && rm -rf "$T"
manifest:
skills/data/bankr-transfers/SKILL.mdsource content
Transfers Capability
Send tokens to any recipient via natural language prompts.
What You Can Do
| Operation | Example Prompt |
|---|---|
| Send to address | |
| Send to ENS | |
| Send to Twitter | |
| Send to Farcaster | |
| Send to Telegram | |
| Percentage send | |
Prompt Patterns
Send {amount} {token} to {recipient} [on {chain}]
Recipient formats:
- Wallet address:
0x1234...abcd - ENS name:
,vitalik.ethname.eth - Social handle:
@username on Twitter/Farcaster/Telegram
Amount formats:
- USD:
,$50$100 - Percentage:
,10%50% - Exact:
,0.5 ETH100 USDC
Supported chains: Base, Polygon, Ethereum, Unichain, Solana
Usage
import { execute } from "./bankr-client"; // To ENS await execute("Send 0.1 ETH to vitalik.eth on Base"); // To social handle await execute("Send $5 ETH to @user on Twitter");
Related Skills
- Client setup and execute functionbankr-client-patterns
- API fundamentalsbankr-api-basics
- Check balances before transfersbankr-portfolio