smithery/bankrbot

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.

Installation

$ npx skills add smithery/bankrbot --skill bankr-dev-transfers

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/bankrbot · top by installs.

npx skills add smithery/bankrbot

Browse all from smithery/bankrbot

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,534 B
  • docs SUMMARY.md 211 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Transfers Capability

Send tokens to any recipient via natural language prompts.

What You Can Do

Operation Example Prompt
Send to address Send 0.1 ETH to 0x1234...abcd
Send to ENS Send $50 USDC to vitalik.eth
Send to Twitter Send $5 ETH to @username on Twitter
Send to Farcaster Send 10 USDC to @user on Farcaster
Send to Telegram Send 0.01 ETH to @user on Telegram
Percentage send Send 10% of my ETH to 0x...

Prompt Patterns

Send {amount} {token} to {recipient} [on {chain}]

Recipient formats:

  • Wallet address: 0x1234...abcd
  • ENS name: vitalik.eth, name.eth
  • Social handle: @username on Twitter/Farcaster/Telegram

Amount formats:

  • USD: $50, $100
  • Percentage: 10%, 50%
  • Exact: 0.5 ETH, 100 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

  • bankr-client-patterns - Client setup and execute function
  • bankr-api-basics - API fundamentals
  • bankr-portfolio - Check balances before transfers