pinion-send

Construct an unsigned ETH or USDC transfer transaction on Base. Client signs and broadcasts. Costs $0.01 USDC via x402.

357 stars

Best use case

pinion-send is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Construct an unsigned ETH or USDC transfer transaction on Base. Client signs and broadcasts. Costs $0.01 USDC via x402.

Teams using pinion-send should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/send/SKILL.md --create-dirs "https://raw.githubusercontent.com/chu2bard/pinion-os/main/skills/send/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/send/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How pinion-send Compares

Feature / Agentpinion-sendStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Construct an unsigned ETH or USDC transfer transaction on Base. Client signs and broadcasts. Costs $0.01 USDC via x402.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Send

Constructs an unsigned ETH or USDC transfer transaction on Base. Returns the raw transaction object for the client to sign and broadcast.

## Endpoint

```
POST https://pinionos.com/skill/send
```

**Price:** $0.01 USDC per call (x402 on Base)

## Request Body

```json
{
  "to": "0x...",
  "amount": "0.1",
  "token": "ETH"
}
```

| Field  | Type   | Required | Description                              |
|--------|--------|----------|------------------------------------------|
| to     | string | yes      | Recipient address (0x, 40 hex chars)      |
| amount | string | yes      | Amount to send (human-readable)           |
| token  | string | yes      | `ETH` or `USDC`                          |

## Example Request

```bash
curl -X POST https://pinionos.com/skill/send \
  -H "Content-Type: application/json" \
  -d '{"to":"0x7a21...","amount":"0.05","token":"ETH"}'
```

The first request returns HTTP 402 with payment requirements. Sign a USDC `TransferWithAuthorization` (EIP-3009) and retry with the `X-PAYMENT` header.

## Example Response (ETH)

```json
{
  "tx": {
    "to": "0x7a21...",
    "value": "0xb1a2bc2ec50000",
    "data": "0x",
    "chainId": 8453
  },
  "token": "ETH",
  "amount": "0.05",
  "network": "base",
  "note": "Sign this transaction with your private key and broadcast to Base.",
  "timestamp": "2026-02-16T12:00:00.000Z"
}
```

## Example Response (USDC)

```json
{
  "tx": {
    "to": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "value": "0x0",
    "data": "0xa9059cbb...",
    "chainId": 8453
  },
  "token": "USDC",
  "amount": "10",
  "network": "base",
  "note": "Sign this transaction with your private key and broadcast to Base.",
  "timestamp": "2026-02-16T12:00:00.000Z"
}
```

## When to Use

- Transfer ETH or USDC to another address on Base.
- Build payment workflows where the agent constructs the tx and the user (or another agent) signs.
- Fund a sub-wallet or pay for services.

Related Skills

pinion-wallet

357
from chu2bard/pinion-os

Generate a fresh Ethereum keypair for Base. Useful for funding OpenClaw agents. Costs $0.01 USDC via x402.

pinion-tx

357
from chu2bard/pinion-os

Get decoded transaction details for any Base transaction hash. Costs $0.01 USDC via x402.

pinion-trade

357
from chu2bard/pinion-os

Get an unsigned swap transaction via 1inch aggregator on Base. Includes approval tx if needed. Costs $0.01 USDC via x402.

pinion-price

357
from chu2bard/pinion-os

Get current USD price for any token on Base via Birdeye (CoinGecko fallback). Costs $0.01 USDC via x402.

pinion-fund

357
from chu2bard/pinion-os

Check wallet balances and get funding instructions for Base. ETH and USDC. Costs $0.01 USDC via x402.

pinion-chat

357
from chu2bard/pinion-os

Chat with the Pinion AI agent. Send a messages array, get an AI response with web search. Costs $0.01 USDC via x402.

pinion-broadcast

357
from chu2bard/pinion-os

Sign and broadcast an unsigned transaction on Base. Requires the sender's private key. Costs $0.01 USDC via x402.

pinion-balance

357
from chu2bard/pinion-os

Get ETH and USDC balances for any Ethereum address on Base. Costs $0.01 USDC via x402.

pinion-chain-intel

357
from chu2bard/pinion-os

On-chain intelligence, transactions and wallet tools on Base. 9 x402-paywalled skills at $0.01 USDC each.

send-usdc

3891
from openclaw/skills

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".

DeFi & Crypto

SendTradeSignal

3891
from openclaw/skills

A specialized tool for sending quantitative trading signals to the FMZ platform via HTTP API.

Finance & Trading

sendgrid-automation

31392
from sickn33/antigravity-awesome-skills

Automate SendGrid email delivery workflows including marketing campaigns (Single Sends), contact and list management, sender identity setup, and email analytics through Composio's SendGrid toolkit.