home / skills / bankrbot / claude-plugins / bankr-transfers

bankr-transfers skill

/bankr-agent/skills/bankr-transfers

This skill helps you perform cross-chain token transfers by resolving recipients and formats for addresses, ENS, and social handles.

npx playbooks add skill bankrbot/claude-plugins --skill bankr-transfers

Review the files below or copy the command above to add this skill to your agents.

Files (1)
SKILL.md
2.1 KB
---
name: Bankr Agent - Transfers
description: This skill should be used when the user asks to "send tokens", "transfer ETH", "send to ENS", "transfer to wallet", "send to @username", "transfer to Farcaster", "send to Twitter handle", or any asset transfer operation. Provides guidance on recipient resolution and transfer formats.
version: 1.0.0
---

# Bankr Transfers

Transfer tokens to addresses, ENS names, or social handles.

## Supported Transfers

- **EVM Chains**: Base, Polygon, Ethereum, Unichain (ETH, MATIC, ERC20 tokens)
- **Solana**: SOL and SPL tokens

## Recipient Formats

| Format | Example | Description |
|--------|---------|-------------|
| Address | `0x1234...abcd` | Direct wallet address |
| ENS | `vitalik.eth` | Ethereum Name Service |
| Twitter | `@elonmusk` | Twitter/X username |
| Farcaster | `@dwr.eth` | Farcaster username |
| Telegram | `@username` | Telegram handle |

Social handles are resolved to linked wallet addresses before sending.

## Amount Formats

| Format | Example | Description |
|--------|---------|-------------|
| USD | `$50` | Dollar amount |
| Percentage | `50%` | Percentage of balance |
| Exact | `0.1 ETH` | Specific amount |

## Prompt Examples

**To addresses:**
- "Send 0.5 ETH to 0x1234..."
- "Transfer 100 USDC to 0xabcd..."

**To ENS:**
- "Send 1 ETH to vitalik.eth"
- "Transfer $50 of USDC to mydomain.eth"

**To social handles:**
- "Send $20 of ETH to @friend on Twitter"
- "Transfer 0.1 ETH to @user on Farcaster"

**With chain specified:**
- "Send ETH on Base to vitalik.eth"
- "Send 10% of my ETH to @friend"

## Chain Selection

If not specified, Bankr selects automatically based on recipient activity and gas costs. Specify chain in prompt if needed.

## Common Issues

| Issue | Resolution |
|-------|------------|
| ENS not found | Verify the ENS name exists |
| Social handle not found | Check username is correct |
| No linked wallet | User hasn't linked wallet to social |
| Insufficient balance | Reduce amount or add funds |

## Security Notes

- Always verify recipient before confirming
- Social handle resolution shows the resolved address
- Large transfers may require additional confirmation

Overview

This skill handles token transfers across EVM chains and Solana, resolving recipients given as addresses, ENS names, or social handles. It guides recipient resolution, amount formats, and chain selection to prepare safe, accurate transfers. Use it whenever a user asks to send tokens, ETH, or SPL/ERC20 assets.

How this skill works

It parses the recipient input (wallet address, ENS, Twitter/Farcaster/Telegram handle) and resolves any social handle to a linked wallet address before preparing the transfer. It accepts amounts in USD, percentage of balance, or exact token units, and recommends or selects the appropriate chain based on recipient activity and gas costs. The skill surfaces resolution results, balance checks, and common problems so you can confirm before executing.

When to use it

  • User requests sending tokens: “send”, “transfer”, or “send to” commands
  • Recipient provided as address, ENS, or social handle (Twitter/Farcaster/Telegram)
  • Amount specified in token units, USD, or percentage of balance
  • User asks to transfer ERC20/SPL tokens or native chain currency (ETH, MATIC, SOL)
  • User needs guidance on recipient resolution or chain selection

Best practices

  • Always display the resolved wallet address for user confirmation before sending
  • Require additional confirmation for large transfers or transfers to newly resolved addresses
  • If chain not specified, show recommended chain and allow override to avoid accidental cross-chain sends
  • Validate ENS and social handle resolution; present clear errors and next steps if unresolved
  • Show estimated fees and check for sufficient balance before proceeding

Example use cases

  • Send 0.5 ETH to 0x1234...abcd on Ethereum
  • Transfer $50 of USDC to vitalik.eth, with chain suggested based on activity
  • Send 0.1 ETH to @friend on Farcaster after resolving their linked wallet
  • Move 10% of ETH balance to a new self-custody address
  • Transfer SOL or SPL tokens to a Solana address specified by the user

FAQ

What recipient formats are supported?

Direct wallet addresses, ENS names, and social handles on Twitter, Farcaster, and Telegram that are linked to wallets.

How do I enter amounts?

You can specify exact token amounts (e.g., 0.1 ETH), USD values (e.g., $50), or percentages of your balance (e.g., 10%).

Which chains are supported and how is chain chosen?

EVM: Base, Polygon, Ethereum, Unichain for ETH/MATIC/ERC20; Solana for SOL/SPL. If you don't specify a chain, the skill recommends one based on recipient activity and gas costs; you can override it.