From pinion-os
Generates fresh Ethereum keypair for Base network via API. Returns address and private key. Costs $0.01 USDC with x402 payment. For agent wallets.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pinion-os:walletThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generates a cryptographically secure Ethereum keypair for the Base network. Returns the address and private key.
Generates a cryptographically secure Ethereum keypair for the Base network. Returns the address and private key.
GET https://pinionos.com/skill/wallet/generate
Price: $0.01 USDC per call (x402 on Base)
None.
curl https://pinionos.com/skill/wallet/generate
The first request returns HTTP 402 with payment requirements. Sign a USDC TransferWithAuthorization (EIP-3009) and retry with the X-PAYMENT header.
{
"address": "0x7a21...",
"privateKey": "0x4b3f...",
"network": "base",
"chainId": 8453,
"note": "Fund this wallet with ETH for gas and USDC for x402 payments. Keep the private key safe.",
"timestamp": "2026-02-16T12:00:00.000Z"
}
The private key is returned once. Store it securely. Anyone with the key controls the wallet.
npx claudepluginhub chu2bard/pinion-os --plugin pinion-osConfigures Bankr x402 SDK client with payment and receiving wallets, private keys, environment variables, and two-wallet setup for micropayments and token handling.
Manages OKX Agentic Wallet operations: authentication, balances, token transfers, contract calls, and Gas Station (Solana stablecoin-gas).
Guides Ethereum wallet creation, management: EOAs, smart contract wallets, multisig (Safe), account abstraction (ERC-4337, EIP-7702). Use for transactions, signing messages, secure fund handling.