jpskill.com
📦 その他 コミュニティ

send-usdc

イーサリアムアドレスやENS名宛にUSDCを送金する際に、金額や宛先を指定して送金、支払い、チップ、寄付など、様々な用途でUSDCを送る指示を理解し実行するSkill。

📜 元の英語説明(参考)

Send USDC to an Ethereum address or ENS name. Use when you or the user want to send money, pay someone, transfer USDC, tip, donate, or send funds to a wallet address or .eth name. Covers phrases like "send $5 to", "pay 0x...", "transfer to vitalik.eth", "tip someone", "send USDC".

🇯🇵 日本人クリエイター向け解説

一言でいうと

イーサリアムアドレスやENS名宛にUSDCを送金する際に、金額や宛先を指定して送金、支払い、チップ、寄付など、様々な用途でUSDCを送る指示を理解し実行するSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o send-usdc.zip https://jpskill.com/download/10470.zip && unzip -o send-usdc.zip && rm send-usdc.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/10470.zip -OutFile "$d\send-usdc.zip"; Expand-Archive "$d\send-usdc.zip" -DestinationPath $d -Force; ri "$d\send-usdc.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して send-usdc.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → send-usdc フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

[Skill 名] send-usdc

USDC の送信

npx agnic@latest send コマンドを使用すると、ウォレットから Base 上の任意の Ethereum アドレスまたは ENS 名に USDC を転送できます。

ウォレットが初期化され、認証されていることの確認

npx agnic@latest status

ウォレットが認証されていない場合は、authenticate-wallet スキルを参照してください。

コマンドの構文

npx agnic@latest send <amount> <recipient> [--chain <chain>] [--json]

引数

| 引数 | 説明

📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Sending USDC

Use the npx agnic@latest send command to transfer USDC from the wallet to any Ethereum address or ENS name on Base.

Confirm wallet is initialized and authed

npx agnic@latest status

If the wallet is not authenticated, refer to the authenticate-wallet skill.

Command Syntax

npx agnic@latest send <amount> <recipient> [--chain <chain>] [--json]

Arguments

Argument Description
amount Amount to send: '$1.00', 1.00, or atomic units (1000000 = $1). Always single-quote amounts that use $ to prevent bash variable expansion. If the number looks like atomic units (no decimal or > 100), treat as atomic units.
recipient Ethereum address (0x...) or ENS name (vitalik.eth)

Options

Option Description
--chain <name> Blockchain network (default: base)
--json Output result as JSON

Input Validation

Before constructing the command, validate all user-provided values to prevent shell injection:

  • amount: Must match ^\$?[\d.]+$ (digits, optional decimal point, optional $ prefix). Reject if it contains spaces, semicolons, pipes, backticks, or other shell metacharacters.
  • recipient: Must be a valid 0x hex address (^0x[0-9a-fA-F]{40}$) or an ENS name (^[a-zA-Z0-9.-]+\.eth$). Reject any value containing spaces or shell metacharacters.

Do not pass unvalidated user input into the command.

USDC Amounts

Format Example Description
Dollar prefix '$1.00', '$0.50' USD notation (single-quote the $)
Decimal 1.0, 0.50 Human-readable with decimal point
Whole number 5, 100 Interpreted as whole USDC tokens
Atomic units 500000 Large integers treated as atomic units

IMPORTANT: Always single-quote amounts that use $ to prevent bash variable expansion (e.g. '$1.00' not $1.00).

ENS Resolution

ENS names are automatically resolved to addresses via Ethereum mainnet. The command will:

  1. Detect ENS names (any string containing .eth)
  2. Resolve the name to an address
  3. Display both the ENS name and resolved address in the output

Examples

# Send $1.00 USDC to an address
npx agnic@latest send 1 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb7

# Send $0.50 USDC to an ENS name
npx agnic@latest send 0.50 vitalik.eth

# Send with dollar sign prefix (note the single quotes)
npx agnic@latest send '$5.00' 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb7

# Get JSON output
npx agnic@latest send 1 vitalik.eth --json

Prerequisites

  • Must be authenticated (npx agnic@latest status to check)
  • Wallet must have sufficient USDC balance (npx agnic@latest balance to check)

Error Handling

Common errors:

  • "Not authenticated" — Run npx agnic@latest auth login first
  • "Insufficient balance" — Check balance with npx agnic@latest balance
  • "Could not resolve ENS name" — Verify the ENS name exists
  • "Invalid recipient" — Must be valid 0x address or ENS name