send-usdc
Original:🇺🇸 English
Translated
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...", or "transfer to vitalik.eth".
16installs
Added on
NPX Install
npx skill4agent add coinbase/agentic-wallet-skills send-usdcTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Sending USDC
Use the command to transfer USDC from the wallet to any Ethereum address or ENS name on Base.
npx awal@latest sendConfirm wallet is initialized and authed
bash
npx awal@latest statusIf the wallet is not authenticated, refer to the skill.
authenticate-walletCommand Syntax
bash
npx awal@latest send <amount> <recipient> [--chain <chain>] [--json]Arguments
| Argument | Description |
|---|---|
| Amount to send: '$1.00', '1.00', or atomic units (1000000 = $1). Always single-quote amounts that use |
| Ethereum address (0x...) or ENS name (vitalik.eth) |
Options
| Option | Description |
|---|---|
| Blockchain network (default: base) |
| Output result as JSON |
Examples
bash
# Send $1.00 USDC to an address
npx awal@latest send 1 0x1234...abcd
# Send $0.50 USDC to an ENS name
npx awal@latest send 0.50 vitalik.eth
# Send with dollar sign prefix (note the single quotes)
npx awal@latest send '$5.00' 0x1234...abcd
# Get JSON output
npx awal@latest send 1 vitalik.eth --jsonENS Resolution
ENS names are automatically resolved to addresses via Ethereum mainnet. The command will:
- Detect ENS names (any string containing a dot that isn't a hex address)
- Resolve the name to an address
- Display both the ENS name and resolved address in the output
Prerequisites
- Must be authenticated (to check,
npx awal@latest awal statusto sign in, see skillnpx awal@latest awal auth loginfor more information)authenticate-wallet - Wallet must have sufficient USDC balance (to check)
npx awal balance
Error Handling
Common errors:
- "Not authenticated" - Run first
awal auth login <email> - "Insufficient balance" - Check balance with
awal balance - "Could not resolve ENS name" - Verify the ENS name exists
- "Invalid recipient" - Must be valid 0x address or ENS name